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

Stylesheet: Global Stylesheet

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

Stylesheet: Mixins & Constants Stylesheet

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

******************************************************************/
/*********************
TOOLS
*********************/
@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600,800&display=swap");
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
/*********************
COLORS
*********************/
/*
element {
     @include background-opacity(#333, 0.5);
}
*/
/*
.fade {
  @include opacity(.4);
}
*/
/*********************
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;
  }
}	
	
*/
/*********************
CSS3 GRADIENTS.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/* order radius */
/* list reset*/
/*********************
Centering
*********************/
/*
.parent {
  position: relative;
}
.child {
  @include centerer;
} 
*/
/*********************
Centering
*********************/
/*
	.buttonouter{
		@include button($blau, $blau, $blau, $weiss)	
	}
	
*/
/*--------------------------------------------------------------*/
/* All SASS Variables */
/*--------------------------------------------------------------*/
/*** Colors ***/
/*** Fonts ***/
/*** Margin-Padding ***/
/*--------------------------------------------------------------*/
/* Layout */
/*--------------------------------------------------------------*/
body {
  background: #fff;
  color: #444;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1rem;
}
@media only screen and (max-width: 30em) {
  body {
    font-size: 0.8125rem;
  }
}
.grid-container {
  max-width: 73.125rem;
}
/*********************
HEADER
*********************/
.header {
  background: #fff;
  position: fixed;
  width: 100%;
  z-index: 10;
}
.header .top-bar {
  background: #fff;
  padding: 0;
}
.header .top-bar .top-bar-right {
  margin-right: 10px;
}
.header .top-bar .logo {
  margin-left: 5%;
}
.header .top-bar .logo img {
  max-width: 270px;
}
@media only screen and (max-width: 1023px) {
  .header .top-bar .logo img {
    max-width: 220px;
    padding-top: 10px;
  }
}
@media only screen and (max-width: 30em) {
  .header .top-bar .logo img {
    max-width: 200px;
    padding-top: 10px;
  }
}
.header .top-bar ul {
  background: transparent;
}
.headerImg {
  position: relative;
  top: 4.75rem;
  width: 100%;
  background-repeat: no-repeat;
  height: 25rem;
  background-size: cover;
  background-position: center center;
  margin-bottom: 4.6875rem;
}
@media only screen and (max-width: 30em) {
  .headerImg {
    height: 7.5rem;
  }
}
.home .headerImg {
  height: 37.5rem;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 30em) {
  .home .headerImg {
    height: 13.75rem;
  }
}
.home .headerImg .headerImgClaim {
  width: 100%;
}
.home .headerImg .headerImgClaim .headerImgClaimTxt {
  font-size: 5rem;
  font-weight: 800;
  line-height: 5.625rem;
  text-transform: uppercase;
  color: #444;
  border-left: solid 15px #d52f40;
  padding: 0.9375rem 1.875rem;
  margin-left: 0.9375rem;
}
@media only screen and (max-width: 30em) {
  .home .headerImg .headerImgClaim .headerImgClaimTxt {
    line-height: 2.5rem;
    font-size: 1.875rem;
    padding: 0.9375rem 0.9375rem;
  }
}
/*********************
NAVIGATION
*********************/
.dropdown.menu, .menu {
  align-items: center;
  justify-content: center;
}
.dropdown.menu li a, .menu li a {
  padding: 0.9375rem 1.25rem 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #444;
  text-decoration: none;
}
.dropdown.menu li a:hover, .menu li a:hover {
  text-decoration: none;
  color: #d52f40;
}
.dropdown.menu li.active a, .menu li.active a {
  background: transparent;
  color: #3695d8;
}
.dropdown.menu li.spende a, .menu li.spende a {
  border: 2px solid #d52f40;
  color: #d52f40;
}
.dropdown.menu li.spende a:hover, .menu li.spende a:hover {
  background: #d52f40;
  color: #fff;
}
@media only screen and (max-width: 30em) {
  .dropdown.menu li.spende a, .menu li.spende a {
    border: 0;
    color: #d52f40;
  }
}
.dropdown.menu li.wpml-ls-menu-item a, .menu li.wpml-ls-menu-item a {
  padding: 0.9375rem 0rem;
}
.dropdown.menu li.wpml-ls-menu-item a span, .menu li.wpml-ls-menu-item a span {
  padding: 0 0.625rem;
}
@media only screen and (max-width: 30em) {
  .dropdown.menu li.wpml-ls-menu-item a span, .menu li.wpml-ls-menu-item a span {
    padding: 0 1.25rem;
  }
}
.dropdown.menu li.wpml-ls-menu-item.wpml-ls-item-fr a span, .menu li.wpml-ls-menu-item.wpml-ls-item-fr a span {
  border-left: 1px solid #000;
}
@media only screen and (max-width: 30em) {
  .dropdown.menu li.wpml-ls-menu-item.wpml-ls-item-fr a span, .menu li.wpml-ls-menu-item.wpml-ls-item-fr a span {
    border: 0;
  }
}
.dropdown.menu li .submenu, .menu li .submenu {
  left: 0;
  right: auto !important;
  background: #222;
  border: 0;
  width: 15rem;
  padding: 0.9375rem 0;
}
@media only screen and (max-width: 30em) {
  .dropdown.menu li .submenu, .menu li .submenu {
    width: 100%;
  }
}
.dropdown.menu li .submenu li, .menu li .submenu li {
  padding: 0 0.75rem;
}
.dropdown.menu li .submenu li a, .menu li .submenu li a {
  color: #fff;
  line-height: 1.25rem;
  padding: 0.3125rem 0.75rem;
}
.dropdown.menu li .submenu li a:hover, .menu li .submenu li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #aaa;
}
.dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after, .accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a::after {
  border: 0;
  content: url(../images/arrow_down.svg);
  height: 10px;
  width: 10px;
  right: 8px;
  margin-top: -7px;
}
.dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a:hover::after {
  content: url(../images/arrow_down_h.svg);
}
.menu-item-search .search-field {
  background-color: transparent;
  background-image: url(../images/lupe.svg);
  background-position: 5px center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 9.125rem;
  cursor: pointer;
  height: 37px;
  margin: 3px 0;
  padding: 0 0 0 34px;
  position: relative;
  top: 15px;
  -webkit-transition: width 400ms ease, background 400ms ease;
  transition: width 400ms ease, background 400ms ease;
  width: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
@media only screen and (max-width: 30em) {
  .menu-item-search .search-field {
    margin-left: 10px;
  }
}
.menu-item-search .search-field:focus {
  background-color: #fff;
  border: 1px solid #444;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  cursor: text;
  outline: 0;
  width: 150px;
}
.search-form .search-submit {
  display: none;
}
.mobileTrigger {
  position: absolute;
  right: 20px;
  top: 20px;
}
.mobileTrigger .menu-icon:after {
  background: #444;
  -webkit-box-shadow: 0 7px 0 #444, 0 14px 0 #444;
  -moz-box-shadow: 0 7px 0 #444, 0 14px 0 #444;
  box-shadow: 0 7px 0 #444, 0 14px 0 #444;
}
#offcanvas-nav li {
  width: 100%;
}
#offcanvas-nav li ul {
  background: #000;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#offcanvas-nav li ul li a {
  padding: 0.3125rem 0.625rem 0.3125rem 1.5625rem;
  color: #fff;
  text-transform: none;
}
#offcanvas-nav li.wpml-ls-item a {
  padding: 0.3125rem 0.625rem 0.3125rem 1.5625rem;
}
#offcanvas-nav li.wpml-ls-item a span {
  padding: 0;
}
/*********************
TYPOGRAFIE
font-awesome: https://fontawesome.com/how-to-use/web-fonts-with-css#less-and-sass
*********************/
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
}
h1 {
  font-size: 3.125rem;
  color: #000;
  font-weight: 600;
  font-size: 3.75rem;
  line-height: 7.25rem;
  text-transform: uppercase;
  padding-bottom: 1.25rem;
  margin: 0;
  letter-spacing: 0;
}
@media only screen and (max-width: 40em) {
  h1 {
    line-height: 50px;
    font-size: 40px;
  }
}
@media only screen and (max-width: 30em) {
  h1 {
    line-height: 37px;
    font-size: 27px;
  }
}
h2 {
  color: #000;
  text-transform: uppercase;
  font-size: 2.625rem;
  line-height: 3.4375rem;
  padding-bottom: 0.625rem;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
}
body.home h2 {
  font-size: 2.625rem;
  line-height: 5.625rem;
}
@media only screen and (max-width: 30em) {
  body.home h2 {
    line-height: 30px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 30em) {
  h2 {
    line-height: 30px;
    font-size: 20px;
  }
}
h3 {
  color: #000;
  text-transform: uppercase;
  font-size: 1.625rem;
  line-height: 2.875rem;
  padding-bottom: 0.4375rem;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 30em) {
  h3 {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
  }
}
h4 {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  text-transform: uppercase;
  margin: 0.9375rem 0;
}
@media only screen and (max-width: 30em) {
  h4 {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
h4.weiss {
  color: #fff;
}
p {
  margin-bottom: 1.5625rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
a, a:active, a:hover, a:visited {
  color: #bfa97d;
  text-decoration: none;
}
a:active, a:hover {
  color: #bfa97d;
  text-decoration: underline;
}
a.themeButtonLink {
  background: #3695d8;
  color: #fff;
  padding: 0.625rem 1.875rem;
  border: 2px solid #3695d8;
  cursor: pointer;
  display: inline-block;
}
a.themeButtonLink:hover {
  background: transparent;
  color: #3695d8;
  text-decoration: none;
}
.weiterlink {
  margin: 3.75rem;
  text-align: center;
}
.weiterlink a {
  background: transparent;
  border: solid 2px #3695d8;
  color: #3695d8;
  line-height: 1.25rem;
  font-size: 14px;
  padding: 0.9375rem 1.5625rem;
  transition: all 0.3s ease;
}
.weiterlink a:hover {
  background: #3695d8;
  color: #fff;
  text-decoration: none;
}
@media only screen and (max-width: 30em) {
  .weiterlink a {
    padding: 0.625rem 0.9375rem;
  }
}
@media only screen and (max-width: 30em) {
  .weiterlink {
    margin: 30px;;
  }
}
.content ul li {
  margin-bottom: 5px;
}
/*********************
SIDEBARS & ASIDES
*********************/
.sidebar li {
  list-style: none;
}
.widget ul {
  margin: 0;
}
/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
}
.footer .balkenRot {
  background: #d52f40;
  padding: 2.5rem 0;
}
.footer .balkenRot h3 {
  text-transform: uppercase;
  color: #fff;
}
@media only screen and (max-width: 30em) {
  .footer .balkenRot h3 {
    font-size: 16px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 30em) {
  .footer .balkenRot .cell.text-right {
    float: none !important;
    text-align: left;
    margin-top: 30px;
  }
}
.footer .balkenGrau {
  background: #444;
  color: #fff;
  padding: 1.875rem 0;
}
.footer .balkenGrau .footerlinks a {
  color: #fff;
  padding: 0 0.625rem;
}
.footer .balkenGrau .footerlinks a:hover {
  color: #3695d8;
  text-decoration: none;
}
.footer .balkenGrau .mcfooter {
  padding: 1.875rem 0;
}
.footer .balkenGrau .social a {
  color: #fff;
}
.footer .balkenGrau .social a:hover {
  color: #3695d8;
  text-decoration: none;
}
.footer .balkenGrau .social a i {
  font-size: 1.5rem;
}
.mg-werden {
  text-align: right;
}
@media only screen and (max-width: 40em) {
  .mg-werden {
    text-align: left;
    margin-top: 30px;
  }
}
.mg-werden .btn.mitglied a {
  background: transparent;
  border: solid 2px #fff;
  color: #fff;
  line-height: 1.25rem;
  font-size: 20px;
  padding: 0.9375rem 1.5625rem;
  transition: all 0.3s ease;
}
.mg-werden .btn.mitglied a:hover {
  background: #fff;
  color: #444;
  text-decoration: none;
}
@media only screen and (max-width: 30em) {
  .mg-werden .btn.mitglied a {
    padding: 0.625rem 0.9375rem;
  }
}
@media only screen and (max-width: 1023px) {
  .mg-werden .btn.mitglied {
    display: block;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 40em) {
  .mg-werden .btn.mitglied {
    display: inline;
    padding-bottom: 0px;
  }
}
@media only screen and (max-width: 30em) {
  .mg-werden .btn.mitglied {
    text-align: left;
    display: inline;
  }
  .mg-werden .btn.mitglied a {
    font-size: 16px;
    padding: 0.625rem 0.625rem !important;
  }
}
.mg-werden .btn.spenden a {
  background: #fff;
  border: solid 2px #fff;
  color: #444;
  line-height: 1.25rem;
  font-size: 20px;
  padding: 0.9375rem 1.5625rem;
  transition: all 0.3s ease;
}
.mg-werden .btn.spenden a:hover {
  background: transparent;
  color: #fff;
  text-decoration: none;
}
@media only screen and (max-width: 30em) {
  .mg-werden .btn.spenden a {
    padding: 0.625rem 0.9375rem;
  }
}
@media only screen and (max-width: 30em) {
  .mg-werden .btn.spenden {
    text-align: left;
  }
  .mg-werden .btn.spenden a {
    font-size: 16px;
    padding: 0.625rem 0.625rem !important;
  }
}
.to-top {
  background-color: rgba(191, 169, 125, 0.75);
  display: none;
  z-index: 999;
  position: fixed;
  right: 20px;
  bottom: 100px;
  width: 35px;
  height: 35px;
  text-align: center;
  vertical-align: middle;
  padding: 6px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/*********************
POSTS & CONTENT STYLES
*********************/
.content {
  padding: 6.25rem 0;
}
@media only screen and (max-width: 30em) {
  .content {
    padding: 1.25rem 0;
  }
}
.content.bgGrau {
  background: #eee;
}
.content.bgWeiss {
  background: #fff;
}
body.page-id-20 .content.top, body.page-id-1021 .content.top {
  background: #eee;
  padding-bottom: 0;
}
.content.team {
  padding: 1.25rem 0;
}
body.page-id-14 .content.rowid-3, body.page-id-1041 .content.rowid-3 {
  padding: 6.25rem 0 0 0;
}
@media only screen and (max-width: 30em) {
  body.page-id-14 .content.rowid-3, body.page-id-1041 .content.rowid-3 {
    padding: 1.25rem 0 0 0;
  }
}
body.page-id-46 .content.rowid-2, body.page-id-1019 .content.rowid-2, body.page-id-22 .content.rowid-2, body.page-id-1026 .content.rowid-2 {
  padding: 1.25rem 0;
}
.aktuellFront .cell, .postTeaser .cell {
  margin-bottom: 1.25rem;
}
@media only screen and (max-width: 1023px) {
  .aktuellFront .cell, .postTeaser .cell {
    height: 550px;
  }
}
@media only screen and (max-width: 40em) {
  .aktuellFront .cell, .postTeaser .cell {
    height: auto !important;
  }
}
.aktuellFront .cell.bgGrau, .postTeaser .cell.bgGrau {
  background: #eee;
}
.aktuellFront .cell.bgWeiss, .postTeaser .cell.bgWeiss {
  background: #fff;
}
.aktuellFront .cell.borderblu, .postTeaser .cell.borderblu {
  border: 2px solid #3695d8;
}
.aktuellFront .cell.borderblu .byline a, .postTeaser .cell.borderblu .byline a {
  color: #d52f40 !important;
}
.aktuellFront .cell.transInt .byline, .postTeaser .cell.transInt .byline {
  height: 2.5rem;
}
@media only screen and (max-width: 30em) {
  .aktuellFront .cell.transInt .byline, .postTeaser .cell.transInt .byline {
    height: auto;
  }
}
.aktuellFront .cell.transInt .byline a, .postTeaser .cell.transInt .byline a {
  color: #d52f40 !important;
}
.aktuellFront .cell.transInt .byline .date, .postTeaser .cell.transInt .byline .date {
  display: none;
}
.aktuellFront .cell .postImg, .postTeaser .cell .postImg {
  height: 12.5rem;
  overflow: hidden;
}
@media only screen and (max-width: 30em) {
  .aktuellFront .cell .postImg, .postTeaser .cell .postImg {
    height: 7.5rem;
  }
}
.aktuellFront .cell .postImg a, .postTeaser .cell .postImg a {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  transition: all 0.5s ease;
  width: 100%;
  height: 100%;
}
.aktuellFront .cell .postImg a:hover, .postTeaser .cell .postImg a:hover {
  transform: scale(1.2);
}
.aktuellFront .cell .postContent, .postTeaser .cell .postContent {
  padding: 1.875rem 0.9375rem 0.9375rem 0.9375rem;
  font-size: 0.8125rem;
  line-height: 1.25rem;
}
.aktuellFront .cell .postContent .byline, .postTeaser .cell .postContent .byline {
  font-weight: 600;
  height: 2.5rem;
}
@media only screen and (max-width: 30em) {
  .aktuellFront .cell .postContent .byline, .postTeaser .cell .postContent .byline {
    height: auto;
  }
}
.aktuellFront .cell .postContent .byline a, .postTeaser .cell .postContent .byline a {
  color: #666;
}
.aktuellFront .cell .postContent .byline .date, .postTeaser .cell .postContent .byline .date {
  font-weight: 400;
}
.aktuellFront .cell .postContent h4, .postTeaser .cell .postContent h4 {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.8;
  height: 4.375rem;
  text-transform: uppercase;
  margin: 0.9375rem 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}
@media (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .aktuellFront .cell .postContent h4, .postTeaser .cell .postContent h4 {
    overflow-wrap: normal;
    word-wrap: normal;
    -ms-word-break: normal;
    word-break: normal;
    -ms-hyphens: none;
    -moz-hyphens: none;
    -webkit-hyphens: none;
    hyphens: none;
  }
}
@media only screen and (max-width: 30em) {
  .aktuellFront .cell .postContent h4, .postTeaser .cell .postContent h4 {
    height: auto;
  }
}
.aktuellFront .cell .postContent h4 a, .postTeaser .cell .postContent h4 a {
  color: #000;
}
.aktuellFront .cell .postContent h4 a:hover, .postTeaser .cell .postContent h4 a:hover {
  text-decoration: none;
}
.aktuellFront .cell .postContent .postExcerpt, .postTeaser .cell .postContent .postExcerpt {
  max-height: 115px;
}
.aktuellFront .cell .postContent .postExcerpt p, .postTeaser .cell .postContent .postExcerpt p {
  margin-bottom: 0;
}
.aktuellFront .cell:hover .postImg a, .postTeaser .cell:hover .postImg a {
  transform: scale(1.2);
}
.aktuellFront.boxen h4, .postTeaser.boxen h4 {
  font-size: 1.125rem !important;
  font-weight: 400 !important;
}
.moreBtn {
  text-align: center;
  margin-top: 3.75rem;
}
.moreBtn a {
  background: transparent;
  border: solid 2px #3695d8;
  color: #3695d8;
  line-height: 1.25rem;
  font-size: 14px;
  padding: 0.9375rem 1.5625rem;
  transition: all 0.3s ease;
}
.moreBtn a:hover {
  background: #3695d8;
  color: #fff;
  text-decoration: none;
}
@media only screen and (max-width: 30em) {
  .moreBtn a {
    padding: 0.625rem 0.9375rem;
  }
}
.bildblockWrap .cell {
  height: 21.25rem;
  background: #fff;
}
.bildblockWrap .cell .img {
  height: 12.5rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bildblockWrap .cell .img a {
  display: block;
  width: 100%;
  height: 100%;
}
.bildblockWrap .cell .inhalt {
  padding: 0.9375rem;
}
.teambox .cell {
  margin-bottom: 1.25rem;
}
.teambox .cell .postImg {
  height: 18.75rem;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 230px;
}
@media only screen and (max-width: 30em) {
  .teambox .cell .postImg {
    height: 12.5rem;
    max-width: 9.375rem;
  }
}
.teambox .cell .postContent {
  font-size: 0.8125rem;
  color: #666;
  line-height: 1.8;
}
.teambox .cell .postContent h4 {
  font-size: 1rem;
  color: #000;
  margin-bottom: 0.625rem;
}
.teambox .cell .postContent .titel {
  text-transform: uppercase;
}
.single header h3 {
  margin-top: 1.875rem;
}
.single .themeButtonLink {
  margin-bottom: 1.875rem;
}
.single #weiteres {
  padding-top: 1.25rem;
  display: inline-block;
}
.single .postNav {
  border: 1px solid #eee;
  padding: 1.25rem 0;
}
.single .postNav a {
  color: #444;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
}
.single .postNav a:hover {
  text-decoration: none;
  color: #bfa97d;
}
.single .postNav a span {
  text-transform: none;
  font-weight: 400;
}
.widget h4 {
  font-size: 0.875rem;
  font-weight: 500;
}
.widget h4:after {
  content: "";
  margin-top: 10px;
  border-top: 1px solid rgba(128, 128, 128, 0.2);
  display: block;
}
.widget ul li {
  font-size: 0.8125rem;
  padding: 0.3125rem 0;
}
.widget ul li a {
  display: inline-block;
  padding-left: 20px;
  position: relative;
  color: #000;
}
.widget ul li a:hover {
  color: #bfa97d;
  text-decoration: none;
}
.widget ul li a:before {
  content: ">";
  position: absolute;
  font-size: 15px;
  height: 15px;
  top: 0;
  left: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  speak: none;
  line-height: 15px;
  -webkit-font-smoothing: antialiased;
}
/*********************
 FORM STYLES
*********************/
.nlblock {
  background: #eee;
  padding-top: 1.25rem;
}
.buttonSolid {
  width: 100%;
  background: #3695d8;
  color: #fff;
  padding: 0.625rem;
  border: 2px solid #3695d8;
  cursor: pointer;
}
.buttonSolid:hover {
  background: transparent;
  color: #3695d8;
}
.searchandfilter input[type=submit] {
  min-width: 150px;
  height: 45px;
  border: 2px solid #3695d8;
  color: #fff;
  position: relative;
  background-color: #3695d8;
}
.searchandfilter input {
  display: inline-block !important;
}
/*********************
PLUGIN STYLES
*********************/
.mapWrap {
  position: relative;
  padding-bottom: 56%;
  height: 0;
  overflow: hidden;
}
.mapWrap iframe, .mapWrap object, .mapWrap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*# sourceMappingURL=style.css.map */
