@charset "UTF-8";
/************************************************

Stylesheet: Global Stylesheet

*************************************************/
/******************************************************************

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of Sass' great features:
Mixins & Constants.

******************************************************************/
/*********************
TOOLS
*********************/
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
/*********************
COLORS
*********************/
/*********************
TYPOGRAPHY
*********************/
/*
@include font-face("MyFont", "path/to/MyFont", $style: normal, $weight: normal)
*/
/* rem Umwandlung */
/*
.demo {
  font-size: rem(24px); // Simple
  padding: rem(5px 10px); // Multiple values
  border-bottom: rem(1px solid black); // Multiple mixed values
  box-shadow: rem(0 0 2px #ccc, inset 0 0 5px #eee); // Comma-separated values
  text-shadow: rem(1px 1px) #eee, rem(-1px) 0 #eee; // Alternate use
}
*/
/* breakpoints */
/*
.sidebar {
  width: 60%;
  float: left;
  margin: 0 2% 0 0;
  @include bp-small {
    width: 100%;
    float: none;
    margin: 0;
  }
}	
	
*/
/*
.fade {
  @include opacity(.4);
}
*/
/*********************
CSS3 GRADIENTS.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/* order radius */
/* list reset*/
/*--------------------------------------------------------------*/
/* All SASS Variables */
/*--------------------------------------------------------------*/
/*** Colors ***/
/*** Fonts ***/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
/* Slider */
.slick-loading .slick-list {
  background: #fff url("../images/ajax-loader.gif") center center no-repeat;
}
/* Icons */
@font-face {
  font-family: "slick";
  src: url("../fonts/slick.eot");
  src: url("../fonts/slick.eot?#iefix") format("embedded-opentype"), url("../fonts/slick.woff") format("woff"), url("../fonts/slick.ttf") format("truetype"), url("../fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev, .slick-next {
  position: absolute;
  display: block;
  height: 100%;
  width: 50%;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before, .slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-prev {
  z-index: 50;
}
[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}
[dir="rtl"] .slick-prev:before {
  content: "→";
}
.slick-next {
  left: 50%;
}
[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}
[dir="rtl"] .slick-next:before {
  content: "←";
}
/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}
/*--------------------------------------------------------------*/
/* Layout */
/*--------------------------------------------------------------*/
body {
  font-family: "akzidenz-grotesk", sans-serif;
  font-weight: 500;
  font-style: normal;
  background: #fff;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 30em) {
  body {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
.homeContent, .header {
  background: #004925;
}
.homeContent {
  color: #fff;
  padding: 3.125rem 0;
}
.homeContent a {
  color: #fff;
}
.sectionWrap {
  padding: 1.5625rem 0;
}
.sectionWrap.color-1 {
  background-color: #fff;
}
.sectionWrap.color-2 {
  background-color: #CDCDCD;
}
.sectionWrap.color-3 {
  background-color: #2C2A29;
}
#el_33 {
  padding-bottom: 0 !important;
}
.slider {
  height: auto;
  background-color: #fff !important;
  margin-bottom: 0;
}
.slider .slide {
  position: relative;
}
.slider .slide .slideCaption {
  display: none;
  position: absolute;
  color: #fff;
  bottom: 20px;
  left: 40px;
  font-size: 0.875rem;
}
@media only screen and (max-width: 30em) {
  .slider .slide .slideCaption {
    left: 1.25rem;
  }
}
.slider .slide .slidePaging {
  position: absolute;
  color: #fff;
  bottom: 20px;
  right: 40px;
  font-size: 0.875rem;
}
@media only screen and (max-width: 30em) {
  .slider .slide .slidePaging {
    right: 1.25rem;
  }
}
.accordion {
  background: transparent;
}
.accordion .accordion-item a.accordion-title {
  font-size: 3.125rem;
  line-height: 3.125rem;
  color: #000;
  background: transparent;
  border: 0;
  padding: 0;
}
.accordion .accordion-item a.accordion-title:hover {
  color: #999;
}
@media only screen and (max-width: 30em) {
  .accordion .accordion-item a.accordion-title {
    font-size: 2.1875rem;
    line-height: 2.1875rem;
  }
}
.accordion .accordion-item a.accordion-title:before {
  content: "";
}
.accordion .accordion-item a.accordion-title.is-active:before {
  content: "";
}
.accordion .accordion-item a.accordion-title:focus, .accordion .accordion-item a.accordion-title:hover {
  background: transparent;
  outline: none;
  text-decoration: none;
}
.accordion .accordion-content {
  border: 0;
  padding: 1.5625rem 0;
  background: transparent;
}
:last-child > .accordion-content:last-child {
  border: 0;
}
.color-2 .accordion .accordion-item a.accordion-title:hover {
  color: #fff;
}
/* Fade Text */
.start article section {
  opacity: 0;
  transition: opacity 2s linear;
}
.main.impr {
  min-height: 25rem;
  padding-top: 1.5625rem;
}
.main.impr h1 {
  margin-bottom: 3.125rem;
}
.main.impr h2 {
  margin-bottom: 1.875rem;
}
/*********************
HEADER
*********************/
.top-bar, .top-bar ul {
  background: transparent;
  padding: 0;
}
.topbar {
  background: #004925;
  position: fixed;
  z-index: 100;
  width: 100%;
}
.topbarMobile {
  background: #004925;
  width: 100%;
  position: fixed;
  z-index: 100;
}
.logoWrap {
  padding-top: 70px;
}
.logoWrap .logo {
  padding-left: 25px;
}
@media only screen and (max-width: 1080px) {
  .logoWrap .logo {
    padding-left: 0.9375rem;
  }
}
@media only screen and (max-width: 30em) {
  .logoWrap .logo {
    padding-left: 0.625rem;
  }
}
.beratung {
  display: inline-block;
  background: #fff;
  text-align: center;
  color: #004925;
  margin-top: 20px;
  border-radius: 20px;
  line-height: 1;
  padding: 5px 10px;
  font-size: 16px;
  transition: all 0.3s 0s ease;
}
.beratung:hover {
  background: #999;
  color: #fff;
}
.lang ul {
  float: right;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.lang ul li {
  float: left;
  padding: 1.25rem 0 0 1.25rem;
}
.lang ul li a {
  color: #fff;
  display: block;
  padding: 0px;
  line-height: 1.5625rem;
}
.lang ul li a:hover, .lang ul li a.active {
  text-decoration: none;
  border-bottom: 1px solid #fff;
}
/*********************
TYPOGRAFIE
*********************/
h1, h2, h3, h4, h5 {
  font-family: "akzidenz-grotesk", sans-serif;
}
h1 {
  font-size: 3.125rem;
  line-height: 1.5625rem;
}
h2 {
  font-size: 1.25rem;
  color: #000;
}
h2.menuAnchor {
  text-transform: uppercase;
  margin-bottom: 1.5625rem;
}
p, .intro {
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5625rem;
}
@media only screen and (max-width: 30em) {
  p, .intro {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
p a, p a:link, p a:visited, .intro a, .intro a:link, .intro a:visited {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
}
a:hover, a:active {
  color: #999;
  text-decoration: none;
}
.grau {
  color: #999 !important;
}
a.grau {
  border-bottom: 1px solid #999 !important;
}
.homeContent a {
  color: #fff !important;
  border-bottom: 1px solid #fff !important;
}
.sectionWrap {
  width: 100%;
}
.sectionWrap table {
  border-top: 1px solid #000;
}
.sectionWrap table tbody {
  border: 0;
  background: transparent;
}
.sectionWrap table tbody tr {
  border-bottom: 1px solid #000;
  background: transparent;
}
.sectionWrap table tbody tr td {
  padding: 0;
}
.sectionWrap table tbody tr:nth-child(even) {
  background: transparent;
}
/*********************
MENU
*********************/
.dropdown.menu {
  margin-top: 5px;
}
.dropdown.menu li {
  padding: 1.25rem 1.875rem 0.9375rem 0;
}
@media only screen and (max-width: 1080px) {
  .dropdown.menu li {
    padding: 1.25rem 1.25rem 0.9375rem 0;
  }
}
.dropdown.menu li a {
  color: #fff;
  font-size: 1.25rem;
  padding: 0;
}
.dropdown.menu li a:hover {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #fff;
}
.dropdown.menu li.active a {
  background: none;
  text-decoration: none;
  border-bottom: 1px solid #fff;
}
.menuTrigger {
  padding: 1.25rem 1.875rem 1.25rem 0;
  cursor: pointer;
  color: #fff;
  font-size: 1.25rem;
}
.mobileMenu {
  display: none;
  width: 100%;
  background: #004925;
}
.mobileMenu ul li {
  border-bottom: 1px solid #fff;
  display: block;
}
.mobileMenu ul li a {
  color: #fff;
  padding-left: 1.25rem;
}
.mobileMenu ul li.active a {
  background: transparent;
}
.page-template-template-impr .menuWrap {
  visibility: hidden;
}
/*********************
SIDEBARS & ASIDES
*********************/
.sidebar li {
  list-style: none;
}
.widget ul {
  margin: 0;
}
/* Language Styles */
.lang-en .topbar, .lang-en .topbarMobile, .lang-en .mobileMenu, .lang-en .homeContent, .lang-en .header {
  background: #965241;
}
.lang-fr .topbar, .lang-fr .topbarMobile, .lang-fr .mobileMenu, .lang-fr .homeContent, .lang-fr .header {
  background: #0082AE;
}
.lang-it .topbar, .lang-it .topbarMobile, .lang-it .mobileMenu, .lang-it .homeContent, .lang-it .header {
  background: #FF6400;
}
/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  margin-top: 1em;
  background: #2C2A29;
  color: #fff;
  padding: 1.5625rem 0 0 0;
}
.footer h3 {
  font-size: 3.125rem;
  line-height: 3.125rem;
}
@media only screen and (max-width: 30em) {
  .footer h3 {
    font-size: 2.1875rem;
    line-height: 2.1875rem;
  }
}
.footer a, .footer a:link, .footer a:visited {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.footer a:hover, .footer a:link:hover, .footer a:visited:hover {
  color: #999;
  border-bottom: 1px solid #999;
}
.footer p a, .footer p a:link, .footer p a:visited {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.nlTitel {
  cursor: pointer;
}
.nlTitel span {
  border-bottom: 1px solid #fff;
}
.nlTitel span:hover {
  color: #999;
  border-bottom: 1px solid #999;
}
#nlBody {
  display: none;
  margin-top: 1.25rem;
}
#nlBody .leftcol {
  padding-right: 1.25rem;
}
.rcc-wrapper p {
  margin-left: calc(16.66667% + .9375rem) !important;
  width: 50%;
  font-family: inherit !important;
  padding-top: 5px;
}
@media only screen and (max-width: 30em) {
  .rcc-wrapper p {
    width: 100%;
    margin-left: 0 !important;
  }
}
.rcc-panel a {
  padding-top: 0 !important;
}
.rcc-panel a:hover {
  background: transparent !important;
}
/* Form */
.wpcf7 {
  margin-top: 6.25rem !important;
  margin-bottom: 1.875rem !important;
}
[type=color], [type=date], [type=datetime-local], [type=datetime], [type=email], [type=month], [type=number], [type=password], [type=search], [type=tel], [type=text], [type=time], [type=url], [type=week], textarea, select {
  border: 0;
  background: transparent;
  border: 1px solid #000;
  padding: 5px 10px;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  height: auto;
  color: #000;
}
[type=color]:focus, [type=date]:focus, [type=datetime-local]:focus, [type=datetime]:focus, [type=email]:focus, [type=month]:focus, [type=number]:focus, [type=password]:focus, [type=search]:focus, [type=tel]:focus, [type=text]:focus, [type=time]:focus, [type=url]:focus, [type=week]:focus, textarea:focus {
  border: 0;
  background: transparent;
  border: 1px solid #000;
  padding: 5px 10px;
  color: #000;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
[type=submit] {
  font-size: 1.25rem;
  background: transparent;
  border: 0;
  color: #fff;
  padding: 0;
  border-bottom: 1px solid transparent;
}
[type=submit]:hover, [type=submit]:active {
  color: #999;
  border-bottom: 1px solid #999;
}
[type=submit].black {
  color: #000;
  border: 1px solid #000;
  padding: 20px 30px;
}
input::-webkit-input-placeholder {
  color: #fff;
}
input::-moz-placeholder {
  color: #fff;
}
input:-ms-input-placeholder {
  color: #fff;
}
input:-moz-placeholder {
  color: #fff;
}
.to-top {
  background-color: rgba(255, 255, 255, 0.75);
  display: none;
  z-index: 999;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  text-align: center;
  vertical-align: middle;
  padding: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
/*********************
POSTS & CONTENT STYLES
*********************/
.referenzWrap {
  margin-top: 1.875rem;
}
.referenzWrap .referenz {
  border-top: 1px solid #000;
  min-height: 18.75rem;
}
.referenzWrap .referenz .refTitel {
  margin-bottom: 1.25rem;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  -ms-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.referenzWrap .referenz .refImg {
  padding-top: 1.875rem;
}
.referenzWrap .referenz .refImg a:hover img {
  opacity: 0.5;
}
.referenzWrap .referenz .refImg img {
  max-width: 80%;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  -ms-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.content-not-found {
  margin: 30px 0;
}
.page-title .vcard {
  border: 0px;
  padding: 0px;
}
.byline {
  color: #999;
}
.entry-content img {
  max-width: 100%;
  height: auto;
}
.entry-content .alignleft, .entry-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}
.entry-content .alignright, .entry-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}
.entry-content .aligncenter, .entry-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}
.entry-content video, .entry-content object {
  max-width: 100%;
  height: auto;
}
.entry-content pre {
  background: #eee;
  border: 1px solid #cecece;
  padding: 10px;
}
.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px;
}
.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}
.wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 4px 0 7px;
  text-align: center;
}
.post-password-form input[type="submit"] {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  font-family: inherit;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #1779ba;
  color: #fefefe;
}
[data-whatinput="mouse"] .post-password-form input[type="submit"] {
  outline: 0;
}
.post-password-form input[type="submit"]:hover, .post-password-form input[type="submit"]:focus {
  background-color: #14679e;
  color: #fefefe;
}
/*********************
IMAGE GALLERY STYLES
*********************/
.gallery {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-right: -15px;
  margin-left: -15px;
}
.gallery::before, .gallery::after {
  content: " ";
  display: table;
}
.gallery::after {
  clear: both;
}
.gallery.gallery-columns-1 > dl {
  width: 100%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .gallery.gallery-columns-1 > dl {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.gallery.gallery-columns-1 > dl:last-child:not(:first-child) {
  float: right;
}
.gallery.gallery-columns-2 > dl {
  width: 50%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .gallery.gallery-columns-2 > dl {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.gallery.gallery-columns-2 > dl:last-child:not(:first-child) {
  float: right;
}
.gallery.gallery-columns-3 > dl {
  width: 33.33333%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .gallery.gallery-columns-3 > dl {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.gallery.gallery-columns-3 > dl:last-child:not(:first-child) {
  float: right;
}
.gallery.gallery-columns-4 > dl {
  width: 25%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .gallery.gallery-columns-4 > dl {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.gallery.gallery-columns-4 > dl:last-child:not(:first-child) {
  float: right;
}
.gallery.gallery-columns-5 > dl {
  width: 20%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .gallery.gallery-columns-5 > dl {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.gallery.gallery-columns-5 > dl:last-child:not(:first-child) {
  float: right;
}
.gallery.gallery-columns-6 > dl {
  width: 16.66667%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .gallery.gallery-columns-6 > dl {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.gallery.gallery-columns-6 > dl:last-child:not(:first-child) {
  float: right;
}
.gallery.gallery-columns-7 > dl {
  width: 14.28571%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .gallery.gallery-columns-7 > dl {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.gallery.gallery-columns-7 > dl:last-child:not(:first-child) {
  float: right;
}
.gallery.gallery-columns-8 > dl {
  width: 12.5%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .gallery.gallery-columns-8 > dl {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.gallery.gallery-columns-8 > dl:last-child:not(:first-child) {
  float: right;
}
.gallery dl {
  width: 100%;
  float: left;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}
.gallery dl:last-child:not(:first-child) {
  float: right;
}
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */