@charset "utf-8";

/* --- --- Reset --- --- */

a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{line-height:1;margin:0;padding:0;border:0;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}a:active,a:hover{outline:0}table{border-collapse:collapse;border-spacing:0}

/* --- --- Font --- --- */

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('../fonts/source-sans-pro-v19-latin-400.woff2') format('woff2'),
       url('../fonts/source-sans-pro-v19-latin-400.woff') format('woff'); 
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 600;
  src: local(''),
       url('../fonts/source-sans-pro-v19-latin-600.woff2') format('woff2'),
       url('../fonts/source-sans-pro-v19-latin-600.woff') format('woff');
}

/* --- --- Common --- --- */

html {
  min-height: 100%;
	overflow-y: scroll;
	width: 100%;
}

body {
  background: #edebe8;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 14px;
  font-weight: 400;
  min-height: 100%;
  width: 100%;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.wrapper {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1090px;
  position: relative;
}

/* --- --- Header --- --- */

.header {
  position: relative;
  width: 100%;
}

.header:after {
  content: '';
  display: block;
  padding-top: 30%;
}

.header-inner {
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.header h1,
.menu-top {
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 1;
}

.header h1 {
  bottom: 10%;
}

.header h1 a {
  color: #e8e1d2;
  font-size: 50px;
  text-decoration: none;
  white-space: nowrap;
}

.menu-top li {
  display: inline-block;
  margin: 10px;
}

.menu-top a {
  border-bottom: 1px solid transparent;
  color: #fff;
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 120%;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color .2s ease;
}

.menu-top a:hover,
.menu-top .active {
  border-bottom: 1px solid #fff;
  transition: border-color .2s ease;
}

/* --- --- Menu --- --- */

.menu-main {
  box-sizing: border-box;
  height: 90px;
  padding: 10px 0;
  position: relative;
  text-align: center;
}

.menu-main ul a {
  border-bottom: 1px solid transparent;
  color: #000;
  line-height: 170%;
  text-decoration: none;
  transition: border-color .2s ease;
}

.menu-main ul a:hover,
.menu-main .active > a {
  border-bottom: 1px solid #000;
  transition: border-color .2s ease;
}

.menu-main .level1-item {
  display: inline-block;
  margin: 0 20px;
}

.menu-main .level1-item > a {
  font-size: 24px;
  text-transform: uppercase;
}

.menu-main .level2 {
  background: #edebe8;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  transition: opacity .2s ease;
  visibility: hidden;
}

.menu-main .level1-item:hover .level2,
.menu-main .active .level2 {
  opacity: 1;
  visibility: visible;
}

.menu-main .level2-item {
  display: inline-block;
  margin: 0 25px;
}

.menu-main .level2-item > a {
  font-size: 16px;
}

.button-menu {
  cursor: pointer;
  display: none;
  height: 30px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;

  -webkit-tap-highlight-color: transparent;
}

.button-menu span {
  background: #000;
  bottom: 0;
  left: 0;
  height: 4px;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.button-menu span:after,
.button-menu span:before {
  background: #000;
  content: '';
  display: block;
  height: inherit;
  position: absolute;
  transform-origin: 50%;
  width: inherit;
}

.button-menu span:before {
  top: -8px;
}

.button-menu span:after {
  bottom: -8px;
}

.menu-main .item-123,
.menu-main .item-124,
.menu-main .item-125,
.menu-main .item-127 {
  display: none;
}

/* --- --- Main --- --- */

.main {
  box-sizing: border-box;
  opacity: 0;
  padding: 0 40px 40px 40px;
  transition: opacity 1s;
  width: 100%;
}

.loaded .main {
  opacity: 1;
}

.main-article,
.main-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* --- Content --- */

.grid-sizer {
  width: 32%;
}

.gutter-sizer {
  width: 2%;
}

.section-article {
  width: calc(100% - 258px);
}

.content-image {
  font-size: 0;
  line-height: 0;
}

.content-image img {
  width: 100%;
}

.content-text {
  background: #fff;
  font-size: 18px;
  line-height: 170%;
  padding: 45px 10%;
}

.content-text h2 {
  font-weight: 600;
  margin: 0 0 30px 0;
}

.content-text p {
  margin: 0 0 30px 0;
}

.content-text p:last-child {
  margin: 0;
}

.content-text strong {
  font-weight: 600;
}

.content-text ul {
  list-style: square;
  margin: 0 0 30px 20px;
}

.content-text ul:last-child {
  margin: 0 0 0 20px;
}

.content-text a {
  color: #000;
}

.more-images .images-item {
  font-size: 0;
  line-height: 0;
  margin: 30px 0 0 0;
}

.more-images img {
  width: 100%;
}

.more-images .images-text {
  font-size: 18px;
  line-height: 170%;
}

/* --- Columns --- */

.item {
  background: #fff;
  box-sizing: border-box;
  flex: 0 1 auto;
  margin: 0 0 20px 0;
  position: relative;
  transition: width .2s ease;
  width: 32%;
}

.main-archive .item {
  color: #000;
  display: block;
  padding: 15px 20px;
  text-decoration: none;
}

.item-head,
.item-body {
  box-sizing: border-box;
  line-height: 150%;
}

.main-category .item-head,
.main-featured .item-head {
  height: 100px;
  padding: 15px 20px 0 20px;
}

.item-title {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.item-image {
  display: block;
  font-size: 0;
  line-height: 0;
  padding: 15px 0 20px 0;
}

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

.item-body {
  padding: 0 20px 60px 20px;
}

.no-readmore {
  padding: 0 20px 20px 20px;
}

.item-foot {
  color: #000;
  bottom: 20px;
  font-weight: 600;
  padding: 0 20px;
  position: absolute;
  text-decoration: none;
}

/* --- --- Sidebar --- --- */

.sidebar {
  box-sizing: border-box;
  flex: 0 0 auto;
  padding: 0 0 0 22px;
  width: 258px;
}

.sidebar .box {
  background: #fff;
  font-size: 16px;
  line-height: 120%;
  margin: 0 0 30px 0;
  padding: 10px;
}

.box-title {
  font-weight: 600;
  margin: 0 0 20px 0;
}

.box-item {
  display: block;
  margin: 0 0 20px 0;
}

a.box-item,
.archive-item a {
  color: #000;
  text-decoration: none;
}

a.box-item:hover,
.archive-item a:hover {
  text-decoration: underline;
}

.year-title {
  font-weight: 600;
}

/* --- Contact --- */

.section-contact {
  background: #fff;
  box-sizing: border-box;
  font-size: 18px;
  padding: 45px 10%;
  width: calc(100% - 258px);
}

.section-contact h2 {
  font-weight: 600;
  margin: 0 0 30px 0;
}

.contact-address {
  margin: 0 0 30px 0;
}

.alert {
  margin: 30px 0 0 0;
}

.alert button {
  display: none;
}

.alert-error {
  color: #c00;
}

.section-contact input.invalid,
.section-contact textarea.invalid {
  border: 1px solid #c00;
}

.section-contact #easycalccheckplus {
  margin: 0 !important;
  padding: 0 !important;
}

#easycalccheckplus small {
  display: none;
}

.section-contact legend {
  font-size: 12px;
  margin: 0 0 20px 0;
}

.section-contact label {
  display: block;
  line-height: 30px;
}

.section-contact input,
.section-contact textarea,
.section-contact button {
  box-sizing: border-box;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.section-contact input[type="text"],
.section-contact input[type="email"],
.section-contact textarea {
  border: 1px solid #ccc;
  margin: 0 0 10px 0;
  width: 100%;
}

#jform_consentbox-lbl {
  display: none;
}

#jform_consentbox {
  margin: 0 0 20px 0;
}

.section-contact input {
  line-height: 30px;
  padding: 0 5px;
}

.section-contact textarea {
  line-height: 150%;
  padding: 5px;
  resize: vertical;
}

.section-contact button {
  background: #444;
  border: 0;
  color: #fff;
  cursor: pointer;
  height: 32px;
  line-height: 32px;
  padding: 0 10px;
}

/* --- Archive --- */

.form-archive,
.form-pagination {
  display: block;
  margin: 0 0 30px 0;
  text-align: center;
  width: 100%;
}

/* --- Calendar --- */

.fc-calendar-container {
	position: relative;
	height: 400px;
	width: 400px;
}

.fc-calendar {
	width: 100%;
	height: 100%;
}

.fc-calendar .fc-head {
	height: 30px;
	line-height: 30px;
	background: #ccc;
	color: #fff;
}

.fc-calendar .fc-body {
	position: relative;
	width: auto;
	height: 100%;
	height: -moz-calc(100% - 50px);
	height: -webkit-calc(100% - 50px);
	height: calc(100% - 50px);
	border: 1px solid #ddd;
}

.fc-calendar .fc-row {
	width: 100%;
	border-bottom: 1px solid #ddd;
}

.fc-four-rows .fc-row  {
	height: 25%;
}

.fc-five-rows .fc-row  {
	height: 20%;
}

.fc-six-rows .fc-row {
	height: 16.66%;
	height: -moz-calc(100%/6);
	height: -webkit-calc(100%/6);
	height: calc(100%/6);
}

.fc-calendar .fc-row > div,
.fc-calendar .fc-head > div {
	float: left;
	height: 100%;
	width:  14.28%; /* 100% / 7 */
	width: -moz-calc(100%/7);
	width: -webkit-calc(100%/7);
	width: calc(100%/7);
	position: relative;
}

/* IE 9 is rounding up the calc it seems */
.ie9 .fc-calendar .fc-row > div,
.ie9 .fc-calendar .fc-head > div {
	width:  14.2%;
}

.fc-calendar .fc-row > div {
	border-right: 1px solid #ddd;
	overflow: hidden;
	position: relative;
}

.fc-calendar .fc-head > div {
	text-align: center;
}

.fc-calendar .fc-row > div > span.fc-date {
	position: absolute;
	width: 30px;
	height: 20px;
	font-size: 20px;
	line-height: 20px;
	font-weight: 600;
	color: #ddd;
	text-shadow: 0 -1px 0 rgba(255,255,255,0.8);
	bottom: 5px;
	right: 5px;
	text-align: right;
}

.fc-calendar .fc-row > div > span.fc-weekday {
	padding-left: 5px;
	display: none;
}

.fc-calendar .fc-row > div.fc-today {
	background: #fff4c3;
}

.fc-calendar .fc-row > div.fc-out {
	opacity: 0.6;
}

.fc-calendar .fc-row > div:last-child,
.fc-calendar .fc-head > div:last-child {
	border-right: none;
}

.fc-calendar .fc-row:last-child {
	border-bottom: none;
}

.custom-calendar-wrap {
  position: relative !important;
  margin-bottom: 20px;
}

.module_event {
	margin-bottom: 10px;
}

.module_event_title {
  font-weight: 600 !important;
  font-size: 18px !important;
  color: black !important;
  padding: 0 !important;
}

.module_event_description {
  font-size: 14px !important;
  color: black !important;
}

.custom-calendar-wrap {
  min-height: 500px;
}

.custom-calendar-wrap .fc-content {
  clear: none !important;
}

.custom-content-reveal {
	overflow-x: auto
}

.fc-five-rows .fc-row:last-child {
  height: 19% !important;
}

.custom-calendar-wrap {
	overflow-y: hidden !important;
}

.calendar {
  height: auto;
  margin: 10px auto 0 auto;
  overflow: hidden;
  position: relative;
}

.calendar-inner {
  background: #fff;
}

.calendar-inner:before,
.calendar-inner:after {
  content: '';
  width: 99%;
  height: 50%;
  position: absolute;
  background: #f6f6f6;
  bottom: -4px;
  left: 0.5%;
  z-index: -1;
}

.calendar-inner:after {
  content: '';
  width: 98%;
  bottom: -7px;
  left: 1%;
  z-index: -2;
}

.calendar-header {
  background: #fff;
  padding: 5px 10px 10px 20px;
  height: 70px;
  position: relative;
}

.calendar-header h2,
.calendar-header h3 {
	text-align: center;
	text-transform: uppercase;
}

.calendar-header h2 {
	color: #495468;
	font-weight: 400;
	font-size: 18px;
	margin-top: 10px;
}

.calendar-header h3 {
	font-size: 10px;
	font-weight: 600;
	color: #b7bbc2;
}

.calendar-header nav span {
	position: absolute;
	top: 17px;
	width: 30px;
	height: 30px;
	color: transparent;
	cursor: pointer;
	margin: 0 1px;
	font-size: 20px;
	line-height: 30px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.calendar-header nav span:first-child {
	left: 5px;
}

.calendar-header nav span:last-child {
	right: 5px;
}

.calendar-header nav span:before {
  color: #000;
  font-size: 40px;
	position: absolute;
	text-align: center;
	width: 100%;
}

.calendar-header nav span.calendar-prev:before {
	content: '\25c2';
}

.calendar-header nav span.calendar-next:before {
	content: '\25b8';
}

.calendar-header nav span:hover:before {
	color: #495468;
}

.custom-content-reveal {
	background: #f6f6f6;
	background: rgba(246, 246, 246, 0.9);
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 100;
	top: 100%;
	left: 0px;
	text-align: center;
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}

.custom-content-reveal span.custom-content-close {
	position: absolute;
	top: 15px;
	right: 10px;
	width: 20px;
	height: 20px;
	text-align: center;
	background: #000;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  color: #fff;
	cursor: pointer;
	line-height: 13px;
	padding: 0;
}

.custom-content-reveal span.custom-content-close:after {
	content: 'x';
	font-size: 18px;
	color: #fff;
}

.custom-content-reveal a,
.custom-content-reveal span {
	font-size: 22px;
	padding: 10px 30px;
	display: block;
}

.custom-content-reveal h4 {
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 3px;
	color: #777;
	padding: 20px;
	background: #fff;
	margin-bottom: 30px;
}

.custom-content-reveal span {
	color: #888;
}

.custom-content-reveal a {
	color: #000;
}

.custom-content-reveal a:hover {
	color: #333;
}

.calendar-container {
	height: 400px;
	width: auto;
	padding: 30px;
	background: #f6f6f6;
	box-shadow: inset 0 1px rgba(255,255,255,0.8);
}

.calendar-container .fc-head {
	background: transparent;
	color: #000;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 12px;
	border-right: 1px solid #ccc;
	border-left:1px solid #ccc;
}

.calendar-container .fc-row > div {
	background: #fff;
	cursor: pointer;
}

.calendar-container .fc-row > div:empty {
	background: transparent;
}

.calendar-container .fc-row > div > span.fc-date {
	top: 50%;
	left: 50%;
	text-align: center;
	margin: -10px 0 0 -15px;
	color: #686a6e;
	font-weight: 400;
	pointer-events: none;
}

.calendar-container .fc-row > div.fc-today {
	background: #000;
  box-shadow: inset 0 -1px 1px rgba(0,0,0,0.1);
  color: #fff;
}

.calendar-container .fc-row > div.fc-today > span.fc-date {
	color: #fff;
	text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.calendar-container .fc-row > div.fc-content:after {
	content: '\00B7';
	text-align: center;
	width: 20px;
	margin-left: -10px;
	position: absolute;
	color: #DDD;
	font-size: 70px;
	line-height: 20px;
	left: 50%;
	bottom: 3px;
}

.calendar-container .fc-row > div.fc-today.fc-content:after {
	color: #000;
}

.calendar-container .fc-row > div.fc-content:hover:after{
	color: #000;
}

.calendar-container .fc-row > div.fc-today.fc-content:hover:after{
	color: #fff;
}

.calendar-container .fc-row > div > div a,
.calendar-container .fc-row > div > div span {
	display: none;
	font-size: 22px;
}

@media screen and (max-width: 400px) {

	.calendar-container {
		height: 300px;
	}
	.calendar-container .fc-row > div > span.fc-date {
		font-size: 15px;
  }

}

.calendar-container .fc-row > div, .calendar-container .fc-head   > div{
  box-sizing:border-box;
}

.calendar-container .fc-row > div, .calendar-container .fc-head > div {
  width: 14.28%;
}

.date_has_event {
	cursor:pointer;
}

.event_date,
.month,
.calendar_title {
  font-weight: 600;
}

.date_icon {
  float: left;
}

.month {
  font-size: 18px;
  margin-bottom: 3px;
}

.calendar_title {
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 10px;
}
.upcoming_event_title {
    display: block;
}

.block-number, .block-icon, .big-icon {
    clear: both;
    display: block;
    float: left;
    height: auto;
    margin: 0 15px 5px 0;
}

.uk-blog-date .uk-event-date, .uk-event-time .uk-event-date, .block-number .digit {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    border-image: none;
    border-radius: 4px 4px 0 0;
    border-style: solid;
    border-width: 1px;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.24) inset, 0 10px 15px rgba(255, 255, 255, 0.14) inset, 0 1px 0 rgba(255, 255, 255, 0.2) inset;
    display: block;
    font-size: 24px;
    line-height: 0;
    min-height: 20px;
    padding: 20px 10px 0;
    color: white;
    background-color: #7a7251;
}

.block-number .bottom {
    background-color: #847c27 !important;
}
.block-number .bottom {
    height: 6px;
}

.block-number .bottom {
    border-radius: 0 0 4px 4px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1) inset, 0 -1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 0 rgba(255, 255, 255, 0.15) inset;
    color: #fff;
    display: block;
    font-size: 13px;
    text-align: center;
    text-transform: uppercase;
}

.upcoming_event_container {
    height: 65px;
}

.upcoming_event_container .event_title {
    font-size: 13px;
    font-weight: 400;
}

.block-number {
    min-height: 60px !important;
    min-width: 50px !important;
    text-align: center;
}

/* --- jQuery mmenu v7.3.0 * @requires jQuery 1.7.0 or later * mmenujs.com * Copyright (c) Fred Heusschen * www.frebsite.nl * License: CC-BY-NC-4.0 * http://creativecommons.org/licenses/by-nc/4.0/ --- */

#navigation:not(.mm-menu){display: none}.mm-menu{--mm-line-height:20px;--mm-listitem-size:44px;--mm-navbar-size:44px;--mm-offset-top:0;--mm-offset-right:0;--mm-offset-bottom:0;--mm-offset-left:0;--mm-color-border:rgba(0, 0, 0, 0.1);--mm-color-button:rgba(0, 0, 0, 0.3);--mm-color-text:rgba(0, 0, 0, 0.75);--mm-color-text-dimmed:rgba(0, 0, 0, 0.3);--mm-color-background:#f3f3f3;--mm-color-background-highlight:rgba(0, 0, 0, 0.05);--mm-color-background-emphasis:rgba(255, 255, 255, 0.4);--mm-shadow:0 0 10px rgba( 0,0,0, 0.3 )}.mm-hidden{display:none!important}.mm-wrapper{overflow-x:hidden;position:relative}.mm-menu{background:#f3f3f3;border-color:rgba(0,0,0,.1);color:rgba(0,0,0,.75);background:var(--mm-color-background);border-color:var(--mm-color-border);color:var(--mm-color-text);line-height:20px;line-height:var(--mm-line-height);-webkit-box-sizing:border-box;box-sizing:border-box;display:block;padding:0;margin:0;position:absolute;z-index:0;top:0;right:0;bottom:0;left:0;top:var(--mm-offset-top);right:var(--mm-offset-right);bottom:var(--mm-offset-bottom);left:var(--mm-offset-left);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mm-menu a,.mm-menu a:active,.mm-menu a:hover,.mm-menu a:link,.mm-menu a:visited{color:inherit;text-decoration:none}[dir=rtl] .mm-menu{direction:rtl}.mm-panels,.mm-panels>.mm-panel{position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}.mm-panel,.mm-panels{-webkit-box-sizing:border-box;box-sizing:border-box;background:#f3f3f3;border-color:rgba(0,0,0,.1);color:rgba(0,0,0,.75);background:var(--mm-color-background);border-color:var(--mm-color-border);color:var(--mm-color-text)}.mm-panels{overflow:hidden}.mm-panel{-webkit-overflow-scrolling:touch;overflow:scroll;overflow-x:hidden;overflow-y:auto;width:100%;padding:0 20px;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;-o-transition:transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease}.mm-panel:not(.mm-hidden){display:block}.mm-panel:after,.mm-panel:before{content:'';display:block;height:20px}.mm-panel_has-navbar{padding-top:44px;padding-top:var(--mm-navbar-size)}.mm-panel_opened{z-index:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.mm-panel_opened-parent{-webkit-transform:translate3d(-30%,0,0);transform:translate3d(-30%,0,0)}.mm-panel_highest{z-index:2}.mm-panel_noanimation{-webkit-transition:none!important;-o-transition:none!important;transition:none!important}.mm-panel_noanimation.mm-panel_opened-parent{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}[dir=rtl] .mm-panel:not(.mm-panel_opened){-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}[dir=rtl] .mm-panel.mm-panel_opened-parent{-webkit-transform:translate3d(30%,0,0);transform:translate3d(30%,0,0)}.mm-listitem_vertical>.mm-panel{-webkit-transform:none!important;-ms-transform:none!important;transform:none!important;display:none;width:100%;padding:10px 0 10px 10px}.mm-listitem_vertical>.mm-panel:after,.mm-listitem_vertical>.mm-panel:before{content:none;display:none}.mm-listitem_opened>.mm-panel{display:block}.mm-listitem_vertical>.mm-listitem__btn{height:44px;height:var(--mm-listitem-size);bottom:auto}.mm-listitem_vertical .mm-listitem:last-child:after{border-color:transparent}.mm-listitem_opened>.mm-listitem__btn:after{-webkit-transform:rotate(225deg);-ms-transform:rotate(225deg);transform:rotate(225deg);right:19px}.mm-btn{-webkit-box-sizing:border-box;box-sizing:border-box;width:44px;padding:0}.mm-btn:after,.mm-btn:before{border-color:rgba(0,0,0,.1);border-color:var(--mm-color-button);border-width:2px;border-style:solid}.mm-btn_close:after,.mm-btn_close:before{content:'';-webkit-box-sizing:content-box;box-sizing:content-box;display:block;width:5px;height:5px;margin:auto;position:absolute;top:0;bottom:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.mm-btn_close:before{border-right:none;border-bottom:none;right:18px}.mm-btn_close:after{border-left:none;border-top:none;right:25px}.mm-btn_next:after,.mm-btn_prev:before{content:'';border-bottom:none;border-right:none;-webkit-box-sizing:content-box;box-sizing:content-box;display:block;width:8px;height:8px;margin:auto;position:absolute;top:0;bottom:0}.mm-btn_prev:before{-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);left:23px;right:auto}.mm-btn_next:after{-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg);right:23px;left:auto}[dir=rtl] .mm-btn_next:after{-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);left:23px;right:auto}[dir=rtl] .mm-btn_prev:before{-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg);right:23px;left:auto}[dir=rtl] .mm-btn_close:after,[dir=rtl] .mm-btn_close:before{right:auto}[dir=rtl] .mm-btn_close:before{left:25px}[dir=rtl] .mm-btn_close:after{left:18px}.mm-navbar{background:#f3f3f3;border-color:rgba(0,0,0,.1);color:rgba(0,0,0,.3);background:var(--mm-color-background);border-color:var(--mm-color-border);color:var(--mm-color-text-dimmed);border-bottom-width:1px;border-bottom-style:solid;text-align:center;display:none;height:44px;height:var(--mm-navbar-size);padding:0 44px;margin:0;position:absolute;top:0;left:0;right:0;opacity:1;-webkit-transition:opacity .4s ease;-o-transition:opacity .4s ease;transition:opacity .4s ease}.mm-navbar>*{-webkit-box-sizing:border-box;box-sizing:border-box;display:block;padding:12px;padding:calc((var(--mm-navbar-size) - var(--mm-line-height)) * .5);padding-left:0;padding-right:0}.mm-navbar a,.mm-navbar a:hover{text-decoration:none}.mm-navbar__title{-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.mm-navbar__btn{position:absolute;top:0;bottom:0;z-index:1}.mm-navbar__btn:first-child{text-align:left;left:0}.mm-navbar__btn:last-child{text-align:right;right:0}.mm-panel_has-navbar .mm-navbar{display:block}[dir=rtl] .mm-navbar__btn:first-child{text-align:right;right:0;left:auto}[dir=rtl] .mm-navbar__btn:last-child{text-align:left;left:0;right:auto}.mm-listitem,.mm-listview{list-style:none;display:block;padding:0;margin:0}.mm-listitem{color:rgba(0,0,0,.75);color:var(--mm-color-text);border-color:rgba(0,0,0,.1);border-color:var(--mm-color-border);position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.mm-listitem:after{content:'';border-color:inherit;border-bottom-width:1px;border-bottom-style:solid;display:block;position:absolute;left:0;right:0;bottom:0}.mm-listitem a,.mm-listitem a:hover{text-decoration:none}.mm-listitem__btn,.mm-listitem__text{color:inherit;display:block;padding-top:12px;padding-top:calc((var(--mm-listitem-size) - var(--mm-line-height))/ 2);padding-bottom:12px;padding-bottom:calc((var(--mm-listitem-size) - var(--mm-line-height))/ 2)}.mm-listitem__text{-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;padding-left:20px;padding-right:10px;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:10%;flex-basis:10%}.mm-listitem__btn{-webkit-tap-highlight-color:rgba(255,255,255,.4);tap-highlight-color:rgba(255,255,255,.4);-webkit-tap-highlight-color:var(--mm-color-background-emphasis);tap-highlight-color:var(--mm-color-background-emphasis);background:rgba(3,2,1,0);border-color:inherit;width:auto;padding-right:54px;position:relative}.mm-listitem__btn:not(.mm-listitem__text){border-left-width:1px;border-left-style:solid}.mm-listitem_selected>.mm-listitem__text{background:rgba(255,255,255,.4);background:var(--mm-color-background-emphasis)}.mm-listitem_opened>.mm-listitem__btn,.mm-listitem_opened>.mm-panel{background:rgba(0,0,0,.05);background:var(--mm-color-background-highlight)}.mm-panels>.mm-panel>.mm-listview{margin:20px -20px}.mm-panels>.mm-panel>.mm-listview:first-child,.mm-panels>.mm-panel>.mm-navbar+.mm-listview{margin-top:-20px}.mm-listitem_divider{-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;background:rgba(0,0,0,.05);background:var(--mm-color-background-highlight);font-size:75%;text-transform:uppercase;min-height:20px;min-height:var(--mm-line-height);padding:6.5px;padding:calc(((var(--mm-listitem-size) * .75) - var(--mm-line-height)) * .5);padding-right:10px;padding-left:20px}.mm-listitem_spacer{padding-top:44px;padding-top:var(--mm-listitem-size)}.mm-listitem_spacer>.mm-btn_next{top:44px;top:var(--mm-listitem-size)}[dir=rtl] .mm-listitem:after{left:0;right:20px}[dir=rtl] .mm-listitem__text{padding-left:10px;padding-right:20px}[dir=rtl] .mm-listitem__btn{padding-left:54px;border-left-width:0;border-left-style:none}[dir=rtl] .mm-listitem__btn:not(.mm-listitem__text){padding-right:0;border-right-width:1px;border-right-style:solid}
.mm-page{-webkit-box-sizing:border-box;box-sizing:border-box;position:relative}.mm-slideout{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;-o-transition:transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;z-index:1}.mm-wrapper_opened{overflow-x:hidden;position:relative}.mm-wrapper_background .mm-page{background:inherit}.mm-menu_offcanvas{display:none;position:fixed;right:auto;z-index:0}.mm-menu_offcanvas.mm-menu_opened{display:block}.mm-menu_offcanvas{width:80%;min-width:240px;max-width:440px}.mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(80vw,0,0);transform:translate3d(80vw,0,0)}@media all and (max-width:300px){.mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(240px,0,0);transform:translate3d(240px,0,0)}}@media all and (min-width:550px){.mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(440px,0,0);transform:translate3d(440px,0,0)}}.mm-wrapper__blocker{background:rgba(3,2,1,0);overflow:hidden;display:none;width:100%;height:100%;position:fixed;top:0;left:0;z-index:2}.mm-wrapper_blocking{overflow:hidden}.mm-wrapper_blocking body{overflow:hidden}.mm-wrapper_blocking .mm-wrapper__blocker{display:block}
.mm-sronly{border:0!important;clip:rect(1px,1px,1px,1px)!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;white-space:nowrap!important;width:1px!important;min-width:1px!important;height:1px!important;min-height:1px!important;padding:0!important;overflow:hidden!important;position:absolute!important}
 .mm-page{-webkit-box-sizing:border-box;box-sizing:border-box;position:relative}.mm-slideout{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;-o-transition:transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;z-index:1}.mm-wrapper_opened{overflow-x:hidden;position:relative}.mm-wrapper_background .mm-page{background:inherit}.mm-menu_offcanvas{display:none;position:fixed;right:auto;z-index:0}.mm-menu_offcanvas.mm-menu_opened{display:block}.mm-menu_offcanvas{width:80%;min-width:240px;max-width:440px}.mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(80vw,0,0);transform:translate3d(80vw,0,0)}@media all and (max-width:300px){.mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(240px,0,0);transform:translate3d(240px,0,0)}}@media all and (min-width:550px){.mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(440px,0,0);transform:translate3d(440px,0,0)}}.mm-wrapper__blocker{background:rgba(3,2,1,0);overflow:hidden;display:none;width:100%;height:100%;position:fixed;top:0;left:0;z-index:2}.mm-wrapper_blocking{overflow:hidden}.mm-wrapper_blocking body{overflow:hidden}.mm-wrapper_blocking .mm-wrapper__blocker{display:block}

 /* --- --- Media Queries --- --- */

@media screen and (max-width: 768px) {

  .menu-top,
  .menu-main ul {
    display: none;
  }

  .header h1 a {
    font-size: 6vw;
  }

  .menu-main {
    height: 45px;
    padding: 0;
  }

  .button-menu {
    display: block;
  }

  .main-article,
  .main-contact {
    display: block;
    padding: 0;
  }

  .main-category,
  .main-featured {
    padding: 0 20px;
  }

  .section-article,
  .section-contact {
    width: 100%;
  }

  .sidebar {
    padding: 20px;
    width: 100%;
  }

  .sidebar .box:last-child {
    margin: 0;
  }

  .item {
    width: 48%;
  }

  .grid-sizer {
    width: 48%;
  }

  .gutter-sizer {
    width: 4%;
  }

}

@media screen and (max-width: 500px) {

  .header h1 a {
    font-size: 8vw;
  }

  .content-text {
    font-size: 14px;
    line-height: 140%;
    padding: 30px 20px;
  }

  .main-category,
  .main-featured {
    padding: 0;
  }

  .item {
    width: 100%;
  }

  .grid-sizer {
    width: 100%;
  }

  .gutter-sizer {
    width: 0;
  }

}