<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
Theme Name: BoxDesign
Version:    3.0.2
*/

html,
body {
  min-height: 100%;
  padding: 0;
  margin: 0;
}

body
{
   background: #fff;
   color: #000;
   font-size: 15px;
   font-family: 'Source Sans Pro', sans-serif;
   font-weight: normal;
   font-style: normal;
   width: 100%;
   min-height: 100%;
   cursor: default;
}

table, nav, h1, h2, h3, h4, h5, h6, p, a, ul, ol, li
{
   margin: 0;
   padding: 0;
}

/* Reset buttons border. It's important for input and button tags.
 * border-collapse should be separate for shadow in IE.
 */
.box-button {
   border: 0;
   border-collapse: separate;
   -webkit-background-origin: border !important;
   -moz-background-origin: border !important;
   background-origin: border-box !important;
   border-width: 0;
   padding: 5px 15px;
   line-height: 30px;
}

p {
  margin: 18px 0 22px;
  font-size: 16px;
  line-height: 150%;
}

h1, h1 a, h2, h2 a, h3, h3 a, h4, h4 a {
   font-size: 36px;
   font-weight: normal;
   font-style: normal;
   line-height: 140%;
   color: #c99618;
   text-transform: uppercase;
}

h2, h2 a {
  font-size: 30px;
  max-idth: 740px;
}

h3, h3 a {
  font-size: 24px;
  max-idth: 740px;
}

h4, h4 a {
  font-size: 22px;
}

a, a:link, a:visited {
   text-decoration: none;
   color: #c99618;
}

a img {
   border: 0;
}

header, footer, article, nav, .box-checkbox:before, .box-radiobutton:before {
  -webkit-background-origin: border !important;
  -moz-background-origin: border !important;
  background-origin: border-box !important;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

ul {
   list-style-type: none;
}

ol {
   list-style-position: inside;
}

form {
   padding: 0;
   margin: 0;
}

form .wpcf7-response-output {
  max-width: 460px;
}

table.position {
   position: relative;
   width: 100%;
   table-layout: fixed;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  padding: 10px 0;
}

/* Main navigation */
header .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

.box-header.header-pin {
  position: fixed;
  width: 100%;
}

.box-header-scroll.header-pin {
  top: 5px;
  position: absolute;
}

nav {
   width: 100%;
   display: inline-block;
   text-align: center;
}

/*!
 * Made by Erik Terwan
 * 24th of November 2015
 * MIT License
 */
 
#header-nav input[type="checkbox"]
{
  position: absolute;
  height: 1px;
  display: none;
  z-index: -1;
  -webkit-touch-callout: none;
}

#header-nav label {
  display: block;
  margin: 10px auto;
  width: 40px;
  position: relative;
  padding: 10px 10px 6px;
  cursor: pointer;
  background: #fff;
}

#header-nav label&gt;span {
  display: block;
  width: 100%;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #000;
  z-index: 1;
  
  transform-origin: 50% 50%;
  transition: transform 0.3s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.3s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.35s ease;
}

#header-nav input:checked ~ label&gt;span {
  opacity: 1;
  transform: rotate(45deg) translate(7px, 7px);
}

#header-nav input:checked ~ label&gt;span:nth-child(2) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#header-nav input:checked ~ label&gt;span:last-child {
  transform: rotate(-45deg) translate(6px, -6px);
}

#header-nav .box-hmenu {
  transform: scale(0, 0);
  transition: transform 0.25s cubic-bezier(0.77,0.2,0.05,1.0),
              max-height 0.2s cubic-bezier(0.77,0.2,0.05,1.0);
  display: inline-block;
  text-align: left;
  max-height: 0;
  overflow: hidden;
  z-index: 499;
}

#header-nav input:checked ~ .box-hmenu {
  transform: scale(1, 1);
  max-height: 200vh;  /* inrease max height for big menu or change overflow to scroll */
}

.box-header-nav-separator {
  padding: 0 6px;
}

/* wordpress header menu */
ul.box-hmenu, ul.box-hmenu ul
{
   padding: 0;
   list-style-type: none;
}

ul.box-hmenu li
{
   z-index: 5;
   display: block;
   float: none;
   background: none;
   padding: 0;
   position: relative;
}

ul.box-hmenu li:hover
{
   z-index: 10000;
}

ul.box-hmenu li a
{
   padding: 1px 13px 11px 12px;
   margin: 0 auto;
   position: relative;
   display: block;
   cursor: pointer;
   text-decoration: none;
   color: #fff;
   line-height: 30px;
}

ul.box-hmenu&gt;li:last-child&gt;a {
  padding-right: 0;
}

.box-hmenu a,
.box-hmenu a:link,
.box-hmenu a:visited,
.box-hmenu a.active,
.box-hmenu a:hover
{
   font-size: 24px;
   font-weight: 500;
   font-style: normal;
   text-decoration: none;
   text-transform: uppercase;
  font-variant: small-caps;
  font-variant: all-small-caps;
   transition: color .2s;
}

ul.box-hmenu&gt;li&gt;a.active,
ul.box-hmenu li:hover&gt;a
{
   color: #b07f4a;
}

ul.box-hmenu li li
{
   width: 100%;
   margin-left: 0;
   position: relative;
   float: none;
   display: block;
   line-height: 30px;
   background-color: #000;
}

.box-hmenu ul {
  text-align: left;
  border-left: 4px solid #fff;
  margin: 5px 0 10px 16px;
}

.box-hmenu ul a
{
   display: block;
   white-space: nowrap;
   height: 24px;
   border: 0;
   line-height: 26px;
   font-size: 12px;
   text-decoration: none;
}

.box-header-nav-ac {
  text-align: left;
  display: block;
  padding: 15px 0 10px 20px;
  max-width: 1140px;
  font-size: 18px;
  color: #444;
  text-transform: uppercase;
  font-variant: small-caps;
  font-variant: all-small-caps;
}

.box-theme-image {
  width: 100%;
  height: auto;
  margin-top: 50px;
  margin-bottom: -25px;
}


/* Desktop header and menu */
@media (min-width: 1000px) {
  #header-nav.nav-default label {
    display: none;
  }
  
  .box-theme-image {
    position: absolute;
    left: -5000px;
  }
  
  #header-nav.nav-slide label {
    display: block;
    position: absolute;
    right: 50px;
    z-index: 1001;
    top: 50px;
  }
  
  #header-nav.nav-slide .box-hmenu {
    display: block;
    position: fixed;
    height: 100%;
    right: -360px;
    width: 250px;
    background-color: #000;
    top: 0;
    padding: 180px 20px 20px 25px;
    transition: .22s;
  }
  
  #header-nav.nav-slide input:checked ~ .box-hmenu {
    right: 0;
  }
    
  #header-nav.nav-slide input:checked ~ label {
    position: fixed;
  }
  
  header .container {
    flex-wrap: no-wrap;
    justify-content: space-between;
  }
  
  #header-nav.nav-default {
    width: auto;
  }
  
  #header-nav .box-hmenu {
    display: block;
    overflow: initial;
    max-height: initial;
    transform: scale(1, 1);
    padding-top: 46px;
  }
  
  #header-nav.nav-default ul.box-hmenu li {
    display: inline-block;
  }
  
  #header-nav.nav-default ul.box-hmenu li:hover&gt;ul {
     visibility: visible;
     top: 100%;
  }
  
  #header-nav.nav-default .box-hmenu ul 
  {
    border-left: 0px;
  }

  #header-nav.nav-default ul.box-hmenu li li:hover&gt;ul {
     top: 0;
     left: 100%;
  }
  
  #header-nav.nav-default ul.box-hmenu li:last-child li:hover&gt;ul {
    left: auto;
    right: 100%;
    margin-right: -35px;
  }
  
  #header-nav.nav-default ul.box-hmenu ul
  {
     visibility: hidden;
     position: absolute;
     z-index: 10;
     left: 0;
     top: 0;
     background-image: url('images/spacer.gif');
  }

  #header-nav.nav-default ul.box-hmenu&gt;li&gt;ul
  {
     padding: 25px 35px 35px 35px;
     margin: -7px 0 0 -12px;
     opacity: 0;
     transition: margin-left .3s ease-in-out, opacity .3s ease-in-out;
  }

  #header-nav.nav-default ul.box-hmenu&gt;li:hover&gt;ul {
    margin: -7px 0 0 -16px;
    opacity: 1;
  }

  #header-nav.nav-default ul.box-hmenu ul ul
  {
     padding: 35px 35px 35px 15px;
     margin: -35px 0 0 -15px;
  }
}

.box-postcontent:after {
  content: '';
  clear: both;
  width: 100%;
  display: block;
}


/* Form items */
form label &gt; span {
  display: inline-block;
  min-width: 160px;
}

form label {
  margin: 5px 0;
  display: inline-block;
  width: 100%;
}

input, select, textarea, a.box-search-button span
{
   vertical-align: middle;
   font-size: 13px;
   font-weight: normal;
   font-style: normal;
}


input[type="text"], input[type="tel"], input[type="search"], input[type="number"], input[type="password"], input[type="email"], input[type="url"], button, input[type="submit"], textarea
{
   background: #eee;
   border:0px solid #fff;
   margin:0 auto;
   padding: 4px 8px;
   color: #525252;
   font-weight: normal;
   font-style: normal;
   text-shadow: none;
   width: 100%;
   max-width: 360px;
   line-height: 28px;
   min-width: 80px;
}

input[type="button"], input[type="submit"] {
  cursor: pointer;
  transition: .2s ease;
}

input[type="button"]:hover, input[type="submit"]:hover {
  background: #000;
  color: #fff;
}

input.box-error, textarea.box-error
{
   background: #FAFAFA;
   border:1px solid #E2341D;
   margin:0 auto;
}
input.box-error, textarea.box-error {
   color: #525252 !important;
   font-weight: normal;
   font-style: normal;
}
form.box-search
{
   background-image: none;
   border: 0;
   display: flex;
   position:relative;
   top:0;
   padding:0;
   margin:5px 0;
   left:0;
   line-height: 0;
   justify-content: flex-start;
   flex-wrap: no-wrap;
}

form.box-search&gt;input, a.box-search-button{
   bottom:0;
   left:0;
   padding: 0;
   vertical-align: middle;
   margin: 0;
}

form.box-search input[type="submit"], input.box-search-button, a.box-search-button {
   left:auto;
   display:block;
   border:none;
   background:url('images/searchicon.png') center center no-repeat;
   width:24px;
   height: 100%;
   padding:0;
   color: #FFFFFF !important;
   cursor: pointer;
   min-width: 35px;
   background-color: #f04e23;
}

a.box-search-button span.box-search-button-text {
   display: none;
}

.box-comments
{
   border-top:1px dotted #B5B5B5;
   margin:0 auto;
   margin-top: 25px;
}

.box-comments h2
{
   color: #292929;
}

.box-comment-inner
{
   -webkit-border-radius:2px;
   -moz-border-radius:2px;
   border-radius:2px;
   padding:5px;
   margin:0 auto;
   margin-left: 96px;
}
.box-comment-avatar
{
   float:left;
   width:80px;
   height:80px;
   padding:2px;
   background:#fff;
}

.box-comment-avatar&gt;img
{
   margin:0 !important;
   border:none !important;
}

.box-comment-content
{
   padding:10px 0;
}

.box-comment
{
   margin-top: 6px;
}

#comment-list&gt;li:first-child&gt;.box-comment
{
   margin-top: 0;
}

.box-comment-header
{
   color: #292929;
}

.box-pager
{
   padding:6px;
   margin:2px;
}

.box-pager&gt;*:last-child,
.box-pager&gt;*:last-child:hover
{
   margin-right:0;
}

.box-pager&gt;span {
   cursor:default;
}

.box-pager&gt;*
{
   background: #E0E0E0;
   padding:10px;
   margin:0 4px 0 auto;
   position:relative;
   display:inline-block;
   margin-left: 0;
}

.box-pager a:link,
.box-pager a:visited
{
   font-family: 'Source Sans Pro', sans-serif;
   text-decoration: none;
   color: #212121
;
}

.box-pager .active
{
   background: #BFBFBF;
   padding:10px;
   margin:0 4px 0 auto;
   color: #FFFFFF
;
}

.box-pager .more
{
   background: #E0E0E0;
   margin:0 4px 0 auto;
}
.box-pager a.more:link,
.box-pager a.more:visited
{
   color: #212121
;
}
.box-pager a:hover
{
   background: #C7C7C7;
   padding:10px;
   margin:0 4px 0 auto;
}
.box-pager  a:hover,
.box-pager  a.more:hover
{
   text-decoration: none;
   color: #292929
;
}
.box-pager&gt;*:after
{
   margin:0 0 0 auto;
   display:inline-block;
   position:absolute;
   content: ' ';
   top:0;
   width:0;
   height:100%;
   right: 0;
   text-decoration:none;
}

.box-pager&gt;*:last-child:after{
   display:none;
}

.box-commentsform
{
   background: #E8E8E8;
   background: transparent;
   padding:10px;
   margin:0 auto;
   margin-top:25px;
   color: #292929;
   width: 100%;
   max-width: 1100px;
}

.box-commentsform h2{
   padding-bottom:10px;
   margin: 0;
   color: #292929;
}

.box-commentsform label {
   display: inline-block;
   line-height: 25px;
}

.box-commentsform input:not([type=submit]), .box-commentsform textarea {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  width:100%;
  max-width:100%;
}

.box-commentsform .form-submit
{
   margin-top: 10px;
}

article table, table.box-article
{
   border-collapse: collapse;
   margin: 1px;
}


article th, .box-article td
{
  padding: 2px;
  border: solid 1px #C7C7C7;
  vertical-align: top;
  text-align: left;
}

article th
{
  text-align: center;
  vertical-align: middle;
  padding: 7px;
}

pre
{
  overflow: auto;
  padding: 0.1em;
}

blockquote
{
  background: #F2F2F2 url('images/postquote.png') no-repeat scroll;
  padding: 10px 10px 10px 30px;
  margin: 0 0 0 10px;
  color: #121212;
  font-weight: normal;
  font-style: italic;
  text-align: left;
  /* makes block not to align behind the image if they are in the same line */
  overflow: auto;
  clear:both;
}

#comment
{
    width:99%;
}

#comments-list, #comments-list .comment
{
  background: none;
  padding:0;
  margin:0;
  overflow: visible;
}

#comments-list .comment:before, #comments-list .comment:after
{
  display:none;
}

#comments-list .comment .comment
{
  margin-left: 20px;
}

section.box-headline {
    height: 200px;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

h1.box-postheader {
    margin: 0 auto;
    max-width: 1100px;
    width: 100%;
    font-size: 80px;
    font-weight: 200;
    font-style: normal;
    letter-spacing: 7px;
    text-transform: uppercase;
    font-variant: small-caps;
    font-variant: all-small-caps;
    display: block;
    text-indent: -6px;
    padding-left: 20px;
    color: #fff;
    line-height: 88px;
    padding-bottom: 12px;
}

section.box-headline.inverted h1.box-postheader {
  color: #000;
}

ul#comments-list li cite
{
  font-size: 1.2em;
}

#commentform
{
  text-align:left;
}

.rtl #commentform
{
  text-align:right;
}

img.wp-smiley
{
  border: none;
  margin: 1px;
  vertical-align:middle;
  padding: 0;
}

.navigation
{
  display: block;
  text-align: center;
}

/* Recommended by http://codex.wordpress.org/CSS */
/* Begin */
.aligncenter, div.aligncenter, .box-article .aligncenter img, .aligncenter img.box-article, .aligncenter img, img.aligncenter
{
  display: block;
  margin-left: auto;
  margin-right: auto;
}

p.aligncenter , p.center, h2.aligncenter, h2.center, h3.aligncenter, h3.center
{
   text-align: center;
}

.alignleft
{
  float: left;
}

.alignright
{
  float: right;
}

.wp-caption
{
  border: 1px solid #ddd;
  background-color: #f3f3f3;
  padding-top: 4px;
  margin: 10px;
}

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

.wp-caption p.wp-caption-text
{
  font-size: 11px;
  line-height: 17px;
  padding: 0 4px 5px;
  margin: 0;
}

.wp-caption, .wp-caption p
{
    text-align: center;
}

.gallery {
	margin: 0 auto 18px;
    clear:both;
    overflow:hidden;
}

.gallery .gallery-item {
	float: left;
	margin-top: 0;
	text-align: center;
	width: 33%;
}
.gallery img {
	border: 2px solid #cfcfcf;
}

.gallery .gallery-caption {
	color: #888;
	font-size: 12px;
	margin: 0 0 12px;
}

.gallery dl {
	margin: 0;
}

.gallery img {
	border: 10px solid #f1f1f1;
}

.gallery br+br {
	display: none;
}
/* End */

.hidden
{
  display: none;
}

/* Calendar */
#wp-calendar {
  empty-cells: show;
  margin: 10px auto 0;
  width: 155px;
}

#wp-calendar #next a {
  padding-right: 10px;
  text-align: right;
}

#wp-calendar #prev a {
  padding-left: 10px;
  text-align: left;
}

#wp-calendar a {
  display: block;
}

#wp-calendar caption {
  text-align: center;
  width: 100%;
}

#wp-calendar td {
  padding: 3px 0;
  text-align: center;
}


#todays-events{
  position: relative;
  z-index: 11;
}

#upcoming-events{
  position: relative;
  z-index: 10;
}

ul#comments-list li
{
    list-style-image: none;
    background:none;
    list-style-type:none;

}

#respond .comment-notes {
	margin-bottom: 1em;
}

.form-allowed-tags {
	line-height: 1em;
}

#comments-list #respond {
	margin-left: 20px !important;
}

#respond .form-allowed-tags {
	font-size: 12px;
	line-height: 18px;
}

#respond .form-allowed-tags code {
	font-size: 11px;
}

#respond .form-submit {
	margin: 12px 0;
}

#respond .form-submit input {
	width: auto;
}



/* Boxdesign box sections */
.box-section-wrapper {
  position: relative;
}

.box-section-wrapper.parallax,
.box-section-wrapper.parallax-reversed {
  overflow: hidden;
}

.box-section-bg.repeat {
  background-position: top center;
}

.box-section-bg.center {
  background-position: center center;
  background-repeat: no-repeat;
}

.box-section-bg.scale {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
}

.box-section-bg.parallax,
.box-section-bg.parallax-reversed {
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
  max-height: 100%;
  z-index: -1;
}

.box-section-bg.parallax {
  top: -250px;
  height: calc(100% + 250px);
  max-height: calc(100% + 250px);
}

.box-section-bg.parallax-reversed {
  top: 0px;
  height: calc(100% + 250px);
  max-height: calc(100% + 250px);
}

.box-section-content.slide img.alignleft, .box-section-content.slide img.alignright  {
  position: relative;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 999px) {
	.box-section-bg {
		min-height: auto !important;
		transform: translate3d(0, 0, 0) !important;
		position: static !important;
		height: auto !important;
    background-image: none !important;
    background-color: #fff !important;
	}
  
  .box-section-content .box-link-icon a {
    color: #f04e23 !important;
    background-image: url('images/link-arrow-dark.png') !important;
  }
  
  .box-section-bg.imageless {
    padding-top: 0;
  }
}

.box-section-content.slide img.alignleft {
  left: -50px;
}
.box-section-content.slide img.alignright {
  right: -50px;
}

img.alignright.boxdesign-slide-in {
  opacity: 1 !important;
  right: 0 !important;
}

img.alignleft.boxdesign-slide-in {
  opacity: 1 !important;
  left: 0 !important;
}

.box-section-content.img-parallax img  {
  margin-bottom: 90px !important;
}

.art-column-twothird {
  width: 66%;
  padding-right: 10px;
}

.scroll-toggle {
  transition: all .16s;
}

.scroll-toggle.toggle {
  width: 60% !important;
}

/* Home Page Slideshow */
#boxdesign-slideshow {
  position: relative;
  z-index: 0;
}

#boxdesign-slideshow .cycle-slide {
  width: 100%;
  height: auto;
}

#boxdesign-slideshow .cycle-slide img {
  max-width: 100%;
  height: auto;
  margin: 0;
  display: block;
}


#boxdesign-slideshow .slide-controll {
  z-index: 150;
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 0px;
}

#boxdesign-slideshow .slide-titles {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  z-index: 120;
  transform: translateY(-50%);
  padding: 25px 0 15px;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.9);
}

#boxdesign-slideshow .slide-titles .slide-content {
  display: none;
  font-size: 74px;
  font-variant: small-caps;
  font-variant: all-small-caps;
  text-transform: uppercase;
  font-weight: 200;
  line-height: 80px;
  letter-spacing: 7px;
  color: #fff;
  text-decoration: none;
}

#boxdesign-slideshow .slide-titles .slide-content.active {
  display: inline;
}

#boxdesign-slideshow .slide-controll .wrapper {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

#boxdesign-slideshow .slide-controll .wrapper&gt;a {
  color: #fff;
  text-decoration: none;
  font-size: 55px;
  display: block;
  position: absolute;
  line-height: 80px;
  left: 50%;
  width: 1000px;
  max-width: 100%;
  margin-left: -50%;
  top: -280px;
  opacity: 0;
  transition: opacity .5s;
  z-index: 1;
  text-align: center;
}

#boxdesign-slideshow .slide-controll .wrapper&gt;a.active {
  opacity: 1;
  z-index: 5;
}

#boxdesign-slideshow .slide-controll .wrapper .slide-navigation {
  position: absolute;
  right: 0;
  top: -45px;
}

#boxdesign-slideshow .slide-navigation span {
  border-radius: 50%;
  width: 4px;
  height: 4px;
  padding: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  display: inline-block;
  margin-right: 4px;
  border: 2px solid rgba(255, 255, 255, 0);
  background-color: #fff;
  transition: all .2s;
  text-indent: -100;
  overflow: hidden;
  cursor: pointer;
}

#boxdesign-slideshow .cycle-pager-active {
  border: 2px solid rgba(255, 255, 255, 1) !important;
  background-color: rgba(255, 255, 255, 0) !important;
}

@media screen and (max-width: 500px) {
  #boxdesign-slideshow .slide-navigation {
    display: none;
  }

  #boxdesign-slideshow .slide-controll .wrapper&gt;a {
    font-size: 20px;
    left: 0;
    margin-left: 0;
    text-align: center;
    width: 100%;
  }
}

#boxdesign-slideshow .post-highlight {
  position: relative;
}

#boxdesign-slideshow .post-highlight img {
  max-width: 100%;
  height: auto;
}

#boxdesign-slideshow .post-highlight .post-box-wrapper {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 100%;
  max-width: 1000px;
  height: 60%;
}

#boxdesign-slideshow .post-highlight .post-box-wrapper article {
  position: relative;
  left: -50%;
  display: block;
  padding: 20px;
  background-color: rgba(200, 200, 200, 0.8);
  color: #000;
  margin: 0 auto;
}

#boxdesign-slideshow .post-highlight .post-box-wrapper article h2 {
  margin-bottom: 25px;
}

.post-thumbnail-wrapper {
  display: block;
  width: 100%;
  max-width: 300px;
}

.box-postfootericons, .box-postfootericons a {
  line-height: 55px;
  padding: 0 3px;
}

@media (min-width: 1000px) {
  .box-post-single-wrapper .post-thumbnail-wrapper {
    margin-right: 40px;
    float: left;
  }
}

.post-thumbnail-wrapper img {
  display: block;
  margin-top: 20px !important;
  width: auto;
  max-width: 100%;
  height: auto;
}

.post-content-wrapper {
  display: inline-block;
  width: 100%;
  max-width: 750px;
}

@media screen and (max-width: 800px) {
  .box-post-single {
    padding: 15px;
  }
  
  .post-thumbnail-wrapper img {
    margin: 20px auto !important;
  }
  
  .post-thumbnail-wrapper {
    max-width: initial;
    width: auto;
  }
  
  .post-content-wrapper {
    max-width: initial;
    width: auto;
    padding: 0;
  }
  
  .post-preview {
    display: block;
  }
}

/* GrafickÃ© pÅ™izpÅ¯sobenÃ­ obsahu boxu vybranÃ©mu tÃ©matu */
.box-section-content.white p,
.box-section-content.white form,
.box-section-content.white h1,
.box-section-content.white h2,
.box-section-content.white h3,
.box-section-content.white h4 {
  color: #fff;
}

.box-section-content {
  padding-bottom: 30px;
}

.box-section-content.dark a,
.box-section-content.dark .box-link-icon {
  font-weight: 600;
  text-decoration: none;
}

.box-section-content.light a,
.box-section-content.light .box-link-icon {
  font-weight: 600;
  text-decoration: none;
}

.box-section-content.white a,
.box-section-content.white .box-link-icon {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.spaced-header {
  margin-bottom: 30px !important;
}

/* new layout support */
.box-content-right {
  width: 50%;
  float: right;
}

.box-content-right&gt;div {
  padding-right: 0!important;
}

.box-content-left {
  width: 50%;
  text-align: right;
}

.box-content-left&gt;div {
  padding-left: 0!important;
}

.box-content-center {
  text-align: center;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}

.box-content-center p {
  margin: 18px auto 22px;
}

.box-content-block {
  text-align: left;
}

.box-content-right,
.box-content-left,
.box-content-center,
.box-content-block {
  margin-top: 60px;
}

/* paddings */

.box-content-right .pad-small,
.box-content-left .pad-small,
.box-content-center .pad-small,
.box-content-block .pad-small {
  padding: 0 40px;
}

.box-content-right .pad-tiny,
.box-content-left .pad-tiny,
.box-content-center .pad-tiny,
.box-content-block .pad-tiny {
  padding: 0 30px;
}

.box-content-right .pad-medium,
.box-content-left .pad-medium,
.box-content-center .pad-medium,
.box-content-block .pad-medium {
  padding: 0 50px;
}

.box-content-right .pad-large,
.box-content-left .pad-large,
.box-content-center .pad-large,
.box-content-block .pad-large {
  padding: 0 60px;
}

/* spacings */
.box-content-right.spac-small,
.box-content-left.spac-small,
.box-content-center.spac-small,
.box-content-block.spac-small {
  margin-top: 30px;
}

.box-content-right.spac-medium,
.box-content-left.spac-medium,
.box-content-center.spac-medium,
.box-content-block.spac-medium {
  margin-top: 40px;
}

.box-content-right.spac-big,
.box-content-left.spac-big,
.box-content-center.spac-big,
.box-content-block.spac-big {
  margin-top: 60px;
}

.box-content-right.spac-large,
.box-content-left.spac-large,
.box-content-center.spac-large,
.box-content-block.spac-large {
  margin-top: 90px;
}

.box-content-right.spac-none,
.box-content-left.spac-none,
.box-content-center.spac-none,
.box-content-block.spac-none {
  margin-top: 0px;
}

.box-content-right.bg,
.box-content-left.bg,
.box-content-center.bg,
.box-content-block.bg {
  background-color: rgba(0,0,0,0.7);
  padding: 5px 30px 20px;
}

.light .box-content-right.bg,
.light .box-content-left.bg,
.light .box-content-center.bg,
.light .box-content-block.bg {
  background-color: rgba(203,152,49,0.9);
  padding: 5px 40px 30px;
}

.inverted .box-content-right.bg,
.inverted .box-content-left.bg,
.inverted .box-content-center.bg,
.inverted .box-content-block.bg {
  background-color: rgba(255,255,255,0.8);
  padding: 5px 40px 30px;
}

/*link arrow style*/
.box-link-icon a,
a .box-link-icon {
  padding: 10px 20px 10px 40px;
  margin-top: 20px;
  line-height: 25px !important;
  display: inline-block;
  font-size: 18px;
  background-position: left center;
  background-repeat: no-repeat;
  background-image: url('images/link-arrow-dark.png');
}

@media (min-width: 600px) {
  .box-section-content.dark .box-link-icon a,
  .box-section-content.dark a .box-link-icon {
    background-image: url('images/link-arrow-gray.png');
  }

  .box-section-content.light .box-link-icon a,
  .box-section-content.light a .box-link-icon {
    background-image: url('images/link-arrow-dark.png');
  }

  .box-section-content.inverted .box-link-icon a,
  .box-section-content.inverted a .box-link-icon {
    background-image: url('images/link-arrow-light.png');
  }

  .box-section-content.white .box-link-icon a,
  .box-section-content.white a .box-link-icon {
    background-image: url('images/link-arrow-light.png');
  }

}

/* Flex layouts */
.box-layout-cell {
  width: 100%;
}

.box-layout-cell::after {
  content: '';
  clear: both;
  display: block;
}

@media (min-width: 1000px) {
  .box-layout-wrapper {
    display: flex;
    justify-content: space-between;
  }

  .box-layout-cell.layout-2 {
    width: 200%;
  }

  .box-layout-cell.layout-3 {
    width: 300%;
  }

  .box-layout-cell.layout-4 {
    width: 400%;
  }
  
  .box-layout-cell.padded {
    padding: 0 40px;
  }
  
  p.padded {
    padding-left: 90px;
  }
}

.box-section-content {
  padding-top: 1px;
}

.box-layout-cell img {
  max-width: 100%;
  height: auto;
  position: relative;
}

.box-footer {
	padding: 55px 0;
}

@media (max-width: 980px) {
	#boxdesign-slideshow .slide-titles .slide-content {
		font-size: 48px;
		line-height: 48px;
	}
}


@media (max-width: 650px) {
	h1.box-postheader {
		font-size: 56px;
		padding-left: 20px;
    padding-top: 25px;
    line-height: 64px;
	}
 
  #boxdesign-slideshow .slide-titles {
    padding: 15px 0 5px;
  }
	
	#boxdesign-slideshow .slide-titles .slide-content {
		font-size: 40px;
		line-height: 40px;
	}
  
}

@media (max-width: 480px) {
	h1.box-postheader {
		font-size: 38px;
		padding-left: 15px;
    padding-top: 15px;
	}
	
	#boxdesign-slideshow .slide-titles .slide-content {
		font-size: 24px;
		line-height: 26px;
	}
}


@media (min-width: 1000px) {
  .box-post-articles .box-postcontent {
    display: flex;
  }
  
  .box-post-articles .container {
    padding: 0;
  }
}

/* Template Masonry */
.box-post-articles.box-masonry-layout {
  width: 100%;
}

.box-masonry-layout .post-thumbnail-wrapper {
  margin: 0 auto;
}

.box-masonry-layout .box-postcontent {
  display: block;
  text-align: justify;
}

.masonry-sizer {
  display: inline-block;
}

.masonry-column-1&gt;*{
  width: 100%;
}

.masonry-column-2&gt;* {
  width: 49%;
}

.masonry-column-3&gt;* {
  width: 32%;
}

.masonry-column-4&gt;* {
  width: 24%;
}

.masonry-column-5&gt;* {
  width: 19%;
}


@media (max-width: 1600px) {
  .masonry-column-5&gt;* {
    width: 24%;
  }
}

@media (max-width: 1200px) {
  .masonry-column-5&gt;* {
    width: 32%;
  }
  
  .masonry-column-4&gt;* {
    width: 32%;
  }
}

@media (max-width: 900px) {
  .masonry-column-5&gt;* {
    width: 49%;
  }
  
  .masonry-column-4&gt;* {
    width: 49%;
  }
  
  .masonry-column-3&gt;* {
    width: 49%;
  }
}

@media (max-width: 650px) {
  .masonry-column-5&gt;* {
    width: 100%;
  }
  
  .masonry-column-4&gt;* {
    width: 100%;
  }
  
  .masonry-column-3&gt;* {
    width: 100%;
  }
  
  .masonry-column-2&gt;* {
    width: 100%;
  }
}

/* Post specific styles */

.post-navigation {
  margin-top: 10px;
  padding-top: 10px;
}

.post-navigation:after {
  content: '';
  display: block;
  clear: both;
  width: 100%;
}

.box-post-articles article {
  margin-top: 15px;
  margin-bottom: 5px;
  padding: 5px 15px;
}

.box-post-articles article:nth-child(n+4) {
  padding: 45px 15px 0;
  border-top: 1px solid #f04e23;
}

@media (max-width: 900px) {
  .box-post-articles article:nth-child(n+3) {
    padding: 35px 10px 0;
    border-top: 1px solid #f04e23;
  }
}

@media (max-width: 650px) {
  .box-post-articles article:nth-child(n+2) {
    border-top: 1px solid #f04e23;
  }
}

.post-home .box-post-articles {
  max-width: calc(100% - 30px);
  margin: 0 auto;
}

.box-section-wrapper ul {
  display: inline-block;
  text-align: left;
  font-size: 16px;
  line-height: 24px;
}

.gallery-linear .gallery-image {
  margin: 5px;
}</pre></body></html>