@charset "UTF-8";
/*
Theme Name: pmtheme
Author: Mark Robertson
Description: Paper Mountain's own lovely theme.
Version: 1.0
*/
/*  PLEASE DO NOT EDIT IN THIS FILE
    Compiled with SASS. See source files in folder css/sass/
*/
/*  CONTENTS
    Reset
    Basic
    Header
    Body - general
    Front page
    Events
    Footer
*/
/*
--------------------------------------- 
    1.0 RESET & BASICS
---------------------------------------
*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  height: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

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

body, p, h1, h2, h3, h4, h5, h6, ul, ol,
pre, xmp, plaintext, listing,
blockquote {
  padding: 0;
  margin: 0;
}

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

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

a {
  text-decoration: none;
}

/*
--------------------------------------- 
    BASIC STRUCTURE & STYLES
---------------------------------------
*/
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}
@media only screen and (min-width: 600px) {
  .container {
    padding: 0 30px;
  }
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}
.row::after {
  content: "";
  display: table;
  clear: both;
}

.row-flex {
  margin-right: -15px;
  margin-left: -15px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}
.row-flex::after {
  content: "";
  display: table;
  clear: both;
}

.col-4 {
  width: 100%;
  padding: 0 15px;
}
@media only screen and (min-width: 760px) {
  .col-4 {
    float: left;
    width: 33.3%;
  }
}

.col-6 {
  width: 100%;
  padding: 0 15px;
}
@media only screen and (min-width: 760px) {
  .col-6 {
    float: left;
    width: 50%;
  }
}

@media only screen and (min-width: 1050px) {
  .col-4-lg {
    float: left;
    width: 33.3%;
  }
}

body {
  background-color: white;
}

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

.main {
  margin: 0;
  padding: 0;
  width: 100%;
}
@media only screen and (min-width: 760px) {
  .header-pad .main {
    padding-top: 200px;
  }
}

/*
--------------------------------------- 
    BASIC TYPOGRAPHY
---------------------------------------
*/
html {
  font-family: "Raleway", sans-serif;
  font-size: 1.1em;
  line-height: 1.5;
  color: #222;
}

p {
  margin-bottom: 15px;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

h6 {
  font-size: 1rem;
  margin-top: 15px;
}

h5 {
  font-size: 1.2rem;
  margin-top: 20px;
}

h4 {
  font-size: 1.4rem;
  margin-top: 25px;
}

h3 {
  font-size: 1.7rem;
  margin-top: 30px;
}

h2 {
  font-size: 2rem;
  margin-top: 35px;
}

h1 {
  font-size: 2.7rem;
  margin-top: 40px;
}

hr {
  margin-top: 30px;
  margin-bottom: 30px;
  border-top: 2px dotted #888;
  border-left: none;
  border-right: none;
  border-bottom: none;
}

ul, ol {
  line-height: 1.5;
  margin-top: 15px;
  margin-bottom: 15px;
  list-style-position: inside;
  padding-left: 15px;
}

code, pre {
  font-family: "Courier", monospace;
  font-size: 0.95em;
}

code {
  background: rgba(111, 199, 182, 0.2);
  padding-left: 5px;
  padding-right: 5px;
}

pre {
  margin: 15px 30px;
}
pre > code {
  display: block;
  border-left: 3px solid #6fc7b6;
  padding: 10px 15px;
}

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

blockquote {
  margin: 15px 60px 15px 30px;
  border-left: 3px solid #6fc7b6;
  padding-left: 15px;
  color: #888;
}

cite {
  font-style: inherit;
}
blockquote cite {
  display: block;
  color: #888;
  margin-top: 10px;
  margin-left: 15px;
}
blockquote + cite {
  display: block;
  color: #888;
  margin-left: 60px;
  margin-bottom: 15px;
}

/*
--------------------------------------- 
    TABLES
---------------------------------------
*/
table {
  margin-bottom: 15px;
}

th, td {
  padding: 5px 10px;
  vertical-align: top;
}

th {
  background: #6fc7b6;
  font-weight: bold;
  color: white;
  border-right: 1px solid white;
}
th:last-child {
  border-right: none;
}

td {
  border-bottom: 1px solid #ccc;
}
.table-columns-border td {
  border-bottom: none;
  border-right: 1px solid #ccc;
}
.table-columns-border td:last-child {
  border-right: none;
}
.table-columns-shade td:nth-child(odd), .table-rows-shade tr:nth-child(even) td {
  background: #eee;
}

/*
--------------------------------------- 
    LINKS & NAV ICONS
---------------------------------------
*/
a {
  transition: color 0.25s;
  font-weight: 500;
}
a:link, a:visited {
  color: #30a797;
}
a:hover, a:focus {
  color: #888;
}
a:active {
  color: #30a797;
}

.theme-button-link {
  display: inline-block;
  padding: 10px 15px;
  font-weight: bold;
  transition: background 0.25s;
}
.theme-button-link:link, .theme-button-link:visited {
  color: white;
  background: #6fc7b6;
}
.theme-button-link:hover, .theme-button-link:focus {
  color: white;
  background: #222;
}
.theme-button-link:active {
  color: white;
  background: #6fc7b6;
}

/*
--------------------------------------- 
    FORM ELEMENTS - GENERAL
---------------------------------------
*/
fieldset {
  margin: 0 0 30px 0;
  border-top: 2px dotted #888;
  border-left: none;
  border-right: none;
  border-bottom: none;
  padding: 15px 0 0 0;
}
fieldset fieldset {
  margin: 0;
  border: none;
  padding: 0;
}

legend {
  font-weight: bold;
  font-size: 1.2rem;
}
fieldset fieldset legend {
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 1rem;
}

label {
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 1rem;
}
label + label {
  margin-left: 25px;
}
fieldset fieldset label {
  font-weight: inherit;
}

button,
input[type=button],
input[type=submit],
input[type=reset] {
  font-size: 1rem;
  color: white;
  padding: 10px 15px;
  font-weight: bold;
  transition: background 0.25s;
  border-radius: 0;
  border: none;
  background: #6fc7b6;
  cursor: pointer;
}

button:hover, button:focus,
input[type=button]:hover,
input[type=button]:focus,
input[type=submit]:hover,
input[type=submit]:focus,
input[type=reset]:hover,
input[type=reset]:focus {
  background: #222;
}

button:disabled,
input[type=button]:disabled,
input[type=submit]:disabled,
input[type=reset]:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.button-round {
  border-radius: 50%;
  height: 50px;
  width: 50px;
  padding: 5px;
}

select, input[type=text],
input[type=search],
input[type=email],
input[type=url],
input[type=tel],
input[type=password],
input[type=number],
input[type=month],
input[type=week],
input[type=datetime],
input[type=datetime-local],
textarea,
output {
  margin-top: 5px;
  margin-bottom: 15px;
  border-radius: 0;
  border: 1px solid #ccc;
  background: white;
  font-size: 1rem;
  font-family: "Raleway", sans-serif;
  color: #888;
}
select:focus, input[type=text]:focus,
input[type=search]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=tel]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
textarea:focus,
output:focus {
  outline: none;
  border: 1px solid #6fc7b6;
  background: rgba(111, 199, 182, 0.1);
  color: #30a797;
}

input[type=text],
input[type=search],
input[type=email],
input[type=url],
input[type=tel],
input[type=password],
input[type=number],
input[type=month],
input[type=week],
input[type=datetime],
input[type=datetime-local],
textarea,
output {
  padding: 5px 15px;
}
input[type=text] + label,
input[type=search] + label,
input[type=email] + label,
input[type=url] + label,
input[type=tel] + label,
input[type=password] + label,
input[type=number] + label,
input[type=month] + label,
input[type=week] + label,
input[type=datetime] + label,
input[type=datetime-local] + label,
textarea + label,
output + label {
  margin-left: 25px;
}
label + input[type=text], label > input[type=text],
label + input[type=search],
label > input[type=search],
label + input[type=email],
label > input[type=email],
label + input[type=url],
label > input[type=url],
label + input[type=tel],
label > input[type=tel],
label + input[type=password],
label > input[type=password],
label + input[type=number],
label > input[type=number],
label + input[type=month],
label > input[type=month],
label + input[type=week],
label > input[type=week],
label + input[type=datetime],
label > input[type=datetime],
label + input[type=datetime-local],
label > input[type=datetime-local],
label + textarea,
label > textarea,
label + output,
label > output {
  margin-left: 10px;
}
label > br + input[type=text],
label > br + input[type=search],
label > br + input[type=email],
label > br + input[type=url],
label > br + input[type=tel],
label > br + input[type=password],
label > br + input[type=number],
label > br + input[type=month],
label > br + input[type=week],
label > br + input[type=datetime],
label > br + input[type=datetime-local],
label > br + textarea,
label > br + output {
  margin-left: 0;
}

select {
  padding: 5px 15px 8px 15px;
}

output {
  display: inline-block;
  min-width: 150px;
}

output:empty {
  display: none;
}

label + input[type=radio],
label + input[type=checkbox] {
  margin-left: 15px;
}

/*
--------------------------------------- 
    SEARCHFORMS
---------------------------------------
*/
/*
--------------------------------------- 
    SIGNUP FORMS
---------------------------------------
*/
.mc-signup-home {
  text-align: center;
}
.mc-signup-home input[type=email] {
  width: 280px;
  height: 40px;
}

.signup-home-button {
  font-size: 22px;
  margin-left: -15px;
}

/*
--------------------------------------- 
    HEADER
---------------------------------------
*/
#smallscreen-flag {
  height: 0;
  width: 0;
  padding: 0;
  margin: 0;
  position: absolute;
  display: block;
}
@media only screen and (min-width: 760px) {
  #smallscreen-flag {
    display: none;
  }
}

#bigscreen-flag {
  height: 0;
  width: 0;
  padding: 0;
  margin: 0;
  position: absolute;
  display: none;
}
@media only screen and (min-width: 1050px) {
  #bigscreen-flag {
    display: block;
  }
}

#siteheader {
  min-height: 80px;
  overflow: auto;
  background: rgba(111, 199, 182, 0.9);
  border-bottom: 2px solid white;
}
@media only screen and (min-width: 760px) {
  #siteheader {
    position: relative;
    z-index: 99;
    overflow: visible;
    background: none;
    border: none;
    height: 35px;
    min-height: 0;
  }
}
@media only screen and (min-width: 1050px) {
  #siteheader {
    height: 60px;
  }
}

#header {
  position: relative;
}

.skiplinks a:link {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  overflow: hidden;
}

#skiptocontent {
  left: 0;
}

#skiptofooter {
  left: 152px;
}

.skiplinks a:focus {
  clip: auto !important;
  display: block;
  z-index: 100000;
  top: 0;
  width: 150px;
  height: auto;
  padding: 15px;
  background-color: white;
  font-size: 0.8em;
  text-align: center;
}

#sitelogo-shape-container {
  float: left;
}
@media only screen and (min-width: 760px) {
  #sitelogo-shape-container {
    float: none;
    position: absolute;
    top: 15px;
    left: 15px;
  }
}
@media only screen and (min-width: 1050px) {
  #sitelogo-shape-container {
    top: 30px;
    left: 30px;
  }
}

#sitelogo-shape {
  display: none;
}
@media only screen and (min-width: 760px) {
  #sitelogo-shape {
    display: block;
    background: none;
    width: 0;
    height: 0;
    border-top: 250px solid rgba(111, 199, 182, 0.9);
    border-right: 250px solid transparent;
  }
  .mob-menu-overlay-active #sitelogo-shape {
    display: none;
  }
}
@media only screen and (min-width: 1050px) {
  #sitelogo-shape {
    border-top-width: 400px;
    border-right-width: 400px;
  }
}

#sitelogo-container {
  margin: 17px 0 0 25px;
}
@media only screen and (min-width: 760px) {
  #sitelogo-container {
    position: absolute;
    top: 0;
    left: 0;
    margin: 35px 0 0 22px;
  }
}
@media only screen and (min-width: 1050px) {
  #sitelogo-container {
    margin: 50px 0 0 35px;
  }
}

#sitelogo {
  width: 180px;
}
@media only screen and (min-width: 760px) {
  #sitelogo {
    width: 140px;
  }
}
@media only screen and (min-width: 1050px) {
  #sitelogo {
    width: 220px;
  }
}

.header-nav {
  position: relative;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
  z-index: 101;
}

.menu-mainnav-toggle-container {
  float: right;
  margin: 22px 22px 0 0;
}
@media only screen and (min-width: 760px) {
  .menu-mainnav-toggle-container {
    display: none;
  }
}

.menu-mainnav-toggle .menu-open {
  display: inline;
}
.mob-menu-overlay-active .menu-mainnav-toggle .menu-open {
  display: none;
}

.menu-mainnav-toggle .menu-close {
  display: none;
}
.mob-menu-overlay-active .menu-mainnav-toggle .menu-close {
  display: inline;
}

.header-social-search {
  display: block;
  float: right;
  padding-top: 20px;
}

.menu-mainnav-container {
  display: none;
  position: absolute;
  top: 0;
  right: 30px;
}
@media only screen and (min-width: 760px) {
  .menu-mainnav-container {
    display: block;
    width: 66%;
  }
}
@media only screen and (min-width: 1400px) {
  .menu-mainnav-container {
    top: 10px;
  }
}

.menu-mainnav {
  padding-top: 15px;
  text-align: right;
}
.menu-mainnav a {
  font-weight: bolder;
  font-size: 22pt;
}
.menu-mainnav li {
  width: 100%;
  list-style: none;
  position: relative;
}
.menu-mainnav .sub-menu {
  display: none;
  z-index: 99;
  margin: 10px 0;
  padding: 5px 0 10px 0;
  border-top: 1px dotted white;
  border-bottom: 1px dotted white;
  white-space: nowrap;
}
@media only screen and (min-width: 760px) {
  .menu-mainnav {
    line-height: 1.1;
  }
  .menu-mainnav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 30px;
    padding: 10px 10px 0 0;
    margin: -10px 0 0 0;
    border: none;
    z-index: 99;
    white-space: nowrap;
  }
  .menu-mainnav .sub-menu a {
    font-size: 18pt;
    line-height: 1.1;
  }
  .menu-mainnav .sub-menu li {
    background: rgba(111, 199, 182, 0.9);
    padding-left: 15px;
    padding-right: 15px;
  }
  .menu-mainnav .sub-menu li:first-of-type {
    padding-top: 10px;
  }
  .menu-mainnav .sub-menu li:last-of-type {
    padding-bottom: 10px;
  }
}
@media only screen and (min-width: 1400px) {
  .menu-mainnav a {
    font-size: 32pt;
  }
  .menu-mainnav .sub-menu a {
    font-size: 26pt;
  }
}

.menu-item-switch {
  display: inline-block;
  position: relative;
  width: 30px;
  text-align: center;
}
.menu-item-has-children > a > .menu-item-switch::before {
  content: "+";
}
.sub-menu-active > a > .menu-item-switch::before {
  content: "-";
}
@media only screen and (min-width: 760px) {
  .menu-item-switch {
    display: none;
  }
}

.menu-mainnav a:link, .menu-mainnav a:visited {
  color: white;
}
.menu-mainnav a:hover, .menu-mainnav a:focus {
  color: rgba(111, 199, 182, 0.9);
}
.menu-mainnav a:active {
  color: white;
}
.header-dark .menu-mainnav a:link, .header-dark .menu-mainnav a:visited {
  color: #222;
}
.header-dark .menu-mainnav a:hover, .header-dark .menu-mainnav a:focus {
  color: rgba(111, 199, 182, 0.9);
}
.header-dark .menu-mainnav a:active {
  color: #222;
}

.header-social-search .nav-icon:link, .header-social-search .nav-icon:visited,
.home-title-social-search .nav-icon:link,
.home-title-social-search .nav-icon:visited {
  color: white;
}
.header-social-search .nav-icon:hover, .header-social-search .nav-icon:focus,
.home-title-social-search .nav-icon:hover,
.home-title-social-search .nav-icon:focus {
  color: white;
}
.header-social-search .nav-icon:active,
.home-title-social-search .nav-icon:active {
  color: white;
}
.header-dark .header-social-search .nav-icon:link, .header-dark .header-social-search .nav-icon:visited,
.header-dark .home-title-social-search .nav-icon:link,
.header-dark .home-title-social-search .nav-icon:visited {
  color: #222;
}
.header-dark .header-social-search .nav-icon:hover, .header-dark .header-social-search .nav-icon:focus,
.header-dark .home-title-social-search .nav-icon:hover,
.header-dark .home-title-social-search .nav-icon:focus {
  color: white;
}
.header-dark .header-social-search .nav-icon:active,
.header-dark .home-title-social-search .nav-icon:active {
  color: #222;
}

#footer-socials .nav-icon:link, #footer-socials .nav-icon:visited {
  color: #222;
}
#footer-socials .nav-icon:hover, #footer-socials .nav-icon:focus {
  color: white;
}
#footer-socials .nav-icon:active {
  color: #222;
}
@media only screen and (min-width: 760px) {
  #footer-socials .nav-icon:link, #footer-socials .nav-icon:visited {
    color: #888;
  }
  #footer-socials .nav-icon:hover, #footer-socials .nav-icon:focus {
    color: white;
  }
  #footer-socials .nav-icon:active {
    color: #888;
  }
}

/* header links only on mob header or overlay */
.menu-mainnav-toggle:link, .menu-mainnav-toggle:visited,
.menu-mainnav .sub-menu a:link,
.menu-mainnav .sub-menu a:visited,
.mob-menu-overlay-active .menu-mainnav a:link,
.mob-menu-overlay-active .menu-mainnav a:visited,
.mob-menu-overlay-active .header-social-search .nav-icon:link,
.mob-menu-overlay-active .header-social-search .nav-icon:visited,
.search-form .nav-icon:link,
.search-form .nav-icon:visited {
  color: white;
}
.menu-mainnav-toggle:hover, .menu-mainnav-toggle:focus,
.menu-mainnav .sub-menu a:hover,
.menu-mainnav .sub-menu a:focus,
.mob-menu-overlay-active .menu-mainnav a:hover,
.mob-menu-overlay-active .menu-mainnav a:focus,
.mob-menu-overlay-active .header-social-search .nav-icon:hover,
.mob-menu-overlay-active .header-social-search .nav-icon:focus,
.search-form .nav-icon:hover,
.search-form .nav-icon:focus {
  color: rgba(255, 255, 255, 0.5);
}
.menu-mainnav-toggle:active,
.menu-mainnav .sub-menu a:active,
.mob-menu-overlay-active .menu-mainnav a:active,
.mob-menu-overlay-active .header-social-search .nav-icon:active,
.search-form .nav-icon:active {
  color: white;
}

.error404-search .search-form .nav-icon:link, .error404-search .search-form .nav-icon:visited {
  color: inherit;
}
.error404-search .search-form .nav-icon:hover, .error404-search .search-form .nav-icon:focus {
  color: #6fc7b6;
}
.error404-search .search-form .nav-icon:active {
  color: inherit;
}

#header-socials {
  display: inline-block;
}
#header-socials::after {
  content: "";
  display: table;
  clear: both;
}

@media only screen and (min-width: 760px) {
  .home-mainnav-social-search {
    display: none;
  }
}

.nav-icon {
  display: inline-block;
  width: 45px;
  height: 45px;
  position: relative;
  overflow: hidden;
}
.nav-icon .nav-icon-wipe {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: 1;
  border: none;
  transition: border-width 0.6s;
  background: none;
  width: 0;
  height: 0;
  border-top: 0px solid rgba(111, 199, 182, 0.9);
  border-right: 0px solid transparent;
}
.nav-icon:hover .nav-icon-wipe {
  background: none;
  width: 0;
  height: 0;
  border-top: 90px solid rgba(111, 199, 182, 0.9);
  border-right: 90px solid transparent;
}
.mob-menu-overlay-active .nav-icon:hover .nav-icon-wipe {
  border: none;
}
.nav-icon .nav-icon-icon {
  display: table-cell;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding-top: 5px;
  text-align: center;
  font-size: 34px;
  line-height: 1.1;
}

.menu-mainnav .sub-menu-active > a:link, .menu-mainnav .sub-menu-active > a:visited {
  color: rgba(111, 199, 182, 0.9);
}
.menu-mainnav .sub-menu-active > a:hover, .menu-mainnav .sub-menu-active > a:focus {
  color: rgba(111, 199, 182, 0.9);
}
.menu-mainnav .sub-menu-active > a:active {
  color: rgba(111, 199, 182, 0.9);
}

.mob-menu-overlay-active .menu-mainnav .sub-menu-active > a:link, .mob-menu-overlay-active .menu-mainnav .sub-menu-active > a:visited,
.menu-mainnav .sub-menu .sub-menu-active > a:link,
.menu-mainnav .sub-menu .sub-menu-active > a:visited {
  color: white;
}
.mob-menu-overlay-active .menu-mainnav .sub-menu-active > a:hover, .mob-menu-overlay-active .menu-mainnav .sub-menu-active > a:focus,
.menu-mainnav .sub-menu .sub-menu-active > a:hover,
.menu-mainnav .sub-menu .sub-menu-active > a:focus {
  color: rgba(255, 255, 255, 0.4);
}
.mob-menu-overlay-active .menu-mainnav .sub-menu-active > a:active,
.menu-mainnav .sub-menu .sub-menu-active > a:active {
  color: white;
}

/*#menu-mainnav-mob-overlay {
    display: block;
    z-index: 98;
    width: 0;
    height: 100%;
    position: absolute;
    top: 80px;
    right: 0;
    overflow: visible;
    background: $base-color-80;

    @include from( $tablet ) {
        top: 0;
        z-index: 102;
    }
}*/
#menu-mainnav-mob-overlay {
  display: none;
  z-index: 98;
  height: 100%;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  padding: 0;
  overflow: hidden;
}
.admin-bar #menu-mainnav-mob-overlay {
  top: 126px;
}
@media only screen and (min-width: 760px) {
  #menu-mainnav-mob-overlay {
    top: 0;
    padding: 15px;
    z-index: 102;
  }
  .admin-bar #menu-mainnav-mob-overlay {
    top: 0;
    padding-top: 47px;
  }
}
@media only screen and (min-width: 1050px) {
  #menu-mainnav-mob-overlay {
    padding: 30px;
  }
  .admin-bar #menu-mainnav-mob-overlay {
    top: 0;
    padding-top: 62px;
  }
}

#overlay-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#overlay-color {
  position: relative;
  width: 100%;
  height: 0;
  background: rgba(111, 199, 182, 0.9);
  border: none;
}
@media only screen and (min-width: 760px) {
  #overlay-color {
    width: 0;
    left: 0;
    background: none;
    border-top: 0 solid rgba(111, 199, 182, 0.9);
    border-right: 0 solid transparent;
  }
}

#search-wrap {
  display: none;
  position: absolute;
  width: 100%;
  top: 250px;
  z-index: 98;
}
@media only screen and (min-width: 760px) {
  #search-wrap {
    z-index: 103;
    top: 50%;
  }
}

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

.search-form input {
  -webkit-appearance: none;
  width: 300px;
  margin: 0 auto 20px auto;
  padding: 10px 30px;
  border: 2px solid white;
  border-radius: 0;
  background: none;
  font-family: "Raleway", sans-serif;
  color: white;
}
.search-form input:focus {
  color: white;
  border-color: white;
  border-width: 2px;
  background: none;
}
.error404-search .search-form input, .error404-search .search-form input:focus {
  border-color: #222;
  color: inherit;
  background: none;
}

/* TEXT ----------------- */
.menu-mainnav-toggle {
  font-size: 22pt;
  line-height: 1.1;
}

/*
--------------------------------------- 
    BODY - GENERAL
---------------------------------------
*/
article {
  position: relative;
  z-index: 10;
}

.content-container {
  padding-top: 50px;
  padding-bottom: 100px;
}

/*
--------------------------------------- 
    POST HEADER
    (INCL POST TITLE & FEATURED IMAGE)
---------------------------------------
*/
.post-header {
  position: relative;
}

.main-image-background {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 66%;
}
.header-front-page .main-image-background {
  padding-top: 150%;
}
@media only screen and (min-width: 760px) {
  .header-has-default-image .main-image-background, .header-front-page .main-image-background {
    padding-top: 410px;
  }
  .header-has-default-image-with-title .main-image-background {
    padding-top: 410px;
  }
}
@media only screen and (min-width: 900px) {
  .header-has-post-image .main-image-background {
    padding-top: 50%;
  }
}
@media only screen and (min-width: 1400px) {
  .header-has-default-image-with-title .main-image-background {
    padding-top: 550px;
  }
}

.main-image-overlay {
  display: none;
}
@media only screen and (min-width: 760px) {
  .main-image-overlay {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
  }
}

.dark-overlay {
  background: black;
}

.light-overlay {
  background: white;
}

.main-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.post-title-wrap {
  position: relative;
  z-index: 10;
}
.header-front-page .post-title-wrap {
  position: absolute;
  bottom: 0;
}
@media only screen and (min-width: 760px) {
  .post-title-wrap {
    position: absolute;
    bottom: 0;
    padding-bottom: 20px;
    width: 100%;
  }
}
.post-title {
  padding-top: 30px;
  margin-bottom: -15px;
}
@media only screen and (min-width: 760px) {
  .post-title {
    padding-top: 0;
    margin-bottom: 0px;
  }
}
.post-title h1 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 0;
  font-style: italic;
}
@media only screen and (min-width: 760px) {
  .post-title h1 {
    text-align: right;
    color: white;
  }
  .header-dark .post-title h1 {
    color: #222;
  }
}
@media only screen and (min-width: 900px) {
  .post-title h1 {
    font-size: 2.6rem;
  }
}
@media only screen and (min-width: 1050px) {
  .post-title h1 {
    font-size: 4rem;
  }
}
@media only screen and (min-width: 1400px) {
  .post-title h1 {
    font-size: 5.5rem;
  }
}

.tagline-socials {
  display: block;
  padding: 20px 30px 25% 30px;
  font-size: 1rem;
  font-weight: 500;
  color: white;
}
@media only screen and (min-width: 760px) {
  .tagline-socials {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    min-height: 0;
    padding-bottom: 0;
  }
  .header-dark .tagline-socials {
    color: #222;
  }
}
@media only screen and (min-width: 1050px) {
  .tagline-socials {
    padding-left: 80px;
  }
}

.tagline {
  width: 65%;
}

.home-title-social-search {
  display: none;
}
@media only screen and (min-width: 760px) {
  .home-title-social-search {
    display: block;
  }
}

.home-content,
.home-sections {
  margin-bottom: 50px;
}

.home-signup {
  margin-top: 50px;
}

.home-section {
  width: 100%;
  margin-top: 50px;
  overflow: auto;
  position: relative;
}

.home-section-link {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  transition: background 0.25s;
}

.home-section-link:hover {
  background: rgba(255, 255, 255, 0.4);
}

.home-section-half-inner {
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 900px) {
  .home-section-half-inner {
    display: flex;
  }
}
.home-section-half-inner .primary-half,
.home-section-half-inner .secondary-half {
  width: 100%;
  position: relative;
}
@media only screen and (min-width: 900px) {
  .home-section-half-inner .primary-half,
.home-section-half-inner .secondary-half {
    width: 50%;
  }
}
.home-section-half-inner .home-section-background {
  position: relative;
  display: block;
  width: 100%;
}
@media only screen and (min-width: 900px) {
  .home-section-half-inner .home-section-background {
    display: flex;
  }
}
.home-section-half-inner .background {
  position: relative;
  width: 100%;
  height: 0;
  z-index: 0;
}
.home-section-half-inner .background .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.home-section-half-inner .background .image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.home-section-half-inner .background-main {
  padding-top: 66%;
  overflow: visible;
}
.home-section-half-inner .background-fade .image {
  display: none;
}
@media only screen and (min-width: 900px) {
  .home-section-half-inner .background-fade {
    padding-top: 66%;
    overflow: visible;
  }
  .home-section-half-inner .background-fade .image {
    display: block;
    opacity: 0.1;
  }
}
.home-section-half-inner .primary-text {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 15px 30px;
}
@media only screen and (min-width: 600px) {
  .home-section-half-inner .primary-text {
    padding: 15px 60px;
  }
}
@media only screen and (min-width: 900px) {
  .home-section-half-inner .primary-text {
    padding: 15px 30px;
  }
}
@media only screen and (min-width: 1050px) {
  .home-section-half-inner .primary-text {
    padding: 15px 60px;
  }
}
.home-section-half-inner .text-bottom .primary-text {
  flex-direction: column-reverse;
}
.home-section-half-inner .secondary-text {
  padding: 15px 30px;
}
@media only screen and (min-width: 600px) {
  .home-section-half-inner .secondary-text {
    padding: 15px 60px;
  }
}
@media only screen and (min-width: 900px) {
  .home-section-half-inner .secondary-text {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    padding: 15px 30px;
  }
  .home-section-half-inner .secondary-text .details {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 1050px) {
  .home-section-half-inner .secondary-text {
    padding: 15px 60px;
  }
}
.home-section-half-inner .secondary-text .description {
  display: none;
  font-weight: 600;
}
@media only screen and (min-width: 900px) {
  .home-section-half-inner .secondary-text .description {
    display: block;
  }
}
.home-section-half-inner .text-bar {
  display: none;
}
@media only screen and (min-width: 900px) {
  .home-section-half-inner .text-bar {
    display: block;
    width: calc( 100% + 100px );
    height: 0;
    position: relative;
    border-top: 3px dotted #222;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 1400px) {
  .home-section-half-inner .text-bar {
    margin-bottom: 30px;
  }
}
.home-section-half-inner .title {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
}
@media only screen and (min-width: 1050px) {
  .home-section-half-inner .title {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 1400px) {
  .home-section-half-inner .title {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 2000px) {
  .home-section-half-inner .title {
    font-size: 2.5rem;
  }
}
.home-section-half-inner .subtitle {
  display: block;
  font-size: 1rem;
  color: white;
  font-weight: bold;
}
@media only screen and (min-width: 1050px) {
  .home-section-half-inner .subtitle {
    font-size: 1.3rem;
  }
}
.home-section-half-inner .venue {
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
  color: #222;
  padding-right: 8px;
}
.home-section-half-inner .venue::after {
  content: " :";
}
@media only screen and (min-width: 1400px) {
  .home-section-half-inner .venue {
    font-size: 1.3rem;
  }
}
.home-section-half-inner .date {
  display: inline-block;
  font-size: 1rem;
  color: #222;
}
@media only screen and (min-width: 1400px) {
  .home-section-half-inner .date {
    font-size: 1.3rem;
  }
}
.home-section-half-inner .text-dark .title, .home-section-half-inner .text-dark .subtitle {
  color: #222;
}

@media only screen and (min-width: 900px) {
  .home-section:nth-of-type(even) .home-section-half-inner {
    flex-direction: row-reverse;
  }
  .home-section:nth-of-type(even) .home-section-half-inner .text-bar {
    right: 100px;
  }
}

@media only screen and (min-width: 900px) {
  .home-section:nth-of-type(odd) .home-section-half-inner .primary-text {
    text-align: right;
  }
}

.home-map-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 66%;
  margin-bottom: 1px;
}
@media only screen and (min-width: 900px) {
  .home-map-container {
    padding-top: 33%;
  }
}
.home-map-container .home-map {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.25s;
}
.home-map-container .home-map:hover {
  opacity: 0.6;
}

.archive-container {
  padding-top: 50px;
  padding-bottom: 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.archive-item {
  padding: 0 15px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 760px) {
  .archive-item {
    width: 50%;
  }
}
@media only screen and (min-width: 900px) {
  .archive-item {
    width: 33.3%;
  }
}
.archive-item h3 {
  margin-top: 0;
}
.archive-item a:hover img {
  opacity: 0.6;
}

.archive-thumbnail {
  margin-bottom: 15px;
}
.archive-thumbnail img {
  width: 100%;
  height: auto;
  transition: opacity 0.25s;
}

/*
--------------------------------------- 
    EVENTS
---------------------------------------
*/
/* ---------------
 * SINGLE EVENT 
 */
.event-container {
  padding-top: 50px;
  padding-bottom: 100px;
  padding-bottom: 50px;
}

.event-organiser-col,
.event-details-col,
.event-content-col,
.event-socials-col,
.event-catalogue-col {
  width: 100%;
  padding: 0 15px;
}

@media only screen and (min-width: 760px) {
  .event-organiser-col,
.event-content-col {
    float: right;
    width: 66.6%;
  }
}

@media only screen and (min-width: 760px) {
  .event-details-col,
.event-socials-col,
.event-catalogue-col {
    float: left;
    width: 33.3%;
  }
}

.event-details-col {
  position: relative;
  margin-bottom: 30px;
}
@media only screen and (min-width: 760px) {
  .event-details-col {
    padding-top: 15px;
  }
}

.event-socials-col,
.event-catalogue-col {
  margin-top: 30px;
}

.event-details-wrap {
  min-height: 100px;
  border-bottom: 2px dotted #888;
  padding: 15px 0 0 15px;
}
@media only screen and (min-width: 760px) {
  .event-details-wrap {
    padding: 0;
    border-bottom: none;
  }
}

.event-details-shape {
  position: absolute;
  left: 15px;
  top: 0;
  z-index: 0;
  background: none;
  width: 0;
  height: 0;
  border-top: 100px solid #f6f6f6;
  border-right: 100px solid transparent;
}
@media only screen and (min-width: 760px) {
  .event-details-shape {
    left: 0;
    border-top-width: 130px;
    border-right-width: 130px;
  }
}

.event-details {
  margin-bottom: 15px;
  position: relative;
  z-index: 10;
}
@media only screen and (min-width: 760px) {
  .event-details {
    min-height: 100px;
  }
}

.event-related {
  position: relative;
  z-index: 10;
  margin-bottom: 30px;
}
@media only screen and (min-width: 760px) {
  .event-related {
    margin-bottom: 0;
  }
}

.event-related-date, .event-related-title, .event-date, .event-venue {
  font-size: 16pt;
  display: inline-block;
}
@media only screen and (min-width: 760px) {
  .event-related-date, .event-related-title, .event-date, .event-venue {
    font-size: 18pt;
  }
}

.event-venue {
  font-weight: 600;
  color: #bbb;
}

.event-date {
  font-weight: 600;
}

.event-related-details {
  margin-bottom: 5px;
}
@media only screen and (min-width: 760px) {
  .event-related-details {
    margin-bottom: 15px;
  }
}

.event-related-title {
  font-weight: 600;
}
@media only screen and (min-width: 760px) {
  .event-related-title {
    display: block;
  }
}

.event-related-date {
  color: #888;
}
.event-related-date:before {
  content: " / ";
}
@media only screen and (min-width: 760px) {
  .event-related-date {
    display: block;
  }
  .event-related-date:before {
    content: none;
  }
}

.event-organiser {
  padding-bottom: 20px;
  border-bottom: 2px dotted #888;
  font-size: 20pt;
  font-weight: 600;
}
@media only screen and (min-width: 760px) {
  .event-organiser {
    font-size: 22pt;
    margin-bottom: 20px;
  }
}

.event-socials {
  font-size: 30pt;
  line-height: 1.1;
}

.event-social-link {
  padding-right: 10px;
}
.event-social-link:link, .event-social-link:visited {
  color: #6fc7b6;
}
.event-social-link:hover, .event-social-link:focus {
  color: rgba(111, 199, 182, 0.5);
}
.event-social-link:active {
  color: #6fc7b6;
}

.event-catalogue {
  display: block;
  max-width: 250px;
  margin-top: 30px;
}
.event-catalogue img {
  border: 1px solid #efefef;
  width: 100%;
  height: auto;
}

.event-catalogue-label {
  font-weight: 600;
}

.event-nav {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
  padding-bottom: 100px;
}
@media only screen and (min-width: 600px) {
  .event-nav {
    padding: 0 30px;
  }
}
.event-nav::after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (min-width: 600px) {
  .event-nav {
    padding-bottom: 100px;
  }
}

.events-list-sub-nav {
  margin-bottom: 100px;
}

.event-nav-inner {
  border-top: 2px dotted #888;
  padding-top: 15px;
}

.events-list-nav-inner {
  padding-top: 15px;
}

.event-nav-row,
.events-list-nav-row {
  margin-right: -15px;
  margin-left: -15px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: space-between;
  align-items: center;
}
.event-nav-row::after,
.events-list-nav-row::after {
  content: "";
  display: table;
  clear: both;
}

.tribe-events-nav-next,
.tribe-events-nav-previous, .event-nav-link-wrap {
  width: 100%;
  padding: 0 15px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
  padding-bottom: 5px;
}
.tribe-events-nav-next > a,
.tribe-events-nav-previous > a, .event-nav-link-wrap > a {
  display: flex;
  align-items: center;
}

@media only screen and (min-width: 600px) {
  .event-nav-link-wrap {
    width: 33.3%;
  }
}

@media only screen and (min-width: 600px) {
  .tribe-events-nav-next,
.tribe-events-nav-previous {
    width: auto;
    flex-grow: 1;
  }
}

.event-nav-previous,
.tribe-events-nav-previous {
  text-align: left;
}
@media only screen and (min-width: 600px) {
  .event-nav-previous,
.tribe-events-nav-previous {
    justify-content: flex-start;
  }
}

.event-nav-next,
.tribe-events-nav-next {
  text-align: right;
}
@media only screen and (min-width: 600px) {
  .event-nav-next,
.tribe-events-nav-next {
    justify-content: flex-end;
  }
}

.event-nav-link-text {
  padding-bottom: 5px;
}

.event-nav-link-wrap a:link, .event-nav-link-wrap a:visited,
.events-list-sub-nav a:link,
.events-list-sub-nav a:visited {
  color: black;
}
.event-nav-link-wrap a:hover, .event-nav-link-wrap a:focus,
.events-list-sub-nav a:hover,
.events-list-sub-nav a:focus {
  color: #6fc7b6;
}
.event-nav-link-wrap a:active,
.events-list-sub-nav a:active {
  color: black;
}

.event-nav-link-arrow-forward,
.event-nav-link-arrow-back {
  color: #6fc7b6;
  font-size: 30px;
  height: 100%;
  margin-top: -5px;
}

.event-nav-link-arrow-forward {
  padding-left: 10px;
}

.event-nav-link-arrow-back {
  padding-right: 10px;
}

/* ---------------------
 * EVENTS LIST - GENERAL 
 */
.events-loop {
  margin: 0 -3px;
}
.events-loop::after {
  content: "";
  display: table;
  clear: both;
}

.events-home-past {
  margin-top: 100px;
}

.events-list-title,
.events-list-title-homepast {
  margin: 15px 0;
  padding: 0 10px;
  font-weight: 800;
}

.events-nav-container {
  display: block;
  margin: 15px 0 30px 0;
  border-top: 2px dotted #888;
}
@media only screen and (min-width: 760px) {
  .events-nav-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}

.events-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 2px dotted #888;
}
.events-nav:first-of-type {
  border-top: 2px dotted #888;
}
.events-nav:first-child {
  border-top: none;
}
@media only screen and (min-width: 760px) {
  .events-nav {
    border: none;
    align-items: center;
  }
  .events-nav:first-of-type {
    border-top: none;
  }
  .events-nav .controls {
    display: none;
  }
}
.events-nav .controls {
  margin: 0 10px;
}
.events-nav .close, .events-nav .open {
  font-size: 30px;
}
.events-nav .close {
  display: none;
}
.events-nav .open {
  display: block;
}
.events-nav.events-nav-open .close {
  display: block;
}
.events-nav.events-nav-open .open {
  display: none;
}

.events-nav-categories,
.events-nav-years {
  margin: 10px 0;
}
.events-nav-categories .link-category, .events-nav-categories .link-year,
.events-nav-categories .current-category, .events-nav-categories .current-year,
.events-nav-categories .noyear, .events-nav-categories .recent,
.events-nav-years .link-category,
.events-nav-years .link-year,
.events-nav-years .current-category,
.events-nav-years .current-year,
.events-nav-years .noyear,
.events-nav-years .recent {
  margin: 0 10px;
}
.events-nav-categories .link-category, .events-nav-categories .current-category,
.events-nav-years .link-category,
.events-nav-years .current-category {
  font-size: 1.4em;
  font-weight: 600;
}
.events-nav-categories .link-year, .events-nav-categories .current-year, .events-nav-categories .noyear, .events-nav-categories .recent,
.events-nav-years .link-year,
.events-nav-years .current-year,
.events-nav-years .noyear,
.events-nav-years .recent {
  font-size: 1.2em;
  font-weight: 600;
}
.events-nav-categories .link-year:link, .events-nav-categories .link-year:visited, .events-nav-categories .link-category:link, .events-nav-categories .link-category:visited,
.events-nav-years .link-year:link,
.events-nav-years .link-year:visited,
.events-nav-years .link-category:link,
.events-nav-years .link-category:visited {
  color: #ccc;
}
.events-nav-categories .link-year:hover, .events-nav-categories .link-year:focus, .events-nav-categories .link-category:hover, .events-nav-categories .link-category:focus,
.events-nav-years .link-year:hover,
.events-nav-years .link-year:focus,
.events-nav-years .link-category:hover,
.events-nav-years .link-category:focus {
  color: #6fc7b6;
}
.events-nav-categories .link-year:active, .events-nav-categories .link-category:active,
.events-nav-years .link-year:active,
.events-nav-years .link-category:active {
  color: #ccc;
}
.events-nav-categories .current-year, .events-nav-categories .current-category, .events-nav-categories .recent,
.events-nav-years .current-year,
.events-nav-years .current-category,
.events-nav-years .recent {
  color: #6fc7b6;
}
.events-nav-categories .noyear,
.events-nav-years .noyear {
  color: #ccc;
}
.events-nav-categories .link-category, .events-nav-categories .link-year,
.events-nav-years .link-category,
.events-nav-years .link-year {
  display: none;
}
.events-nav-open .events-nav-categories .link-category, .events-nav-open .events-nav-categories .link-year,
.events-nav-open .events-nav-years .link-category,
.events-nav-open .events-nav-years .link-year {
  display: block;
}
@media only screen and (min-width: 760px) {
  .events-nav-categories,
.events-nav-years {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .events-nav-categories .link-category, .events-nav-categories .link-year,
.events-nav-years .link-category,
.events-nav-years .link-year {
    display: block;
  }
}

.noevents {
  text-align: center;
}

/* ----------------------------
 * EVENTS LIST - HEADLINE EVENT 
 */
.events-list-headline-teaser, .events-list-headline-notice,
.events-list-headline-details {
  font-weight: 600;
  color: #222;
}
@media only screen and (min-width: 760px) {
  .events-list-headline-teaser, .events-list-headline-notice,
.events-list-headline-details {
    color: white;
    text-align: right;
  }
  .header-dark .events-list-headline-teaser, .header-dark .events-list-headline-notice,
.header-dark .events-list-headline-details {
    color: #222;
  }
}

.events-list-headline-details {
  font-size: 22px;
}
@media only screen and (min-width: 1400px) {
  .events-list-headline-details {
    font-size: 30px;
  }
}

.events-list-headline-date {
  font-weight: 800;
}

.events-list-headline-organizer::before {
  content: " / ";
}

.events-list-headline-teaser {
  padding: 10px 0 5px 0;
  line-height: 1.2;
  font-weight: 700;
}
.events-list-headline-teaser .teaser-half {
  display: inline;
}
.events-list-headline-teaser .teaser-half:last-of-type::before {
  content: " ";
}
@media only screen and (min-width: 760px) {
  .events-list-headline-teaser .teaser-half {
    display: inline-block;
  }
}
@media only screen and (min-width: 760px) {
  .events-list-headline-teaser {
    padding-left: 100px;
  }
}
@media only screen and (min-width: 1400px) {
  .events-list-headline-teaser {
    font-size: 1.3em;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.events-list-header-link {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 15;
  transition: background 0.25s;
}
.events-list-header-link:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* --------------------------
 * EVENTS LIST - SINGLE ENTRY 
 */
.events-list-entry-container {
  margin: 0 3px 30px 3px;
}
@media only screen and (min-width: 650px) {
  .events-list-entry-container {
    float: left;
    width: calc( 50% - 6px );
  }
}
@media only screen and (min-width: 900px) {
  .events-list-entry-container {
    width: calc( 33.3% - 6px );
  }
}

.events-list-entry {
  position: relative;
  height: 0;
  padding-top: 100%;
}

.events-list-entry-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  transition: opacity 0.3s;
}
.events-list-entry-link:link, .events-list-entry-link:visited {
  color: white;
}
.events-list-entry-link:hover, .events-list-entry-link:focus {
  color: white;
}
.events-list-entry-link:active {
  color: white;
}
.events-list-entry-link:hover, .events-list-entry-link:focus {
  opacity: 0.6;
}

.events-list-entry-image-container {
  position: relative;
  z-index: 0;
  height: 100%;
}

.events-list-entry-image {
  height: 100%;
  width: auto;
  max-width: none;
  position: relative;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 0;
}

.events-list-entry-image-overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 150px;
  max-height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.15), transparent);
}

.events-list-entry-schedule {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 8px 15px;
  font-size: 1.2rem;
  font-weight: 600;
}

.events-list-entry-heading {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 15px;
  border-bottom: 5px solid #6fc7b6;
}

.events-list-entry-title {
  text-align: right;
  font-size: 1.2rem;
  font-weight: 800;
  color: #222;
}

.events-list-entry-organizer {
  text-align: right;
  font-size: 1rem;
  color: #222;
}

.catalogues-gallery-entry {
  float: left;
  width: 100%;
  padding: 0 15px 30px 15px;
}
@media only screen and (min-width: 400px) {
  .catalogues-gallery-entry {
    width: 50%;
  }
}
@media only screen and (min-width: 600px) {
  .catalogues-gallery-entry {
    width: 33%;
  }
}
@media only screen and (min-width: 991px) {
  .catalogues-gallery-entry {
    width: 25%;
    height: 335px;
  }
}
@media only screen and (min-width: 1050px) {
  .catalogues-gallery-entry {
    height: 405px;
  }
}
.catalogues-gallery-entry img {
  border: 1px solid #efefef;
  width: 100%;
  height: auto;
}
.catalogues-gallery-entry a:hover {
  opacity: 0.6;
}

.catalogues-gallery-heading {
  float: left;
  width: 100%;
  padding: 0 15px;
  font-weight: bold;
}

.catalogue-single-image {
  float: left;
  width: 100%;
  padding: 0 15px;
}
@media only screen and (min-width: 400px) {
  .catalogue-single-image {
    width: 50%;
  }
}
@media only screen and (min-width: 600px) {
  .catalogue-single-image {
    width: 33.33%;
  }
}
.catalogue-single-image img {
  border: 1px solid #efefef;
  width: 100%;
  height: auto;
}

.catalogue-single-content {
  float: right;
  width: 100%;
  padding: 0 15px;
}
@media only screen and (min-width: 600px) {
  .catalogue-single-content {
    width: 66.66%;
  }
}

.catalogue-single-resource {
  float: right;
  width: 100%;
  text-align: center;
  padding: 30px 15px 0 15px;
}
@media only screen and (min-width: 400px) {
  .catalogue-single-resource {
    width: 50%;
    text-align: left;
    padding: 0 15px;
  }
}
@media only screen and (min-width: 600px) {
  .catalogue-single-resource {
    width: 66.66%;
  }
}

.catalogue-divider {
  width: 100%;
  margin: 30px 0;
  border-top: 1px solid #eee;
}

/*
--------------------------------------- 
    FOOTER
---------------------------------------
*/
/* TODO

*/
.site-footer {
  background: #111;
  color: white;
  font-weight: 200;
}
.site-footer a:link, .site-footer a:visited {
  color: #888;
}
.site-footer a:hover, .site-footer a:focus {
  color: #30a797;
}
.site-footer a:active {
  color: #888;
}

.footer-widgets-container {
  padding-top: 50px;
  padding-bottom: 20px;
}

.footer-contact-container {
  width: 100%;
  padding: 0 15px;
  padding-bottom: 20px;
}
@media only screen and (min-width: 900px) {
  .footer-contact-container {
    width: 66.6%;
  }
}

.footer-mail-container {
  width: 100%;
  padding: 0 15px;
  padding-top: 30px;
  padding-bottom: 20px;
}
@media only screen and (min-width: 900px) {
  .footer-mail-container {
    width: 33.3%;
  }
}
@media only screen and (min-width: 900px) {
  .footer-mail-container {
    padding-top: 0;
  }
}

.footer-widget-mail, .footer-widget-contact {
  width: 100%;
  padding: 0 15px;
  text-align: center;
  margin-bottom: 25px;
}
@media only screen and (min-width: 600px) {
  .footer-widget-mail, .footer-widget-contact {
    text-align: left;
  }
}

@media only screen and (min-width: 600px) {
  .footer-widget-contact {
    width: 50%;
  }
}

.footer-aoc-container {
  border-bottom: 1px solid #ccc;
  padding: 50px;
}
.footer-aoc-container #aoc {
  margin: auto;
  max-width: 850px;
  text-align: center;
  color: #6fc7b6;
  font-size: 1.2em;
  font-weight: bold;
}

#pm-acc {
  padding: 0 20px;
  font-size: 0.8rem;
  color: #888;
  text-align: center;
}
@media only screen and (min-width: 600px) {
  #pm-acc {
    padding: 0;
    text-align: left;
  }
}

.footer-bottom {
  background: #6fc7b6;
  border-top: 2px solid white;
  color: #222;
}
@media only screen and (min-width: 760px) {
  .footer-bottom {
    background: none;
    border-top: 1px solid #ccc;
    color: inherit;
  }
}

.footer-nav {
  padding-top: 15px;
  padding-bottom: 15px;
}

.footer-copyright {
  padding: 15px;
  font-size: 0.8rem;
  text-align: center;
  font-weight: 600;
}
@media only screen and (min-width: 600px) {
  .footer-copyright {
    float: left;
    text-align: left;
    padding-top: 30px;
  }
}
@media only screen and (min-width: 760px) {
  .footer-copyright {
    font-weight: 200;
  }
}

.menu-footersoc-container {
  margin: auto;
  text-align: center;
  padding: 15px;
}
@media only screen and (min-width: 600px) {
  .menu-footersoc-container {
    float: right;
    text-align: right;
  }
}

.menu-footernav {
  margin: 0;
  padding: 0;
  text-align: center;
}
.menu-footernav li {
  display: block;
  margin: auto;
  padding: 0 8px;
  list-style: none;
}
@media only screen and (min-width: 760px) {
  .menu-footernav li {
    display: inline-block;
  }
}

.menu-footersoc {
  margin: 0;
  padding: 0;
  text-align: center;
}
.menu-footersoc li {
  display: inline-block;
  padding: 0 8px;
  list-style: none;
}

.mc-signup-footer {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 600px) {
  .mc-signup-footer {
    justify-content: flex-start;
  }
}

.mc-signup-footer input[type=email] {
  margin: 0;
  border: 1px solid white;
  background: none;
  color: white;
}
.mc-signup-footer input[type=email]:focus {
  border: 1px solid white;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.signup-footer-button {
  background: none;
  color: #888;
}
.signup-footer-button:hover {
  background: none;
  color: white;
}

.error404page {
  position: relative;
}
.error404page .content-container {
  position: relative;
  text-align: center;
  z-index: 1;
}

.error404-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("assets/Bergmal_Hornum_01.jpg");
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.error404-404 {
  margin: 80px auto 50px auto;
  width: 284px;
  height: 100px;
  position: relative;
  overflow: visible;
}
@media only screen and (min-width: 760px) {
  .error404-404 {
    margin-top: 250px;
  }
}
@media only screen and (min-width: 1400px) {
  .error404-404 {
    margin-top: 250px;
  }
}

.error4 {
  position: absolute;
  width: 0;
  height: 0;
  background: none;
  width: 0;
  height: 0;
  border-bottom: 100px solid rgba(111, 199, 182, 0.8);
  border-left: 100px solid transparent;
}
.error4:first-of-type {
  top: 0;
  left: 0;
}
.error4:first-of-type {
  top: 0;
  left: 174px;
}

.error0 {
  position: absolute;
  top: 0;
  left: 102px;
  width: 100px;
  height: 100px;
  background: rgba(111, 199, 182, 0.8);
  border-radius: 50%;
}

.error404-search {
  margin-top: 80px;
}

/*
------------------------------------------- 
    STYLES FOR SHORTCODES ADDED IN PLUGINS
-------------------------------------------
*/
/*=================== plugin: Paper Mountain Shortcodes ===================*/
.pm-essay {
  padding: 15px 30px;
  margin-bottom: 15px;
}

.pm-footnotes {
  font-size: 0.8em;
}

.pm-grey {
  color: #888;
}

/*# sourceMappingURL=style.css.map */
