@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Kaushan+Script|Cardo|Marcellus|PT+Serif|Vollkorn:400,600,700,900&display=swap&subset=latin-ext");
#footer p, #header #navbar .panel-activation, #header #logo h3 {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.button-secondary, .button {
  display: inline-block;
  padding: 7px 20px;
}
.button-small.button-secondary, .button-small.button {
  padding: 3px 10px;
  font-size: 1.15rem;
}

.os-animation {
  opacity: 0;
}

.os-animation.animated {
  opacity: 1;
}

.staggered-animation {
  opacity: 0;
}

.staggered-animation.animated {
  opacity: 1;
}

/*LOADER EFFECT*/
/*Paste this css to your style sheet file or under head tag*/
/* This only works with JavaScript,
if it's not present, don't show loader */
.no-js #loader {
  display: none;
}

.js #loader {
  display: block;
  position: absolute;
  left: 100px;
  top: 0;
}

.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #ffffff;
}

.box {
  position: absolute;
  width: 78px;
  height: 78px;
  left: 50%;
  top: 50%;
  margin-left: -39px;
  margin-top: -39px;
}

.loading:before {
  content: "";
  position: absolute;
  width: 55px;
  height: 55px;
  top: 50%;
  margin-top: -18px;
  left: 50%;
  margin-left: -18px;
  border-width: 2px 1px;
  border-style: solid;
  border-color: #010101 rgba(30, 30, 30, 0.3);
  border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  animation: spin 3.45s infinite;
  -o-animation: spin 3.45s infinite;
  -ms-animation: spin 3.45s infinite;
  -webkit-animation: spin 3.45s infinite;
  -moz-animation: spin 3.45s infinite;
}

.loading:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 50%;
  margin-top: -3px;
  left: 50%;
  margin-left: -3px;
  background-color: white;
  border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
  -o-animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
  -ms-animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
  -webkit-animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
  -moz-animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(1080deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  50% {
    -o-transform: rotate(360deg);
  }
  100% {
    -o-transform: rotate(1080deg);
  }
}
@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }
  50% {
    -ms-transform: rotate(360deg);
  }
  100% {
    -ms-transform: rotate(1080deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(1080deg);
  }
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  50% {
    -moz-transform: rotate(360deg);
  }
  100% {
    -moz-transform: rotate(1080deg);
  }
}
@keyframes pulse {
  0% {
    background-color: rgba(232, 232, 232, 0.2);
  }
  13% {
    background-color: rgba(240, 240, 240, 0.2);
  }
  15% {
    background-color: rgba(255, 255, 255, 0.9);
  }
  28% {
    background-color: rgba(222, 222, 222, 0.9);
  }
  30% {
    background-color: rgba(255, 255, 255, 0.2);
  }
  43% {
    background-color: rgba(240, 240, 240, 0.2);
  }
  45% {
    background-color: rgba(245, 245, 245, 0.9);
  }
  70% {
    background-color: rgba(250, 250, 250, 0.9);
  }
  74% {
    background-color: rgba(255, 255, 255, 0.2);
  }
  100% {
    background-color: rgba(242, 242, 242, 0.9);
  }
}
@-o-keyframes pulse {
  0% {
    background-color: rgba(232, 232, 232, 0.2);
  }
  13% {
    background-color: rgba(240, 240, 240, 0.2);
  }
  15% {
    background-color: rgba(255, 255, 255, 0.9);
  }
  28% {
    background-color: rgba(222, 222, 222, 0.9);
  }
  30% {
    background-color: rgba(255, 255, 255, 0.2);
  }
  43% {
    background-color: rgba(240, 240, 240, 0.2);
  }
  45% {
    background-color: rgba(245, 245, 245, 0.9);
  }
  70% {
    background-color: rgba(250, 250, 250, 0.9);
  }
  74% {
    background-color: rgba(255, 255, 255, 0.2);
  }
  100% {
    background-color: rgba(242, 242, 242, 0.9);
  }
}
@-ms-keyframes pulse {
  0% {
    background-color: rgba(232, 232, 232, 0.2);
  }
  13% {
    background-color: rgba(240, 240, 240, 0.2);
  }
  15% {
    background-color: rgba(255, 255, 255, 0.9);
  }
  28% {
    background-color: rgba(222, 222, 222, 0.9);
  }
  30% {
    background-color: rgba(255, 255, 255, 0.2);
  }
  43% {
    background-color: rgba(240, 240, 240, 0.2);
  }
  45% {
    background-color: rgba(245, 245, 245, 0.9);
  }
  70% {
    background-color: rgba(250, 250, 250, 0.9);
  }
  74% {
    background-color: rgba(255, 255, 255, 0.2);
  }
  100% {
    background-color: rgba(242, 242, 242, 0.9);
  }
}
@-webkit-keyframes pulse {
  0% {
    background-color: rgba(232, 232, 232, 0.2);
  }
  13% {
    background-color: rgba(240, 240, 240, 0.2);
  }
  15% {
    background-color: rgba(255, 255, 255, 0.9);
  }
  28% {
    background-color: rgba(222, 222, 222, 0.9);
  }
  30% {
    background-color: rgba(255, 255, 255, 0.2);
  }
  43% {
    background-color: rgba(240, 240, 240, 0.2);
  }
  45% {
    background-color: rgba(245, 245, 245, 0.9);
  }
  70% {
    background-color: rgba(250, 250, 250, 0.9);
  }
  74% {
    background-color: rgba(255, 255, 255, 0.2);
  }
  100% {
    background-color: rgba(242, 242, 242, 0.9);
  }
}
@-moz-keyframes pulse {
  0% {
    background-color: rgba(232, 232, 232, 0.2);
  }
  13% {
    background-color: rgba(240, 240, 240, 0.2);
  }
  15% {
    background-color: rgba(255, 255, 255, 0.9);
  }
  28% {
    background-color: rgba(222, 222, 222, 0.9);
  }
  30% {
    background-color: rgba(255, 255, 255, 0.2);
  }
  43% {
    background-color: rgba(240, 240, 240, 0.2);
  }
  45% {
    background-color: rgba(245, 245, 245, 0.9);
  }
  70% {
    background-color: rgba(250, 250, 250, 0.9);
  }
  74% {
    background-color: rgba(255, 255, 255, 0.2);
  }
  100% {
    background-color: rgba(242, 242, 242, 0.9);
  }
}
@keyframes borderPulse {
  0% {
    box-shadow: 0 0 0 0 #fff5ff, 0 0 0 1px rgba(240, 240, 240, 0.8);
  }
  40% {
    box-shadow: 0 0 0 1px #faedfa, 0 0 0 2px rgba(221, 187, 0, 0.8);
  }
  80% {
    box-shadow: 0 0 0 3px #FFF, 0 0 1px 3px rgba(221, 187, 0, 0.8);
  }
}
@-o-keyframes borderPulse {
  0% {
    box-shadow: 0 0 0 0 #fff5ff, 0 0 0 1px rgba(240, 240, 240, 0.8);
  }
  40% {
    box-shadow: 0 0 0 1px #faedfa, 0 0 0 2px rgba(221, 187, 0, 0.8);
  }
  80% {
    box-shadow: 0 0 0 3px #FFF, 0 0 1px 3px rgba(221, 187, 0, 0.8);
  }
}
@-ms-keyframes borderPulse {
  0% {
    box-shadow: 0 0 0 0 #fff5ff, 0 0 0 1px rgba(240, 240, 240, 0.8);
  }
  40% {
    box-shadow: 0 0 0 1px #faedfa, 0 0 0 2px rgba(221, 187, 0, 0.8);
  }
  80% {
    box-shadow: 0 0 0 3px #FFF, 0 0 1px 3px rgba(221, 187, 0, 0.8);
  }
}
@-webkit-keyframes borderPulse {
  0% {
    box-shadow: 0 0 0 0 #fff5ff, 0 0 0 1px rgba(240, 240, 240, 0.8);
  }
  40% {
    box-shadow: 0 0 0 1px #faedfa, 0 0 0 2px rgba(221, 187, 0, 0.8);
  }
  80% {
    box-shadow: 0 0 0 3px #FFF, 0 0 1px 3px rgba(221, 187, 0, 0.8);
  }
}
@-moz-keyframes borderPulse {
  0% {
    box-shadow: 0 0 0 0 #fff5ff, 0 0 0 1px rgba(240, 240, 240, 0.8);
  }
  40% {
    box-shadow: 0 0 0 1px #faedfa, 0 0 0 2px rgba(221, 187, 0, 0.8);
  }
  80% {
    box-shadow: 0 0 0 3px #FFF, 0 0 1px 3px rgba(221, 187, 0, 0.8);
  }
}
html, body {
  height: 100%;
}

body {
  background: #fff;
  color: #03738C;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #C96812;
}
a:hover {
  color: #6b380a;
}

b, strong, th, label {
  font-weight: 600;
}

#container {
  min-height: 100%;
  position: relative;
}

.fullwidth #body {
  padding-left: 0;
  padding-right: 0;
}
#body {
  background: #fff;
  padding-top: 6.5rem;
  padding-bottom: 13rem;
}

.left {
  float: left;
}

.right {
  float: right;
}

.default-animation, .modular .bottom .button, #header #navbar ul.navigation, #header #logo h3, #header, #body {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.padding-horiz, #footer, #header, .fullwidth #header, .fullwidth #breadcrumbs, .fullwidth .blog-header, .fullwidth .blog-content-item, .fullwidth .content-wrapper, .fullwidth ul.pagination, .fullwidth #body > .modular-row, #body {
  padding-left: 7rem;
  padding-right: 7rem;
}
@media only all and (max-width: 59.938em) {
  .padding-horiz, #footer, #header, .fullwidth #header, .fullwidth #breadcrumbs, .fullwidth .blog-header, .fullwidth .blog-content-item, .fullwidth .content-wrapper, .fullwidth ul.pagination, .fullwidth #body > .modular-row, #body {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media only all and (max-width: 47.938em) {
  .padding-horiz, #footer, #header, .fullwidth #header, .fullwidth #breadcrumbs, .fullwidth .blog-header, .fullwidth .blog-content-item, .fullwidth .content-wrapper, .fullwidth ul.pagination, .fullwidth #body > .modular-row, #body {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.padding-vert {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

#header {
  z-index: 10;
  width: 100%;
  height: 3.5rem;
  background-color: #03658c;
  box-shadow: 0 0.08rem 1rem rgba(0, 0, 0, 0.15);
}
#header.scrolled {
  height: 2.45rem;
  background-color: #03658c 0.4 !important;
  box-shadow: 0 0.05rem 1rem rgba(0, 0, 0, 0.15) !important;
  position: fixed;
  top: 0;
  font-size: smaller;
}
#header.scrolled #logo h3 {
  color: #03738C !important;
  font-size: 1.2rem !important;
}
#header.scrolled #logo a, #header.scrolled #navbar span {
  color: #03738C !important;
}
#header.scrolled #navbar a {
  color: rgba(242, 159, 87, 0.9) !important;
}
#header.scrolled #navbar a:hover {
  color: rgba(242, 159, 87, 0.9) !important;
}
#header.scrolled #navbar a:before, #header.scrolled #navbar a:after {
  background-color: #C96812 !important;
}
#header.scrolled .navigation {
  margin-top: 0.1rem !important;
  font-size: 1rem;
  padding: 0.2rem 0.8rem;
  line-height: 1.2rem;
}
#header.scrolled .navigation .ul {
  font-size: smaller;
}
#header > .grid, #header #logo, #header #navbar {
  height: 100%;
}
#header #logo {
  float: left;
}
#header #logo h3 {
  font-size: 1.7rem;
  line-height: 2rem;
  margin: 0;
  text-transform: uppercase;
}
#header #logo h3 a {
  color: #03738C;
}
#header #navbar {
  font-size: 1.15rem;
  /* Child Indicator */
}
#header #navbar .has-children > a > span {
  display: inline-block;
  padding-right: 8px;
}
#header #navbar .has-children > a > span:after {
  font-family: FontAwesome;
  content: "";
  position: absolute;
  display: inline-block;
  right: 8px;
  top: 4px;
}
#header #navbar .has-children > a:after, #header #navbar .has-children > a:before {
  display: none;
}
#header #navbar .has-children .has-children > a > span:after {
  content: "";
}
#header #navbar .navigation > .has-children:hover > a {
  background: rgba(3, 101, 140, 0.8);
  border: 1px solid rgba(3, 87, 120, 0.8);
  border-bottom-color: rgba(3, 101, 140, 0.8);
  margin: -1px -1px 0 -1px;
  z-index: 1000;
  position: relative;
  padding-bottom: 1px;
}
#header #navbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#header #navbar ul.navigation {
  display: inline-block;
  float: right;
  margin-top: 0.4rem;
}
#header #navbar ul.navigation li {
  float: left;
  position: relative;
  /*Active dropdown nav item */
  /* Dropdown CSS */
  /* Active on Hover */
}
#header #navbar ul.navigation li a {
  font-family: "Marcellus", "Times", "Times New Roman", serif;
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  -webkit-backface-visibility: hidden;
  color: #F2A25C;
}
#header #navbar ul.navigation li a:before, #header #navbar ul.navigation li a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #C96812;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#header #navbar ul.navigation li a:hover {
  background-color: #024f6e;
  border-radius: 4px;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  -ms-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
#header #navbar ul.navigation li a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(0.75);
  -moz-transform: scaleX(0.75);
  -ms-transform: scaleX(0.75);
  -o-transform: scaleX(0.75);
  transform: scaleX(0.75);
}
#header #navbar ul.navigation li a.active:after {
  top: 0;
  visibility: visible;
  -webkit-transform: scaleX(0.75);
  -moz-transform: scaleX(0.75);
  -ms-transform: scaleX(0.75);
  -o-transform: scaleX(0.75);
  transform: scaleX(0.75);
}
#header #navbar ul.navigation li.active a:after {
  top: 0;
  visibility: visible;
  -webkit-transform: scaleX(0.75);
  -moz-transform: scaleX(0.75);
  -ms-transform: scaleX(0.75);
  -o-transform: scaleX(0.75);
  transform: scaleX(0.75);
}
#header #navbar ul.navigation li ul {
  position: absolute;
  background-color: rgba(3, 101, 140, 0.8);
  border: 1px solid rgba(2, 79, 110, 0.8);
  border-radius: 4px;
  border-top: 0;
  min-width: 12rem;
  text-align: left;
  z-index: 999;
  left: -1px;
  display: none;
  border-radius: 4px;
  font-size: 1rem;
}
#header #navbar ul.navigation li ul li {
  display: block;
  float: none;
  font-size: 1rem;
  /* Active Dropdown nav item */
}
#header #navbar ul.navigation li ul li.active > a {
  background-color: rgba(2, 79, 110, 0.8);
  color: #C96812;
}
#header #navbar ul.navigation li ul li:hover > a {
  background-color: rgba(2, 65, 90, 0.8);
  color: #fff;
}
#header #navbar ul.navigation li ul li a {
  display: block;
  margin: 0 -1px;
}
#header #navbar ul.navigation li ul li a:after, #header #navbar ul.navigation li ul li a:before {
  display: none;
}
#header #navbar ul.navigation li ul ul {
  left: 100%;
  top: 0px;
}
#header #navbar ul.navigation li:hover > ul {
  display: block;
}
@media only all and (max-width: 59.938em) {
  #header #navbar ul.navigation {
    display: none;
  }
}
#header #navbar .panel-activation {
  padding: 1rem;
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  float: right;
}
@media only all and (max-width: 59.938em) {
  #header #navbar .panel-activation {
    display: inline-block;
  }
}

.header-image.fullwidth #body {
  padding-left: 0;
  padding-right: 0;
}
.header-image.fullwidth #body > .listing-row {
  padding-left: 7rem;
  padding-right: 7rem;
}
.header-image .listing-row:last-child {
  margin-bottom: 2rem;
}
.header-image #body .flush-top {
  margin-top: -8rem;
  padding-top: 7.5rem;
}
.header-image #breadcrumbs {
  margin-top: 1rem;
}
.header-image #header {
  background-color: #03658c;
  box-shadow: none;
}
.header-image #header .navigation .has-children:hover a {
  color: #C96812;
}
.header-image #header #logo h3, .header-image #header #logo a {
  color: #FFFFFF;
}
.header-image #header a, .header-image #header .menu-btn {
  color: #FFFFFF;
}
.header-image #header a:before, .header-image #header a:after {
  background-color: rgba(255, 255, 255, 0.7) !important;
}

.totop {
  padding-top: 2rem;
  bottom: 7rem;
  text-align: center;
  left: 0;
  right: 0;
}
.totop span {
  font-size: 2.8rem;
  line-height: 3.5rem;
  background: #03658c;
  width: 3.5rem;
  height: 3.1rem;
  border-radius: 3px;
  display: inline-block;
  text-align: top;
}

#footer {
  background: #03658c;
  height: 8rem;
  right: 0;
  bottom: 0;
  left: 0;
  color: #222;
  text-align: center;
}
#footer a:hover {
  color: #fff;
}
#footer .footer {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
@media only all and (min-width: 48em) {
  #footer .footer .footercol {
    width: 33%;
  }
}
@media only all and (max-width: 47.938em) {
  #footer .footer .footercol {
    width: 100%;
  }
}
#footer .footer .footercol .social_icons {
  overflow: hidden;
  padding: 0;
  list-style: none;
  white-space: nowrap;
  position: relative;
  margin: 28px 0 0;
  z-index: 10;
}
#footer .footer .footercol .social_icons li {
  float: left;
  cursor: pointer;
  width: 32px;
  height: 31px;
  overflow: hidden;
  margin-right: 14px;
}
#footer .footer .footercol .social_icons li a {
  width: 32px;
  height: 31px;
  overflow: hidden;
}
#footer .footer .footercol .social_icons li a img {
  position: relative;
  top: 0;
}
#footer .footer .footercol .social_icons li a :hover img {
  position: relative;
  top: -31px;
}
#footer p {
  margin: 0;
  font-size: 100%;
  line-height: 1.3;
}
#footer p .fa {
  color: #fff;
}

html, body, button, input, select, textarea, .pure-g, .pure-g [class*=pure-u] {
  font-family: "Cardo", "Times", "Times New Roman", serif;
  font-weight: 400;
}

h1, h2, h3, h4, .modular .bottom table th, h5, h6 {
  font-family: "Marcellus", "Times", "Times New Roman", serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  letter-spacing: 0px;
  color: #C22142;
}

h1 {
  font-size: 3.45rem;
}
@media only all and (max-width: 47.938em) {
  h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 2.5rem;
  }
}

@media only all and (min-width: 48em) and (max-width: 59.938em) {
  h2 {
    font-size: 2.35rem;
  }
}
@media only all and (max-width: 47.938em) {
  h2 {
    font-size: 2.25rem;
  }
}

@media only all and (min-width: 48em) and (max-width: 59.938em) {
  h3 {
    font-size: 1.95rem;
  }
}
@media only all and (max-width: 47.938em) {
  h3 {
    font-size: 1.85rem;
  }
}

@media only all and (min-width: 48em) and (max-width: 59.938em) {
  h4, .modular .bottom table th {
    font-size: 1.6rem;
  }
}
@media only all and (max-width: 47.938em) {
  h4, .modular .bottom table th {
    font-size: 1.5rem;
  }
}

h1 {
  text-align: center;
  letter-spacing: -3px;
}

h2 {
  letter-spacing: -2px;
}

h3 {
  letter-spacing: -1px;
}

h1 + h2 {
  margin: -2rem 0 2rem 0;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
  font-family: "Cardo", "Times", "Times New Roman", serif;
  font-weight: 400;
}
@media only all and (min-width: 48em) and (max-width: 59.938em) {
  h1 + h2 {
    font-size: 1.6rem;
  }
}
@media only all and (max-width: 47.938em) {
  h1 + h2 {
    font-size: 1.5rem;
  }
}

h2 + h3 {
  margin: 0.5rem 0 2rem 0;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
  font-family: "Cardo", "Times", "Times New Roman", serif;
  font-weight: 400;
}
@media only all and (min-width: 48em) and (max-width: 59.938em) {
  h2 + h3 {
    font-size: 1.6rem;
  }
}
@media only all and (max-width: 47.938em) {
  h2 + h3 {
    font-size: 1.5rem;
  }
}

@media only all and (min-width: 48em) {
  p {
    font-size: 1.25rem;
  }
}
@media only all and (max-width: 47.938em) {
  p {
    font-size: 1rem;
  }
}

blockquote {
  border-left: 10px solid #F0F2F4;
}
blockquote p {
  font-size: 1.1rem;
  color: #999;
}
blockquote cite {
  display: block;
  text-align: right;
  color: #666;
  font-size: 1.2rem;
}

blockquote > blockquote > blockquote {
  margin: 0;
}
blockquote > blockquote > blockquote p {
  padding: 15px;
  display: block;
  font-size: 1rem;
  margin-top: 0rem;
  margin-bottom: 0rem;
}
blockquote > blockquote > blockquote > p {
  margin-left: -71px;
  border-left: 10px solid #F0AD4E;
  background: #FCF8F2;
  color: #df8a13;
}
blockquote > blockquote > blockquote > p a {
  color: #b06d0f;
}
blockquote > blockquote > blockquote > p a:hover {
  color: #f2b866;
}
blockquote > blockquote > blockquote > blockquote > p {
  margin-left: -94px;
  border-left: 10px solid #D9534F;
  background: #FDF7F7;
  color: #b52b27;
}
blockquote > blockquote > blockquote > blockquote > p a {
  color: #8b211e;
}
blockquote > blockquote > blockquote > blockquote > p a:hover {
  color: #de6764;
}
blockquote > blockquote > blockquote > blockquote > blockquote > p {
  margin-left: -118px;
  border-left: 10px solid #5BC0DE;
  background: #F4F8FA;
  color: #28a1c5;
}
blockquote > blockquote > blockquote > blockquote > blockquote > p a {
  color: #1f7e9a;
}
blockquote > blockquote > blockquote > blockquote > blockquote > p a:hover {
  color: #70c8e2;
}
blockquote > blockquote > blockquote > blockquote > blockquote > blockquote > p {
  margin-left: -142px;
  border-left: 10px solid #5CB85C;
  background: #F1F9F1;
  color: #3d8b3d;
}
blockquote > blockquote > blockquote > blockquote > blockquote > blockquote > p a {
  color: #2d672d;
}
blockquote > blockquote > blockquote > blockquote > blockquote > blockquote > p a:hover {
  color: #6ec06e;
}

code,
kbd,
pre,
samp {
  font-family: monospace;
}

code {
  background: #f9f2f4;
  color: #9c1d3d;
}

pre {
  padding: 2rem;
  background: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 3px;
}
pre code {
  color: #237794;
  background: inherit;
}

hr {
  border-bottom: 4px solid #F0F2F4;
}

.page-title {
  margin-top: -25px;
  padding: 25px;
  float: left;
  clear: both;
  background: #C96812;
  color: #fff;
}

.label {
  vertical-align: middle;
  background: #C96812;
  border-radius: 100%;
  color: #fff;
  height: 1rem;
  min-width: 1rem;
  line-height: 1rem;
  display: inline-block;
  text-align: center;
  font-size: 0.95rem;
  font-family: "Marcellus", "Times", "Times New Roman", serif;
  margin-right: 0.75rem;
}

fieldset {
  border: 1px solid #ddd;
}

textarea, input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], input[type=color], input[type=date], input[type=datetime], input[type=datetime-local], input[type=month], input[type=time], input[type=week], select[multiple=multiple] {
  background-color: white;
  border: 1px solid #ddd;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
}
textarea:hover, input[type=email]:hover, input[type=number]:hover, input[type=password]:hover, input[type=search]:hover, input[type=tel]:hover, input[type=text]:hover, input[type=url]:hover, input[type=color]:hover, input[type=date]:hover, input[type=datetime]:hover, input[type=datetime-local]:hover, input[type=month]:hover, input[type=time]:hover, input[type=week]:hover, select[multiple=multiple]:hover {
  border-color: #c4c4c4;
}
textarea:focus, input[type=email]:focus, input[type=number]:focus, input[type=password]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=text]:focus, input[type=url]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=month]:focus, input[type=time]:focus, input[type=week]:focus, select[multiple=multiple]:focus {
  border-color: #C96812;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(178, 92, 16, 0.7);
}

.form-field .required {
  color: #F3443F;
  font-size: 3.25rem;
  line-height: 3.25rem;
  vertical-align: top;
  height: 1.5rem;
  display: inline-block;
}

form .buttons {
  text-align: center;
}
form input {
  font-weight: 400;
}

table {
  border: 1px solid #eaeaea;
  table-layout: auto;
}

th {
  background: #f7f7f7;
  padding: 0.5rem;
}

td {
  padding: 0.5rem;
  border: 1px solid #eaeaea;
}

.button {
  background: #fff;
  color: #C96812;
  border: 1px solid #C96812;
  border-radius: 3px;
}
.button:hover {
  background: #C96812;
  color: #fff;
}
.button:active {
  box-shadow: 0 1px 0 #914b0d;
}

.button-secondary {
  background: #fff;
  color: #C96812;
  border: 1px solid #C96812;
  border-radius: 3px;
}
.button-secondary:hover {
  background: #C96812;
  color: #fff;
}
.button-secondary:active {
  box-shadow: 0 1px 0 #914b0d;
}

.bullets {
  margin: 1.7rem 0;
  margin-left: -0.85rem;
  margin-right: -0.85rem;
  overflow: auto;
}

.bullet {
  float: left;
  padding: 0 0.85rem;
}

.two-column-bullet {
  width: 50%;
}
@media only all and (max-width: 47.938em) {
  .two-column-bullet {
    width: 100%;
  }
}

.three-column-bullet {
  width: 33.3333333333%;
}
@media only all and (max-width: 47.938em) {
  .three-column-bullet {
    width: 100%;
  }
}

.four-column-bullet {
  width: 25%;
}
@media only all and (max-width: 47.938em) {
  .four-column-bullet {
    width: 100%;
  }
}

.bullet-icon {
  float: left;
  background: #C96812;
  padding: 0.875rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  color: #fff;
  font-size: 1.75rem;
  text-align: center;
}

.bullet-icon-1 {
  background: #C96812;
}

.bullet-icon-2 {
  background: #c92b12;
}

.bullet-icon-3 {
  background: #4a12c9;
}

.bullet-content {
  margin-left: 4.55rem;
}

.sb-slidebar {
  background-color: #333 !important;
}

#panel {
  padding-top: 1rem;
  color: #ddd;
}
#panel .navigation {
  list-style: none;
  padding: 0;
}
#panel .navigation li {
  border-bottom: 1px solid #3d3d3d;
}
#panel .navigation li a {
  color: #ddd;
  display: block;
  padding: 0.5rem 1rem;
  font-weight: 600;
}
#panel .navigation li a:hover {
  color: white;
  background-color: #262626;
}
#panel .navigation li a:last-child {
  border-bottom: 0;
}
#panel .navigation li.active > a {
  background: #fff;
  color: #03738C;
}
#panel .navigation li.active > a:hover {
  color: #03738C;
}
#panel .navigation li:first-child {
  border-top: 1px solid #3d3d3d;
}
#panel .navigation li ul {
  list-style: none;
  padding: 0;
}
#panel .navigation li ul li {
  border: 0 !important;
}
#panel .navigation li ul li a {
  color: #c4c4c4;
  padding: 0.2rem 1rem 0.2rem 2rem;
  font-size: 0.9rem;
}
#panel .navigation li ul li li a {
  padding-left: 3rem;
}
#panel .navigation li ul li li a li a {
  padding-left: 4rem;
}
#panel .navigation li ul li.active > a {
  background: #ccc;
}

.blog-header {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.blog-header.blog-header-image {
  background-size: cover;
  background-position: center;
}
.blog-header.blog-header-image h1, .blog-header.blog-header-image h2 {
  color: #FFFFFF;
}
.blog-header h1 {
  font-size: 4rem;
  margin-top: 0;
}
@media only all and (min-width: 48em) and (max-width: 59.938em) {
  .blog-header h1 {
    font-size: 3rem;
  }
}
@media only all and (max-width: 47.938em) {
  .blog-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 2.5rem;
  }
}
.blog-header + .blog-content {
  padding-top: 3rem;
}

.list-item {
  border-bottom: 1px solid #EEEEEE;
  margin-bottom: 3rem;
}
.list-item:last-child {
  border-bottom: 0;
}
.list-item .list-blog-header {
  position: relative;
}
.list-item .list-blog-header h4, .list-item .list-blog-header .modular .bottom table th, .modular .bottom table .list-item .list-blog-header th {
  margin-bottom: 0.5rem;
}
.list-item .list-blog-header h4 a, .list-item .list-blog-header .modular .bottom table th a, .modular .bottom table .list-item .list-blog-header th a {
  color: #03738C;
}
.list-item .list-blog-header h4 a:hover, .list-item .list-blog-header .modular .bottom table th a:hover, .modular .bottom table .list-item .list-blog-header th a:hover {
  color: #C96812;
}
.list-item .list-blog-header img {
  display: block;
  margin-top: 1rem;
  border-radius: 3px;
}
.list-item .list-blog-date {
  float: right;
  text-align: center;
}
.list-item .list-blog-date span {
  display: block;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 110%;
}
.list-item .list-blog-date em {
  display: block;
  border-top: 1px solid #EEEEEE;
  font-style: normal;
  text-transform: uppercase;
}

.blog-content-item .list-blog-padding > p:nth-child(2) {
  font-size: 1.45rem;
}
.blog-content-item .block {
  padding-left: 10%;
}

.tags a {
  display: inline-block;
  font-size: 0.45rem;
  border: 1px solid #C96812;
  border-radius: 3px;
  padding: 0.1rem 0.4rem;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  margin-right: 0.4rem;
}

.archives, .related-pages {
  padding: 0;
  list-style: none;
}
.archives li, .related-pages li {
  border-bottom: 1px solid #EEEEEE;
  line-height: 2.25rem;
}
.archives li:last-child, .related-pages li:last-child {
  border-bottom: 0;
}

.related-pages li a {
  display: block;
}
.related-pages .score {
  display: block;
  float: right;
  color: #999;
  font-size: 85%;
}

.syndicate a {
  margin-bottom: 1rem;
}

div#breadcrumbs {
  padding-left: 0;
}
@media only all and (max-width: 47.938em) {
  div#breadcrumbs {
    display: none;
  }
}

#sidebar {
  padding-left: 3rem;
}
@media only all and (max-width: 47.938em) {
  #sidebar {
    padding-left: 0;
  }
}
#sidebar .sidebar-content {
  margin-bottom: 3rem;
}
#sidebar .sidebar-content h4, #sidebar .sidebar-content .modular .bottom table th, .modular .bottom table #sidebar .sidebar-content th {
  margin-bottom: 1rem;
}
#sidebar .sidebar-content p, #sidebar .sidebar-content ul {
  margin-top: 1rem;
}

ul.pagination {
  margin: 0 0 3rem;
  text-align: center;
}

.prev-next {
  margin-top: 5rem;
  text-align: center;
}

#error {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-bottom: 6rem;
}
#error h1 {
  font-size: 5.25rem;
}
#error p {
  margin: 1rem 0;
}

.simplesearch h1 {
  margin-bottom: 0;
}
.simplesearch .center {
  text-align: center;
}
.simplesearch input {
  display: inline-block;
  max-width: 30rem;
  font-size: 2rem;
}
.simplesearch .search-image {
  margin-top: 1rem;
}
.simplesearch .search-image img {
  border-radius: 4px;
}
@media only all and (max-width: 47.938em) {
  .simplesearch .search-image img {
    display: none;
  }
}
@media only all and (max-width: 47.938em) {
  .simplesearch .search-item {
    margin-left: 0;
  }
}
.simplesearch .search-wrapper .search-submit {
  height: 52px;
  padding: 0 10px;
}
.simplesearch .search-wrapper .search-submit img {
  width: 30px;
}
.simplesearch .search-details {
  float: right;
  margin-top: -2.5rem;
  font-weight: bold;
  font-size: 1rem;
  color: #05c5f0;
}
@media only all and (max-width: 47.938em) {
  .simplesearch .search-details {
    float: none;
    margin-top: -0.2rem;
    margin-bottom: 1rem;
  }
}
.simplesearch hr {
  border-bottom: 1px solid #eee;
}

#body {
  padding: 0px;
}

#conditions {
  padding-bottom: 3rem;
}

@media only all and (min-width: 48em) {
  .content {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
@media only all and (max-width: 47.938em) {
  .content {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}
@media only all and (min-width: 48em) {
  .content.fullwidth {
    padding-right: -0.1rem;
    padding-left: -0.1rem;
  }
}
@media only all and (max-width: 47.938em) {
  .content.fullwidth {
    padding-right: 0.1rem;
    padding-left: 0.1rem;
  }
}

@media only all and (min-width: 48em) {
  .modular-row {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
@media only all and (max-width: 47.938em) {
  .modular-row {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}
@media only all and (min-width: 48em) {
  .modular-row.fullwidth {
    padding-right: 0.1rem;
    padding-left: 0.1rem;
  }
}
@media only all and (max-width: 47.938em) {
  .modular-row.fullwidth {
    padding-right: 0.1rem;
    padding-left: 0.1rem;
  }
}

.modular .features {
  padding: 4rem 0;
  padding-bottom: 1rem;
}
.modular .features:after {
  content: "";
  display: table;
  clear: both;
}
.modular .features h2 {
  margin: 0;
  line-height: 100%;
  color: #C22142;
}
.modular .features hr {
  margin-top: 4rem;
}
.modular .features p {
  margin: 1rem 0;
}
@media only all and (max-width: 47.938em) {
  .modular .features p {
    font-size: 1.25rem;
  }
}
.modular .features p img.wrapleft, .modular .features p img {
  float: left;
}
.modular .features p img.wrapright {
  float: right;
}
.modular .features .content:after {
  content: "";
  clear: both;
  display: inline-block;
}
.modular .features .button {
  background-color: #C96812;
  color: #FFFFFF;
  font-family: "Marcellus", "Times", "Times New Roman", serif;
  border-radius: 3px;
  box-shadow: none;
  font-size: 1.25rem;
}
.modular .features .feature-items {
  margin-top: 2rem;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media only all and (max-width: 47.938em) {
  .modular .features .feature-items {
    padding-right: 0px;
    padding-left: 0px;
  }
}
@supports not (flex-wrap: wrap) {
  .modular .features .feature-items {
    overflow: hidden;
  }
}
.modular .features .feature {
  display: block;
  float: left;
  width: 33%;
  vertical-align: top;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
@media only all and (min-width: 30.063em) and (max-width: 47.938em) {
  .modular .features .feature {
    margin-top: 1rem;
    width: 50%;
  }
}
@media only all and (max-width: 30em) {
  .modular .features .feature {
    margin-top: 1rem;
    width: 100%;
  }
}
.modular .features .feature i.fa {
  font-size: 2rem;
}
.modular .features .feature h4, .modular .features .feature .bottom table th, .modular .bottom table .features .feature th {
  margin: 0;
  font-size: 1.1rem;
}
.modular .features .feature p {
  display: inline-block;
  font-size: 1.25rem;
  margin: 0.2rem 0 1rem;
}
.modular .features .feature img.feature-image {
  border-radius: 25%;
}
.modular .features.big {
  text-align: center;
}
.modular .features.big .feature {
  width: 33.33%;
}
@media only all and (max-width: 30em) {
  .modular .features.big .feature {
    margin-top: 1rem;
    width: 100%;
  }
}
.modular .features.big i.fa {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
}
.modular .features.big p {
  text-align: left;
}
.modular .features.big .feature-content {
  padding-right: 2rem;
}
.modular .features.big .feature-content.icon-offset {
  margin-left: 1rem;
}
.modular .features.big .feature-content h4, .modular .features.big .feature-content .bottom table th, .modular .bottom table .features.big .feature-content th {
  font-size: 1.2rem;
}
.modular .features.big .feature-content p {
  padding: 0;
  text-align: left;
}

.modular .bottom {
  text-align: center;
  padding-bottom: 4rem;
}
.modular .bottom:after {
  content: "";
  display: table;
  clear: both;
}
.modular .bottom h2 {
  padding-top: 3rem;
  margin: 0;
  line-height: 100%;
  color: #C22142;
}
.modular .bottom p {
  margin: 1rem 0;
}
@media only all and (max-width: 47.938em) {
  .modular .bottom p {
    font-size: 1.25rem;
  }
}
.modular .bottom .button {
  background-color: #C22142;
  color: #FFFFFF;
  font-family: "Marcellus", "Times", "Times New Roman", serif;
  border-radius: 3px;
  box-shadow: none;
  font-size: 1.25rem;
  border: 0 none;
}
.modular .bottom .button:hover {
  background-color: #6b380a;
}
.modular .bottom.borderbottom {
  padding-bottom: 0;
}
.modular .bottom.borderbottom hr {
  padding-top: 3rem;
}
.modular .bottom table {
  border: 0 none;
}
.modular .bottom table th {
  background: none;
  text-align: left;
}
@media only all and (max-width: 47.938em) {
  .modular .bottom table th {
    display: none;
  }
}
.modular .bottom table td {
  text-align: left;
  vertical-align: top;
  border: 0 none;
}
@media only all and (max-width: 47.938em) {
  .modular .bottom table td {
    display: block;
  }
}
.modular .bottom .services {
  padding-top: 2rem;
}
.modular .bottom .services .service {
  width: 50%;
  text-align: left;
  display: block;
  float: left;
}
@media only all and (max-width: 47.938em) {
  .modular .bottom .services .service {
    width: 100%;
  }
}
.modular .bottom .services .service .fa {
  margin-top: 0.5rem;
  width: 7rem;
  height: 6rem;
  font-size: 6rem;
  float: left;
}
.modular .bottom .services .service p {
  margin-left: 7rem;
  margin-top: 0.5rem;
  margin-right: 1rem;
}
.modular .bottom .services .service h4, .modular .bottom .services .service table th, .modular .bottom table .services .service th {
  text-align: left;
  margin-bottom: 0;
}

.about hr {
  margin: 3rem 0;
}

@media only all and (min-width: 48em) {
  .columns {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.columns > .text-column {
  flex: 1 1 20px;
  spacing: 8px;
  text-align: center;
}
.columns img {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  padding: 4px;
  margin-top: 3px;
}
@media only all and (max-width: 47.938em) {
  .columns img {
    margin-top: 2px;
  }
}

.portfolio-row .portfolio-items {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media only all and (min-width: 48em) {
  .portfolio-row .portfolio-items {
    flex-wrap: wrap;
  }
}
@media only all and (max-width: 47.938em) {
  .portfolio-row .portfolio-items {
    flex-wrap: wrap;
  }
}
@media only all and (min-width: 48em) {
  .portfolio-row .portfolio-items .portfolio-item {
    width: 50%;
  }
}
@media only all and (max-width: 47.938em) {
  .portfolio-row .portfolio-items .portfolio-item {
    width: 100%;
  }
}
.portfolio-row .portfolio-items .portfolio-item .portfolio-image {
  text-align: center;
}
.portfolio-row .portfolio-items .portfolio-item .portfolio-image img {
  width: 80%;
  border-radius: 12px;
}
.portfolio-row .portfolio-items .portfolio-item .portfolio-bottom .link {
  margin-left: 75%;
}
.portfolio-row .portfolio-items .portfolio-item .portfolio-bottom .link ::after {
  content: "";
  font-family: "FontAwesome";
  font-weight: 900;
}

.form-row .form-main {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
@media only all and (min-width: 48em) {
  .form-row .form-main .form-form {
    width: 70%;
    padding-right: 25px;
  }
}
@media only all and (max-width: 47.938em) {
  .form-row .form-main .form-form {
    width: 100%;
  }
}
@media only all and (min-width: 48em) {
  .form-row .form-main .form-info {
    width: 25%;
  }
}
@media only all and (max-width: 47.938em) {
  .form-row .form-main .form-info {
    width: 100%;
  }
}
.form-row .form-main .form-info p {
  font-size: 80%;
}
.form-row .form-main .form-info h4, .form-row .form-main .form-info .modular .bottom table th, .modular .bottom table .form-row .form-main .form-info th {
  font-size: 80%;
}

.banner {
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  padding: 250px 0 250px;
  text-align: center;
  position: relative;
  z-index: 100;
}
@media only all and (max-width: 47.938em) {
  .banner {
    padding: 125px 0 125px;
  }
}
.banner.narrow {
  padding: 10px 0 10px;
}
.banner.medium {
  padding: 50px 0 50px;
}
@media only all and (max-width: 47.938em) {
  .banner.medium {
    padding: 25px 0 25px;
  }
}
.banner.wide {
  padding: 100px 0 100px;
}
@media only all and (max-width: 47.938em) {
  .banner.wide {
    padding: 40px 0 40px;
  }
}
.banner h1 {
  font-size: 96px;
  line-height: 100%;
  color: #fff;
  font-family: "Kaushan Script";
}
@media only all and (max-width: 47.938em) {
  .banner h1 {
    font-size: 48px;
  }
}
.banner h1 span {
  font-weight: 700;
}
.banner p {
  color: #fff;
  font-size: 22px;
  line-height: 38px;
  padding-bottom: 55px;
}
.banner a {
  color: #ed145b;
}
.banner .button-container a {
  padding: 1% 3%;
  border-radius: 20px;
  font-size: 2rem;
  opacity: 0.7;
  background: #ed145b;
  display: inline-block;
  color: #fff;
  font-weight: 700;
}
@media only all and (max-width: 47.938em) {
  .banner .button-container a {
    padding: 6px 15px;
    font-size: 1.3rem;
    border-radius: 12px;
  }
}
.banner .button-container a a:hover {
  background: #fff;
  color: #ed145b;
  transition: all 0.4s;
}

@media only all and (min-width: 48em) {
  .about {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.about > .container.image {
  width: 70%;
}
@media only all and (max-width: 47.938em) {
  .about > .container.image {
    width: 100%;
  }
}
.about > .laptop {
  width: 30%;
  padding-left: 8px;
}
@media only all and (min-width: 48em) {
  .about > .laptop.title {
    padding-top: 5.2rem;
  }
}
@media only all and (max-width: 47.938em) {
  .about > .laptop {
    padding-top: 0;
    padding-left: 0;
    width: 100%;
  }
}
.about > .laptop > img {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  padding: 4px;
  margin-top: 2rem;
}
@media only all and (max-width: 47.938em) {
  .about > .laptop > img {
    margin-top: 1rem;
  }
}

#testimonials .item {
  padding-left: 5rem;
  padding-right: 4rem;
}
#testimonials .item .testimonial {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
#testimonials .item .testimonial .testimonial-text p {
  font-size: x-large;
  font-style: italic;
}
#testimonials .item .testimonial .testimonial-text p::before {
  content: "„";
  font-size: xx-large;
}
#testimonials .item .testimonial .testimonial-text p::after {
  content: " “";
  font-size: xx-large;
}
#testimonials .item .testimonial .testimonial-text .testimonial-name {
  padding-left: 8rem;
  font-size: x-large;
  font-style: italic;
}
#testimonials .item .testimonial .testimonial-img {
  border-radius: 25px;
  margin-right: 25px;
}

.team {
  background: #FFFFFF;
  padding-left: 7rem;
  padding-right: 7rem;
  text-align: left;
}
@media only all and (max-width: 47.938em) {
  .team {
    padding: 4rem 0;
  }
}
.team:after {
  content: "";
  display: table;
  clear: both;
}
.team h2 {
  margin: 0;
  line-height: 100%;
}
.team p {
  margin: 1rem 0;
}
.team .members {
  width: 100%;
  text-align: left;
  padding-top: 2rem;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  /*
          .social-icons {
              line-height: 2rem;
              margin: 0;
              list-style: none;
              @include breakpoint(mobile-only) {
                  text-align: center;
                  display: inline-flex;
              }

              li {
                  @extend .default-animation;
                  float: left;
                  width: 2.1rem;
                  height: 2.1rem;
                  background: $white;
                  border-radius: 100%;
                  text-align: center;
                  margin-right: 0.8rem;
                  a {
                      @extend .default-animation;
                      color: $black;
                      display: block;
                      margin-top: 0.1rem;
                  }
                  &:hover {
                      background: transparentize($white, 0.5);
                      i {
                          color: $core-accent;
                      }
                  }
              }
          }
          */
}
.team .members .member {
  display: inline-block;
  width: 25%;
  margin-right: 2%;
  margin-bottom: 2rem;
  display: block;
}
@media only all and (max-width: 47.938em) {
  .team .members .member {
    display: block;
    width: 100%;
    margin: 0;
    margin-bottom: 2rem;
    float: none;
  }
}
@media only all and (min-width: 48em) and (max-width: 59.938em) {
  .team .members .member {
    width: 100%;
    margin-right: 2%;
    margin-bottom: 2rem;
    float: none;
  }
}
.team .members .member h4, .team .members .member .modular .bottom table th, .modular .bottom table .team .members .member th {
  text-align: left;
  text-transform: none;
  font-size: 1.8rem;
  margin-bottom: 4px;
}
@media only all and (max-width: 47.938em) {
  .team .members .member h4, .team .members .member .modular .bottom table th, .modular .bottom table .team .members .member th {
    text-align: center;
    font-size: 1.2rem;
  }
}
.team .members .member span {
  font-style: italic;
}
@media only all and (max-width: 47.938em) {
  .team .members .member span {
    text-align: center;
  }
}
.team .members .member p.member-title {
  font-style: italic;
  text-align: left;
}
@media only all and (max-width: 47.938em) {
  .team .members .member p.member-title {
    text-align: center;
  }
}
.team .members .member hr {
  margin: 1rem 0;
}
.team .members .member img {
  margin-left: auto;
  margin-right: auto;
  border-radius: 25%;
}
.team .members .member .member-img {
  text-align: center;
}
.team .members .member .member-img img {
  margin-left: auto;
  margin-right: auto;
  border-radius: 25%;
  overflow: hidden;
}
@media only all and (max-width: 47.938em) {
  .team .members .member .member-img img {
    display: block;
    width: 180px;
  }
}
@media only all and (min-width: 48em) and (max-width: 59.938em) {
  .team .members .member .member-img img {
    display: block;
    width: 280px;
  }
}
.team .members .member .member-intro {
  font-size: small;
}
.team .members .member .member-intro > p {
  font-size: small;
}
.team .members .member-content {
  width: 70%;
}
@media only all and (min-width: 48em) and (max-width: 59.938em) {
  .team .members .member-content {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
}
@media only all and (max-width: 47.938em) {
  .team .members .member-content {
    display: block;
    width: 100%;
  }
}
.team .members .member-content .content {
  width: 70%;
}
@media only all and (min-width: 48em) and (max-width: 59.938em) {
  .team .members .member-content .content {
    width: 60%;
  }
}
@media only all and (max-width: 47.938em) {
  .team .members .member-content .content {
    width: 100%;
  }
}
.team .members .member-content .sidebar {
  width: 30%;
}
@media only all and (min-width: 48em) and (max-width: 59.938em) {
  .team .members .member-content .sidebar {
    width: 40%;
  }
}
@media only all and (max-width: 47.938em) {
  .team .members .member-content .sidebar {
    width: 100%;
  }
}
.team .members .member-content .sidebar h4, .team .members .member-content .sidebar .modular .bottom table th, .modular .bottom table .team .members .member-content .sidebar th {
  text-transform: none;
  font-size: 1.2rem;
}
.team .members .member-content .sidebar .listing {
  padding: 4px;
  padding-left: 6px;
  margin-bottom: 1px;
}
@media only all and (min-width: 48em) and (max-width: 59.938em) {
  .team .members .member-content .sidebar .listing {
    width: 100%;
    display: block;
  }
}
@media only all and (max-width: 47.938em) {
  .team .members .member-content .sidebar .listing {
    display: block;
    width: 100%;
  }
}
.team .members .member-content .sidebar .listing:nth-child(odd) {
  background: #f8f6f6;
}
.team .members .member-content .sidebar .listing:nth-child(even) {
  background: #fff;
}
.team .members .member-content .sidebar .listing .date {
  display: block;
  margin: 0;
  width: 33%;
}
@media only all and (max-width: 47.938em) {
  .team .members .member-content .sidebar .listing .date {
    width: 100%;
  }
}
.team .members .member-content .sidebar .listing .date .date {
  font-size: 1.1rem;
  font-weight: bold;
}
@media only all and (max-width: 47.938em) {
  .team .members .member-content .sidebar .listing .date .date {
    width: 30%;
  }
}
.team .members .member-content .sidebar .listing .date .time {
  display: block;
  font-size: 0.47rem;
  margin: 0;
}
@media only all and (max-width: 47.938em) {
  .team .members .member-content .sidebar .listing .date .time {
    width: 60%;
    font-size: 0.8rem;
  }
}
.team .members .member-content .sidebar .listing .detail {
  width: 66%;
  font-size: 0.8rem;
  line-height: 1rem;
}
@media only all and (max-width: 47.938em) {
  .team .members .member-content .sidebar .listing .detail {
    width: 100%;
    font-size: 0.9rem;
  }
}
.team .members .member-content .sidebar .listing .button {
  background-color: #87b672;
  color: #FFFFFF;
  font-family: "Raleway", sans-serif;
  box-shadow: none;
  font-size: 0.8rem;
  border: 0 none;
  margin: 4px;
  border-radius: 8px;
  padding-top: 1px;
  padding-bottom: 1px;
  padding-left: 8px;
  padding-right: 8px;
}
@media only all and (max-width: 47.938em) {
  .team .members .member-content .sidebar .listing .button {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.team .members .test-member {
  width: 50%;
}

.news {
  padding-bottom: 15px;
  display: flex;
  display: -webkit-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
@media only all and (max-width: 47.938em) {
  .news {
    display: block;
  }
}
.news .column {
  width: 50%;
  padding-top: 4px;
}
@media only all and (max-width: 47.938em) {
  .news .column {
    display: block;
    width: 100%;
    margin: 0;
    margin-bottom: 2rem;
  }
}
.news .column .listing {
  padding: 4px;
  padding-left: 6px;
  margin-bottom: 1px;
  display: flex;
  display: -webkit-flexbox;
}
@media only all and (max-width: 47.938em) {
  .news .column .listing {
    display: block;
  }
}
.news .column .listing:nth-child(odd) {
  background: #f8f6f6;
}
.news .column .listing:nth-child(even) {
  background: #fff;
}
.news .column .listing .date {
  display: block;
  margin: 0;
  width: 18%;
}
@media only all and (max-width: 47.938em) {
  .news .column .listing .date {
    width: 100%;
  }
}
.news .column .listing .date .date {
  font-size: 1.35rem;
  font-weight: bold;
}
@media only all and (max-width: 47.938em) {
  .news .column .listing .date .date {
    width: 30%;
  }
}
.news .column .listing .date .time {
  display: block;
  font-size: 0.7rem;
  margin: 0;
}
@media only all and (max-width: 47.938em) {
  .news .column .listing .date .time {
    width: 60%;
  }
}
.news .column .listing .detail {
  width: 60%;
}
@media only all and (max-width: 47.938em) {
  .news .column .listing .detail {
    width: 100%;
  }
}
.news .column .listing .detail strong, .news .column .listing .detail label, .news .column .listing .detail th {
  line-height: 1rem;
}
.news .column .listing .detail p {
  font-size: 0.7rem;
  margin: 0.2rem;
}
.news .column .listing .button {
  background-color: #C22142;
  color: #FFFFFF;
  font-family: "Raleway", sans-serif;
  box-shadow: none;
  font-size: 0.8rem;
  border: 0 none;
  margin: 4px;
  padding-top: 1px;
  padding-bottom: 1px;
  padding-left: 8px;
  padding-right: 8px;
}
@media only all and (max-width: 47.938em) {
  .news .column .listing .button {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.news .columnContent {
  padding: 10px;
}

.share {
  text-align: right;
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
  margin-right: 15%;
}

.share-video {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media only all and (max-width: 47.938em) {
  .share-video {
    flex-wrap: wrap;
  }
}
.share-video .fb-video-text {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 50%;
  -moz-flex: 0 50%;
  -ms-flex: 0 50%;
  flex: 0 50%;
}
@media only all and (max-width: 47.938em) {
  .share-video .fb-video-text {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 0 100%;
    -moz-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
.share-video .fb-video {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 50%;
  -moz-flex: 0 50%;
  -ms-flex: 0 50%;
  flex: 0 50%;
  padding: 4px;
  margin-top: 2rem;
}
@media only all and (max-width: 47.938em) {
  .share-video .fb-video {
    margin-top: 1rem;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 0 100%;
    -moz-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}

.team {
  background: #FFFFFF;
  padding-left: 7rem;
  padding-right: 7rem;
  text-align: left;
}
@media only all and (max-width: 47.938em) {
  .team {
    padding: 4rem 0;
  }
}
.team:after {
  content: "";
  display: table;
  clear: both;
}
.team h2 {
  margin: 0;
  line-height: 100%;
}
.team p {
  margin: 1rem 0;
}
.team .members {
  width: 100%;
  text-align: left;
  padding-top: 2rem;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  /*
          .social-icons {
              line-height: 2rem;
              margin: 0;
              list-style: none;
              @include breakpoint(mobile-only) {
                  text-align: center;
                  display: inline-flex;
              }

              li {
                  @extend .default-animation;
                  float: left;
                  width: 2.1rem;
                  height: 2.1rem;
                  background: $white;
                  border-radius: 100%;
                  text-align: center;
                  margin-right: 0.8rem;
                  a {
                      @extend .default-animation;
                      color: $black;
                      display: block;
                      margin-top: 0.1rem;
                  }
                  &:hover {
                      background: transparentize($white, 0.5);
                      i {
                          color: $core-accent;
                      }
                  }
              }
          }
          */
}
.team .members .member {
  display: inline-block;
  width: 25%;
  margin-right: 2%;
  margin-bottom: 2rem;
  display: block;
}
@media only all and (max-width: 47.938em) {
  .team .members .member {
    display: block;
    width: 100%;
    margin: 0;
    margin-bottom: 2rem;
    float: none;
  }
}
@media only all and (min-width: 48em) and (max-width: 59.938em) {
  .team .members .member {
    width: 100%;
    margin-right: 2%;
    margin-bottom: 2rem;
    float: none;
  }
}
.team .members .member h4, .team .members .member .modular .bottom table th, .modular .bottom table .team .members .member th {
  text-align: left;
  text-transform: none;
  font-size: 1.8rem;
  margin-bottom: 4px;
}
@media only all and (max-width: 47.938em) {
  .team .members .member h4, .team .members .member .modular .bottom table th, .modular .bottom table .team .members .member th {
    text-align: center;
    font-size: 1.2rem;
  }
}
.team .members .member span {
  font-style: italic;
}
@media only all and (max-width: 47.938em) {
  .team .members .member span {
    text-align: center;
  }
}
.team .members .member p.member-title {
  font-style: italic;
  text-align: left;
}
@media only all and (max-width: 47.938em) {
  .team .members .member p.member-title {
    text-align: center;
  }
}
.team .members .member hr {
  margin: 1rem 0;
}
.team .members .member img {
  margin-left: auto;
  margin-right: auto;
  border-radius: 25%;
}
.team .members .member .member-img {
  text-align: center;
}
.team .members .member .member-img img {
  margin-left: auto;
  margin-right: auto;
  border-radius: 25%;
  overflow: hidden;
}
@media only all and (max-width: 47.938em) {
  .team .members .member .member-img img {
    display: block;
    width: 180px;
  }
}
@media only all and (min-width: 48em) and (max-width: 59.938em) {
  .team .members .member .member-img img {
    display: block;
    width: 280px;
  }
}
.team .members .member .member-intro {
  font-size: small;
}
.team .members .member .member-intro > p {
  font-size: small;
}
.team .members .member-content {
  width: 70%;
}
@media only all and (min-width: 48em) and (max-width: 59.938em) {
  .team .members .member-content {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
}
@media only all and (max-width: 47.938em) {
  .team .members .member-content {
    display: block;
    width: 100%;
  }
}
.team .members .member-content .content {
  width: 70%;
}
@media only all and (min-width: 48em) and (max-width: 59.938em) {
  .team .members .member-content .content {
    width: 60%;
  }
}
@media only all and (max-width: 47.938em) {
  .team .members .member-content .content {
    width: 100%;
  }
}
.team .members .member-content .sidebar {
  width: 30%;
}
@media only all and (min-width: 48em) and (max-width: 59.938em) {
  .team .members .member-content .sidebar {
    width: 40%;
  }
}
@media only all and (max-width: 47.938em) {
  .team .members .member-content .sidebar {
    width: 100%;
  }
}
.team .members .member-content .sidebar h4, .team .members .member-content .sidebar .modular .bottom table th, .modular .bottom table .team .members .member-content .sidebar th {
  text-transform: none;
  font-size: 1.2rem;
}
.team .members .member-content .sidebar .listing {
  padding: 4px;
  padding-left: 6px;
  margin-bottom: 1px;
}
@media only all and (min-width: 48em) and (max-width: 59.938em) {
  .team .members .member-content .sidebar .listing {
    width: 100%;
    display: block;
  }
}
@media only all and (max-width: 47.938em) {
  .team .members .member-content .sidebar .listing {
    display: block;
    width: 100%;
  }
}
.team .members .member-content .sidebar .listing:nth-child(odd) {
  background: #f8f6f6;
}
.team .members .member-content .sidebar .listing:nth-child(even) {
  background: #fff;
}
.team .members .member-content .sidebar .listing .date {
  display: block;
  margin: 0;
  width: 33%;
}
@media only all and (max-width: 47.938em) {
  .team .members .member-content .sidebar .listing .date {
    width: 100%;
  }
}
.team .members .member-content .sidebar .listing .date .date {
  font-size: 1.1rem;
  font-weight: bold;
}
@media only all and (max-width: 47.938em) {
  .team .members .member-content .sidebar .listing .date .date {
    width: 30%;
  }
}
.team .members .member-content .sidebar .listing .date .time {
  display: block;
  font-size: 0.47rem;
  margin: 0;
}
@media only all and (max-width: 47.938em) {
  .team .members .member-content .sidebar .listing .date .time {
    width: 60%;
    font-size: 0.8rem;
  }
}
.team .members .member-content .sidebar .listing .detail {
  width: 66%;
  font-size: 0.8rem;
  line-height: 1rem;
}
@media only all and (max-width: 47.938em) {
  .team .members .member-content .sidebar .listing .detail {
    width: 100%;
    font-size: 0.9rem;
  }
}
.team .members .member-content .sidebar .listing .button {
  background-color: #87b672;
  color: #FFFFFF;
  font-family: "Raleway", sans-serif;
  box-shadow: none;
  font-size: 0.8rem;
  border: 0 none;
  margin: 4px;
  border-radius: 8px;
  padding-top: 1px;
  padding-bottom: 1px;
  padding-left: 8px;
  padding-right: 8px;
}
@media only all and (max-width: 47.938em) {
  .team .members .member-content .sidebar .listing .button {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.team .members .test-member {
  width: 50%;
}

.modular .modular-row:last-child {
  margin-bottom: 2rem;
}

.location-row .location-columns {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
@media only all and (min-width: 48em) {
  .location-row .location-columns .location-column {
    width: 33%;
  }
  .location-row .location-columns .location-column :not(:last-child) {
    padding-right: 15px;
  }
}
@media only all and (max-width: 47.938em) {
  .location-row .location-columns .location-column {
    width: 100%;
  }
}
.location-row .location-columns .location-column img {
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
  border-radius: 12px;
}

.kurz {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  align-content: flex-start;
}
.kurz > .kurz-banner {
  padding: 10px 0px 10px;
  height: 300px;
  flex: 1 1 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media only all and (max-width: 47.938em) {
  .kurz > .kurz-banner {
    height: 160px;
  }
}
.kurz > .kurz-banner.full {
  margin-left: -15%;
  margin-right: -15%;
  width: 130%;
  background-size: cover;
  flex: 1 1 100%;
}
@media only all and (max-width: 47.938em) {
  .kurz > .kurz-banner.full {
    margin-left: -7%;
    margin-right: -7%;
    background-size: cover;
  }
}
.kurz > .title {
  flex: 1 1 80%;
  text-align: left;
}
@media only all and (max-width: 47.938em) {
  .kurz > .title {
    flex: 1 100%;
  }
}
.kurz > .title h1, .kurz > .title h2 {
  margin-top: 0.2rem;
  text-align: left;
}
.kurz > .title h2 {
  font-size: 1.9rem;
}
@media only all and (max-width: 47.938em) {
  .kurz > .title h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
}
.kurz > .date {
  flex: 1 1 20%;
  text-align: right;
  font-family: "Vollkorn", serif;
  font-weight: 700;
}
@media only all and (max-width: 47.938em) {
  .kurz > .date {
    flex: 1 100%;
    text-align: left;
  }
}
.kurz > .date time > .day {
  font-size: xx-large;
  display: block;
}
@media only all and (max-width: 47.938em) {
  .kurz > .date time > .day {
    display: inline;
    font-size: x-large;
  }
}
.kurz > .date time > .year {
  display: block;
}
@media only all and (max-width: 47.938em) {
  .kurz > .date time > .year {
    display: inline;
  }
}
.kurz > .main {
  flex: 1 1 100%;
  text-align: left;
}
.kurz > .footer {
  flex: 1 1 100%;
  display: inline-flex;
  padding-bottom: 5%;
}
@media only all and (max-width: 47.938em) {
  .kurz > .footer {
    display: inline;
    padding-bottom: 10%;
  }
}
.kurz > .footer > div {
  width: 50%;
  font-size: small;
}
@media only all and (max-width: 47.938em) {
  .kurz > .footer > div {
    width: 100%;
  }
}
.kurz > .footer > div:nth-child(2) {
  width: 50%;
  font-size: small;
  text-align: right;
}
@media only all and (max-width: 47.938em) {
  .kurz > .footer > div:nth-child(2) {
    width: 100%;
    text-align: center;
    padding-top: 25px;
  }
}
.kurz > .footer > div:nth-child(2) a {
  font-family: "Marcellus", "Times", serif;
  background-color: #FA2ABC;
  padding: 12px;
  border-radius: 8px;
  padding: 12px 36px;
  font-size: 1.2rem;
}
.kurz > .footer > div:nth-child(2) a:hover {
  background-color: #fb5ccc;
  color: #eb8123;
}

.next-course {
  width: 60%;
  padding-bottom: 15px;
}
@media only all and (max-width: 47.938em) {
  .next-course {
    width: 100%;
    padding-top: 25px;
  }
}
.next-course > div > .calendar {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  align-content: flex-start;
}
.next-course > div > .calendar .title {
  flex: 3 1;
}
.next-course > div > .calendar .title h3 {
  font-size: 1.5rem;
}
.next-course > div > .calendar .date {
  flex: 1 1;
  text-align: right;
  font-family: "Vollkorn", serif;
  font-weight: 700;
}
@media only all and (max-width: 47.938em) {
  .next-course > div > .calendar .date {
    flex: 1 100%;
    text-align: left;
  }
}
.next-course > div > .calendar .date time > .day {
  font-size: xx-large;
  display: block;
}
@media only all and (max-width: 47.938em) {
  .next-course > div > .calendar .date time > .day {
    display: inline;
    font-size: x-large;
  }
}
.next-course > div > .calendar .date time > .year {
  display: block;
}
@media only all and (max-width: 47.938em) {
  .next-course > div > .calendar .date time > .year {
    display: inline;
  }
}
.next-course > div > .calendar .footer {
  flex: 1 1 100%;
  display: inline-flex;
  padding-bottom: 5%;
  padding-top: 5%;
  font-size: small;
}
@media only all and (max-width: 47.938em) {
  .next-course > div > .calendar .footer {
    display: inline;
    padding-bottom: 10%;
  }
}
.next-course > div > .calendar .footer > .location {
  flex: 1 1;
}
.next-course > div > .calendar .footer > .linkbox {
  flex: 1 1;
  text-align: right;
}
@media only all and (max-width: 47.938em) {
  .next-course > div > .calendar .footer > .linkbox {
    width: 100%;
    text-align: center;
    padding-top: 25px;
  }
}
.next-course > div > .calendar .footer > .linkbox a {
  font-family: "Marcellus", "Times", serif;
  background-color: #FA2ABC;
  padding: 12px;
  border-radius: 8px;
  padding: 12px 36px;
  font-size: 1.2rem;
}
.next-course > div > .calendar .footer > .linkbox a:hover {
  background-color: #fb5ccc;
  color: #eb8123;
}

#kurz-form-error-overlay {
  position: fixed;
  /* Sit on top of the page content */
  display: none;
  /* Hidden by default */
  width: 100%;
  /* Full width (cover the whole page) */
  height: 100%;
  /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* Black background with opacity */
  z-index: 2;
  /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer;
  /* Add a pointer on hover */
}
#kurz-form-error-overlay > .error-box {
  position: absolute;
  top: 50%;
  left: 50%;
  color: black;
  font-size: 1rem;
  background: white;
  padding: 10px 20px;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media only all and (max-width: 47.938em) {
  #kurz-form-error-overlay > .error-box {
    top: 50%;
    left: 15%;
    padding: 5px 10px;
    transform: translate(-10%, -50%);
    -ms-transform: translate(-10%, -50%);
  }
}

/* colors taken from antimatter theme */
/* html5 .calendar-hide */
.calendar-hide {
  display: none;
}

/* html5 .calendar-legend */
.calendar-legend {
  list-style: none;
  padding-left: 0;
  text-align: right;
  width: 100%;
}
.calendar-legend li {
  display: inline-block;
  margin-left: 0.5rem;
}
.calendar-legend li span.color {
  display: inline-block;
  width: 1.75rem;
  font-size: 0.75rem;
  line-height: 1.75rem;
  background: #dddddd;
  text-align: center;
}
.calendar-legend li span.key {
  display: inline-block;
  line-height: 1.5rem;
  font-size: 0.75rem;
}
.calendar-legend li.calendar-today .color {
  background: #1BB3E9;
  color: #ffffff;
}
/* html5 .calendar-container element for calendar.html.twig */
.calendar-container a {
  transition: 0.2s;
}
.calendar-container .calendar-table table {
  font-family: sans-serif;
}
.calendar-container .calendar-table table thead .calendar-controls .calendar-buttons {
  font-size: 1em;
  text-align: center;
}
.calendar-container .calendar-table table thead .calendar-controls .calendar-buttons a {
  border-radius: 1.5rem;
  background-color: #efefef;
  color: #222222;
  display: inline-block;
  line-height: 1.5rem;
  margin: 0.25rem 0.05em;
  text-align: center;
  width: 1.5rem;
}
.calendar-container .calendar-table table thead .calendar-controls .calendar-buttons a:hover {
  color: #222222;
  background-color: #d7d7d7;
  transition: background-color 0.15s ease;
}
.calendar-container .calendar-table table thead .calendar-controls .calendar-title {
  font-size: 1.25em;
  text-align: center;
}
.calendar-container .calendar-table table thead .calendar-headings th {
  background: transparent;
  color: #222222;
  font-size: 0.75rem;
  line-height: 2.5;
  text-align: center;
  width: 14.2857142857%;
  /* for 7 columns with same width */
}
.calendar-container .calendar-table table tbody tr td {
  padding: 0.45rem;
  vertical-align: top;
}
.calendar-container .calendar-table table tbody tr td div {
  font-size: 0.75rem;
  position: relative;
  text-align: center;
}
.calendar-container .calendar-table table tbody tr td div .calendar-day.calendar-active {
  color: #1BB3E9;
}
.calendar-container .calendar-table table tbody tr td div .calendar-day a {
  border-radius: 2.5rem;
  background: #dddddd;
  color: #222222;
  display: inline-block;
}
.calendar-container .calendar-table table tbody tr td div .calendar-day a:hover, .calendar-container .calendar-table table tbody tr td div .calendar-day a.calendar-active {
  background: #1BB3E9;
  color: #ffffff;
}
.calendar-container .calendar-table table tbody tr td div .calendar-day a.calendar-active:hover {
  background: #32bbeb;
}
.calendar-container .calendar-table table tbody tr td div .calendar-day a, .calendar-container .calendar-table table tbody tr td div .calendar-day span {
  font-size: 0.75rem;
  line-height: 2.5rem;
  text-align: center;
  width: 2.5rem;
}
.calendar-container .calendar-table table tbody tr td div .calendar-day-details {
  display: none;
}
.calendar-container .calendar-details {
  /*    .view-all {
       *        border: 0;
       *        margin: 0;
       *        padding: 0 0.75rem;
       *        background: #d5d5d5;
       *        position: absolute;
       *        bottom: 0;
       *        color: #000;
       *        line-height: 2;
       *        outline: none;
  }*/
}
.calendar-container .calendar-details .calendar-day-details ul {
  list-style: none;
  padding: 0;
}
.calendar-container .calendar-details .calendar-day-details ul li {
  margin-bottom: 0.5rem;
}
.calendar-container .calendar-details .calendar-day-details ul li .event-item-left-column {
  position: relative;
}
.calendar-container .calendar-details .calendar-day-details ul li .event-item-left-column a {
  background: #efefef;
  background-size: cover;
  background-position: center center;
  display: block;
  min-height: 4rem;
  width: 100%;
}
.calendar-container .calendar-details .calendar-day-details ul li .event-item-left-column a time {
  bottom: 0;
  background: rgba(255, 255, 255, 0.75);
  color: #222;
  position: absolute;
  padding: 0.25rem 0.5rem;
  right: 0;
  z-index: 99;
}
.calendar-container .calendar-details .calendar-day-details ul li .event-item-right-column .event-item-title {
  font-weight: bold;
  margin: 0;
}
.calendar-container .calendar-details .calendar-day-details ul li .event-item-right-column .event-item-summary p {
  margin: 0.25rem 0;
}
.calendar-container .calendar-details p.events-view-all {
  font-style: italic;
}

/* html5 .calendar-modal element */
.calendar-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  display: none;
}
.calendar-modal .calendar-modal-inner {
  background: #fff;
  max-width: 700px;
  margin: 6rem auto;
  padding: 2rem 4rem;
  position: relative;
  font-family: sans-serif;
}
.calendar-modal .calendar-modal-inner .calendar-close-modal {
  position: absolute;
  right: 1rem;
  top: 0;
  font-size: 3rem;
  font-family: sans-serif;
  cursor: pointer;
}
.calendar-modal .calendar-modal-inner .calendar-modal-title {
  font-size: 2rem;
}
.calendar-modal .calendar-modal-inner .calendar-modal-content ul {
  list-style: none;
  padding-left: 0;
}
.calendar-modal .calendar-modal-inner .calendar-modal-content ul li time {
  width: 5rem;
  display: inline-block;
  color: #03738C;
}

/* html5 .event-button element */
.event-button {
  display: inline-block;
  border: 2px solid #1BB3E9;
  border-radius: 4px;
  padding: 0.5rem 2rem;
  color: #1BB3E9;
  background: #ffffff;
}
.event-button:hover {
  color: #fff;
  border: 2px solid #1BB3E9;
  background: #1BB3E9;
}

/* html5 .events-container element */
.events-container .featured-events {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.events-container .featured-events .featured-event {
  flex-basis: 40%;
  flex-grow: 1;
  margin: 0 1rem 2rem;
}
.events-container .featured-events .featured-event .featured-event-masthead {
  position: relative;
}
.events-container .featured-events .featured-event .featured-event-masthead img {
  display: block;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.events-container .featured-events .featured-event .featured-event-masthead .featured-event-title {
  position: absolute;
  bottom: 2rem;
  padding: 0 2rem;
  margin: 0;
  background: rgba(255, 255, 255, 0.8);
  color: #222;
}
.events-container .featured-events .featured-event .featured-event-masthead .featured-event-title a {
  color: #222;
}
.events-container .featured-events .featured-event .featured-event-content {
  border: 1px solid #efefef;
  padding: 0.5rem 2rem;
  overflow: hidden;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.events-container .featured-events .featured-event .featured-event-content .event-meta-information {
  padding-left: 0;
  list-style: none;
  display: block;
}
.events-container .featured-events .featured-event .featured-event-content .event-meta-information li {
  display: inline-block;
  margin-right: 1em;
}
.events-container .featured-events .featured-event .featured-event-content .event-meta-information li i {
  width: 1rem;
}
.events-container .events-listing {
  padding-bottom: 2rem;
}
.events-container .events-listing .event-item {
  border-bottom: 1px solid #efefef;
  padding: 1rem 0;
}
.events-container .events-listing .event-item:last-child {
  border-bottom: 0;
}
.events-container .events-listing .event-item .event-image img {
  padding: 0;
  margin: 1rem 0 0;
  border-radius: 3px;
}
.events-container .events-listing .event-item .event-content h3 {
  margin: 0;
}
.events-container .events-listing .event-item .event-content .event-meta ul {
  list-style: none;
  padding-left: 0;
}
.events-container .events-listing .event-item .event-content .event-meta ul li i {
  width: 1.5rem;
}
/* html5 .event-container element */
.event-container {
  padding-left: 7rem;
  padding-right: 7rem;
}
@media only all and (max-width: 47.938em) {
  .event-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.event-container .event-content h3 {
  margin: 0;
}
.event-container .event-content .event-meta ul {
  list-style: none;
  padding-left: 0;
}
.event-container .event-content .event-meta ul li i {
  width: 1.5rem;
}
.event-container .event-content .event-price {
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}
@media only all and (max-width: 47.938em) {
  .event-container .event-content .event-price {
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
}
@media only all and (max-width: 47.938em) {
  .event-container .event-content .event-content-low {
    display: block;
  }
}
.event-container .event-content .event-content-low .column {
  width: 50%;
}
@media only all and (max-width: 47.938em) {
  .event-container .event-content .event-content-low .column {
    width: 100%;
  }
}
.event-container .event-content .event-content-low .column .event-trainers {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 8px;
  width: 100%;
}
.event-container .event-content .event-content-low .column .event-trainers div {
  margin-right: 3px;
  padding-left: 3px;
  padding-right: 3px;
}
.event-container .event-content .event-content-low .column .event-trainers div img {
  border-radius: 25%;
  margin-right: auto;
  margin-left: auto;
  display: block;
}
.event-container .event-content .event-content-low .column .event-trainers div h5 {
  font-size: 0.8rem;
  text-align: center;
}
.event-container .event-bottom {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media only all and (min-width: 48em) and (max-width: 59.938em) {
  .event-container .event-bottom {
    width: 100%;
    margin-right: 0px;
  }
}
.event-container .event-bottom .event-enroll .conditions .mustregister {
  background-color: #f83c3c54;
  border-radius: 4px;
  padding-left: 12px;
  padding-right: 9px;
  color: #000;
}
.event-container .event-bottom .event-enroll .conditions .mayregister {
  background-color: #71f28054;
  border-radius: 4px;
  padding-left: 12px;
  padding-right: 9px;
  color: #000;
}
.event-container .event-bottom .event-enroll .conditions .price {
  margin-bottom: 0.8rem;
}
@media only all and (max-width: 47.938em) {
  .event-container .event-bottom .event-enroll .conditions .price {
    display: block;
  }
}
.event-container .event-bottom .event-enroll .conditions .price div {
  width: 50%;
}
@media only all and (max-width: 47.938em) {
  .event-container .event-bottom .event-enroll .conditions .price div {
    width: 100%;
  }
}
.event-container .event-bottom .events-sidebar .event-day {
  font-size: 1rem;
}

/* html5 .event-article element */
.event-article {
  padding: 1rem 0;
}
.event-article .event-header {
  position: relative;
}
.event-article .event-header div.event-title {
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: white;
  width: 100%;
  padding: 5px;
  font-size: x-large;
  text-align: left;
  opacity: 0.8;
}
.event-article .event-header > .event_title {
  border-radius: 25px 0px;
}
.event-article .event-header .event-date {
  position: absolute;
  text-align: right;
  top: 0;
  right: 0;
  padding: 0.25rem 1rem;
  background: rgba(255, 255, 255, 0.85);
  color: #03738C;
  height: 140px;
  width: 190px;
}
@media only all and (max-width: 47.938em) {
  .event-article .event-header .event-date {
    height: 75px;
    width: 85px;
    padding: 0.25rem;
  }
}
.event-article .event-header .event-date .day {
  display: block;
  font-size: 3.75rem;
  font-weight: bold;
  margin: 0;
  line-height: 1;
}
@media only all and (max-width: 47.938em) {
  .event-article .event-header .event-date .day {
    font-size: 2.25rem;
  }
}
.event-article .event-header .event-date .month {
  display: block;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.35rem;
  line-height: 1;
  margin: 0.5rem 0;
}
.event-article .event-header .event-date .time {
  display: block;
  line-height: 1;
  padding-top: 4px;
  border-top: black dotted 1px;
}
@media only all and (max-width: 47.938em) {
  .event-article .event-header .event-date .time {
    font-size: 0.8rem;
  }
}
.event-article .event-header .event-date .year {
  display: none;
}
/* html5 .events-sidebar element */
.events-sidebar .events-list {
  list-style: none;
  padding-left: 0;
}
.events-sidebar .events-list .event-day {
  font-size: 2rem;
  margin-top: 1rem;
}
.events-sidebar .events-list .event-dow {
  font-size: 1.2rem;
}
.events-sidebar .events-list-compact {
  list-style: none;
  padding-left: 0;
  font-size: 0.8rem;
  margin: 3px;
}
.events-sidebar .events-list-compact .event-day {
  font-size: 0.8rem;
  margin-top: 1rem;
}
.events-sidebar .events-list-compact .event-dow {
  font-size: 0.8rem;
}

/* html5 .event-tags element */
.event-tags {
  display: inline-block;
}
.event-tags a {
  display: inline-block;
  border: 1px solid #1BB3E9;
  border-radius: 4px;
  padding: 0 0.5rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: normal;
}

/* clear user agent styles */
.clear-user-agent-styles table,
.clear-user-agent-styles thead,
.clear-user-agent-styles tbody,
.clear-user-agent-styles tfoot,
.clear-user-agent-styles tr,
.clear-user-agent-styles th,
.clear-user-agent-styles td {
  border: none;
  border-color: inherit;
  vertical-align: inherit;
  text-align: left;
  font-weight: inherit;
}

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