body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Alex Brush', handwriting;
  font-size: 4.25rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
}
.display-5 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.4rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.06rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.7rem;
    font-size: calc( 0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #f78039 !important;
}
.bg-success {
  background-color: #9473d2 !important;
}
.bg-info {
  background-color: #7237a2 !important;
}
.bg-warning {
  background-color: #f8f9c4 !important;
}
.bg-danger {
  background-color: #efefef !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #f78039 !important;
  border-color: #f78039 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #f78039 !important;
  border-color: #f78039 !important;
}
.btn-primary:before {
  background-color: #db5709 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #db5709 !important;
  border-color: #db5709 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
}
.btn-secondary:before {
  background-color: #eb3934 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #eb3934 !important;
  border-color: #eb3934 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
}
.btn-info:before {
  background-color: #4a2469 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #4a2469 !important;
  border-color: #4a2469 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
}
.btn-success:before {
  background-color: #693cbc !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #693cbc !important;
  border-color: #693cbc !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
  color: #aaac12 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #aaac12 !important;
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
}
.btn-warning:before {
  background-color: #f0f27f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #aaac12 !important;
  background-color: #f0f27f !important;
  border-color: #f0f27f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #efefef !important;
  border-color: #efefef !important;
  color: #707070 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #707070 !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-danger:before {
  background-color: #c9c9c9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #707070 !important;
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white:before {
  background-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black:before {
  background-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #c24d08;
  color: #c24d08;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  border-color: #f78039;
}
.btn-primary-outline:before {
  background-color: #f78039;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #f78039 !important;
  border-color: #f78039 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #e9221d;
  color: #e9221d;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  border-color: #f27d7a;
}
.btn-secondary-outline:before {
  background-color: #f27d7a;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #3c1d56;
  color: #3c1d56;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  border-color: #7237a2;
}
.btn-info-outline:before {
  background-color: #7237a2;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #5e36a9;
  color: #5e36a9;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  border-color: #9473d2;
}
.btn-success-outline:before {
  background-color: #9473d2;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #edf067;
  color: #edf067;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #aaac12;
  border-color: #f8f9c4;
}
.btn-warning-outline:before {
  background-color: #f8f9c4;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #bcbcbc;
  color: #bcbcbc;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #707070;
  border-color: #efefef;
}
.btn-danger-outline:before {
  background-color: #efefef;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  border-color: #333333;
}
.btn-black-outline:before {
  background-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  border-color: #ffffff;
}
.btn-white-outline:before {
  background-color: #ffffff;
}
.btn-bgr {
  position: relative;
  transition: border 0.3s ease-in-out, color 0.5s;
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}
.btn-bgr span {
  position: relative;
  z-index: 12;
}
.btn-bgr:before {
  content: ' ';
  position: absolute;
  top: -2px;
  left: -2px;
  right: 105%;
  bottom: -2px;
  transition: right 0.3s ease-in-out;
  z-index: -1;
}
.btn-bgr:hover:before {
  right: -2px;
}
.btn-underline {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: color 0.2s ease-out;
}
.btn-underline:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #f78039;
  -webkit-transition: width 0.2s ease-out;
  -moz-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}
.btn-underline:hover:before {
  width: 100%;
}
.text-primary {
  color: #f78039 !important;
}
.text-secondary {
  color: #f27d7a !important;
}
.text-success {
  color: #9473d2 !important;
}
.text-info {
  color: #7237a2 !important;
}
.text-warning {
  color: #f8f9c4 !important;
}
.text-danger {
  color: #efefef !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #c24d08 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e9221d !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #5e36a9 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #3c1d56 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #edf067 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #bcbcbc !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #7237a2;
}
.alert-warning {
  background-color: #f8f9c4;
}
.alert-danger {
  background-color: #efefef;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f78039;
  border-color: #f78039;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f78039;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fffefd;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #b083d5;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
blockquote {
  border-color: #f78039;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #f78039;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #f78039;
}
/*Menu*/
.display-1 > .mbr-iconfont {
  font-size: 6.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.4rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.696rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f78039;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #f78039;
  border-bottom-color: #f78039;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #f78039 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #f27d7a !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23f78039' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-qNtPxohadS {
  background-image: url("../../../assets/images/20180327-125306-2000x1500.jpg");
}
.cid-qNtPxohadS .slider-text-two {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  display: inline-block;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
  text-align: center;
}
.cid-qNtPxohadS .mbr-section-title {
  color: #232323;
}
.cid-qNtPxohadS .mbr-section-title span {
  color: #ffbc00;
}
.cid-qNtPxohadS .mbr-text {
  color: #1a032d;
  letter-spacing: 5px;
  font-weight: 100;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qNtPxohadS .slider-text-two {
    outline: 15px solid rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
}
.cid-qNtPxohadS .mbr-section-title SPAN {
  color: #ff8f00;
}
.cid-qNtPxohadS .mbr-text B {
  color: #555555;
}
.cid-qJkU9aAmV7 {
  padding-top: 20px;
  background-image: url("../../../assets/images/glas-1920x1080.jpg");
}
.cid-qJkU9aAmV7 .container {
  margin-bottom: 15%;
}
.cid-qJkU9aAmV7 .content-container .btn-bgr {
  z-index: 0;
}
.cid-qJkU9aAmV7 .container-boxes {
  padding-bottom: 75px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
  background-color: #ffffff;
}
.cid-qJkU9aAmV7 .box-item {
  width: 29%;
  padding: 2.5rem;
}
.cid-qJkU9aAmV7 .box-item:first-child {
  background-color: #0c6407;
  margin-top: -200px;
}
.cid-qJkU9aAmV7 .box-item:nth-child(2) {
  background-color: #ffffff;
}
.cid-qJkU9aAmV7 .box-item:last-child {
  background-color: #951d19;
}
.cid-qJkU9aAmV7 .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-qJkU9aAmV7 .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-qJkU9aAmV7 .box-list li:last-child {
  border-bottom: none;
}
.cid-qJkU9aAmV7 .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-qJkU9aAmV7 .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-qJkU9aAmV7 .media-container-row {
    justify-content: flex-start;
  }
  .cid-qJkU9aAmV7 .box-item {
    margin-top: -200px;
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .cid-qJkU9aAmV7 .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-qJkU9aAmV7 .box-item {
    margin-top: 0;
    width: 90%;
  }
  .cid-qJkU9aAmV7 .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-qJkU9aAmV7 .box-item-text {
  color: #f78039;
}
.cid-qJkU9aAmV7 .box-item-text-white {
  color: #ffffff;
}
.cid-qJkU9aAmV7 .box-item-text-red {
  color: #CC0000;
}
.cid-qJkU9aAmV7 .box-item-title-red {
  color: #CC0000;
}
.cid-qJkU9aAmV7 .icon-block-top,
.cid-qJkU9aAmV7 .box-item-title {
  color: #ffffff;
}
.cid-qJkU9aAmV7 .mbr-text,
.cid-qJkU9aAmV7 .mbr-section-btn {
  color: #ffffff;
}
.cid-qJkU9aAmV7 H1 {
  color: #ffffff;
}
.cid-qJkU9aAmV7 .abstandoben {
  padding-top: -20px;
}
.cid-qNje91PgS0 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #efefef;
}
.cid-qNje91PgS0 .mbr-overlay {
  background: linear-gradient(90deg, #ffffff, #1ec5bf);
}
.cid-qNje91PgS0 h3 {
  color: #000000;
  font-weight: 300;
}
.cid-qNje91PgS0 p {
  color: #464646;
}
.cid-qNje91PgS0 h2 {
  color: #000000;
}
.cid-qNje91PgS0 .counter-container {
  color: #767676;
}
.cid-qNje91PgS0 .counter-container div {
  margin-bottom: 1rem;
  padding-left: .5rem;
}
.cid-qNje91PgS0 .media-content {
  padding-right: 1.5rem;
  padding-left: 3rem;
}
@media (max-width: 991px) {
  .cid-qNje91PgS0 .media-content {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.cid-qNje91PgS0 .mbr-figure:last-of-type {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-qNje91PgS0 .list-counter {
  float: left;
  font-size: 2rem;
  margin-right: 1rem;
}
.cid-qNje91PgS0 .half-list:nth-of-type(even) {
  display: inline-block;
  width: 48%;
  margin-left: 4%;
}
.cid-qNje91PgS0 .half-list {
  text-align: left;
  display: inline-block;
  width: 48%;
  vertical-align: top;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-qNje91PgS0 .half-list {
    width: 100%;
    margin: 0;
  }
  .cid-qNje91PgS0 .half-list:nth-of-type(even) {
    width: 100%;
    margin: 0;
  }
}
.cid-qNje91PgS0 .mbr-figure {
  padding-right: 1rem;
  padding-left: 4rem;
  -ms-flex-item-align: initial;
  -ms-grid-row-align: initial;
  -webkit-align-self: flex-start;
  align-self: flex-start;
}
@media (min-width: 992px) {
  .cid-qNje91PgS0 .mbr-figure {
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-qNje91PgS0 .mbr-figure {
    padding-top: 1rem;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-qNje91PgS0 .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-qNje91PgS0 .mbr-text {
    text-align: center;
  }
}
.cid-qNje91PgS0 B {
  color: #f78039;
}
.cid-qNje91PgS0 H2 {
  color: #0c6407;
}
.cid-qNigIFqSt4 {
  background-image: url("../../../assets/images/cafe-1920x1280.jpg");
}
.cid-qNigIFqSt4 .text-content {
  padding-top: 120px;
  padding-bottom: 120px;
}
.cid-qNigIFqSt4 .text-content .btn-bgr {
  z-index: 0;
}
.cid-qNigIFqSt4 .mbr-overlay {
  background: linear-gradient(90deg, #f78039, #4284df);
}
.cid-qNigIFqSt4 h3 {
  color: #000000;
  font-weight: 300;
}
.cid-qNigIFqSt4 p {
  color: #464646;
}
.cid-qNigIFqSt4 h2 {
  color: #000000;
}
.cid-qNigIFqSt4 .media-container-row {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 767px) {
  .cid-qNigIFqSt4 .media-container-row {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-qNigIFqSt4 .text-content {
  padding-left: 1rem;
  padding-right: 1rem;
  width: 50%;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-qNigIFqSt4 .text-content {
    width: 80%;
  }
}
@media (max-width: 599px) {
  .cid-qNigIFqSt4 .text-content {
    width: 100%;
  }
}
.cid-qNigIFqSt4 .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-qNigIFqSt4 .mbr-section-btn {
  margin-left: -0.8rem;
}
@media (max-width: 767px) {
  .cid-qNigIFqSt4 .mbr-text {
    text-align: center;
  }
}
.cid-qNd4n49qOa {
  padding-top: 30px;
  padding-bottom: 135px;
  background-color: #efefef;
}
.cid-qNd4n49qOa .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qNd4n49qOa .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qNd4n49qOa .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qNd4n49qOa .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qNd4n49qOa .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #951d19;
  background: linear-gradient(to left, #951d19, #0c6407) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qNd4n49qOa .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-qNd4n49qOa .mbr-gallery-item > div:hover:before {
  opacity: 0.5 !important;
}
.cid-qNd4n49qOa .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-qNd4n49qOa .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #951d19 !important;
  background: linear-gradient(to left, #951d19, #0c6407) !important;
  opacity: 0.5;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-qNd4n49qOa ul {
  font-size: 0;
}
.cid-qNd4n49qOa .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #f78039;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s;
}
.cid-qNd4n49qOa .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #f78039 solid;
  border-radius: 0 !important;
}
.cid-qNd4n49qOa .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-qJkUUUz1ET {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-qJkUUUz1ET h2,
.cid-qJkUUUz1ET h3,
.cid-qJkUUUz1ET p,
.cid-qJkUUUz1ET h4 {
  color: #0a0a0a;
}
.cid-qJkUUUz1ET .img-block img {
  height: 100%;
  max-height: 600px;
}
.cid-qJkUUUz1ET .mbr-iconfont {
  color: #f78039;
  font-size: 2rem;
}
.cid-qJkUUUz1ET .input {
  margin-bottom: 15px;
}
.cid-qJkUUUz1ET .mbr-text {
  color: #767676;
}
.cid-qJkUUUz1ET a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qJkUUUz1ET .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qJkUUUz1ET .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qJkUUUz1ET .form-block {
  padding: 2rem;
  box-shadow: 0 0 5px #a8a8a8;
  background-color: #ffffff;
}
.cid-qJkUUUz1ET .block .form-control {
  padding: 1.07em 1.07em;
}
.cid-qJkUUUz1ET .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-qJkUUUz1ET .media-container-row {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.cid-qJkUUUz1ET .list-block {
  position: relative;
}
.cid-qJkUUUz1ET .list-block h4,
.cid-qJkUUUz1ET .list-block p {
  padding-left: 3.5rem;
}
.cid-qJkUUUz1ET .card-img {
  display: block;
}
@media (max-width: 767px) {
  .cid-qJkUUUz1ET h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-qJkUUUz1ET .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-qJkUUUz1ET .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
  .cid-qJkUUUz1ET .img-block-wrap {
    position: relative;
  }
  .cid-qJkUUUz1ET .img-block-wrap .img-block {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
  }
  .cid-qJkUUUz1ET .img-block-wrap .img-block img {
    height: 100%;
  }
  .cid-qJkUUUz1ET .text-content {
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-qJkUUUz1ET .google-map {
    padding-bottom: 2rem;
  }
  .cid-qJkUUUz1ET .img-block {
    overflow: hidden;
  }
}
.cid-qNd25JGHiu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f78039;
}
.cid-qNd25JGHiu p {
  text-align: center;
}
.cid-qNd25JGHiu .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-qNd25JGHiu .btn-underline:hover {
  color: #505050;
}
.cid-qNd25JGHiu .btn-underline:before {
  background-color: #505050;
}
.cid-qNd25JGHiu .social-list a:focus {
  text-decoration: none;
}
.cid-qNd25JGHiu .text-copyright {
  width: 100%;
}
.cid-qNd25JGHiu .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-qNd25JGHiu .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-qNd25JGHiu .logo-footer {
  line-height: normal;
}
.cid-qNd25JGHiu .copyright {
  display: flex;
  align-items: center;
}
.cid-qNd25JGHiu .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qNd25JGHiu .mbr-section-btn {
  font-size: 16px;
}
.cid-qNd25JGHiu .mbr-section-btn a {
  margin: 0 1rem 0.5rem;
}
.cid-qPsklcENxK .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #efefef;
}
.cid-qPsklcENxK .navbar.opened {
  transition: all .3s;
  background: #efefef !important;
}
.cid-qPsklcENxK .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-qPsklcENxK .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-qPsklcENxK .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-qPsklcENxK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qPsklcENxK .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-qPsklcENxK .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #f78039;
}
.cid-qPsklcENxK .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-qPsklcENxK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qPsklcENxK .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-qPsklcENxK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qPsklcENxK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qPsklcENxK .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qPsklcENxK .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-qPsklcENxK .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-qPsklcENxK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qPsklcENxK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-qPsklcENxK .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-qPsklcENxK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qPsklcENxK .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-qPsklcENxK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qPsklcENxK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qPsklcENxK .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qPsklcENxK .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-qPsklcENxK .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-qPsklcENxK .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qPsklcENxK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qPsklcENxK .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-qPsklcENxK .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-qPsklcENxK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qPsklcENxK .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-qPsklcENxK .navbar.navbar-short {
  background: #efefef !important;
  min-height: 60px;
}
.cid-qPsklcENxK .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qPsklcENxK .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qPsklcENxK .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qPsklcENxK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qPsklcENxK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qPsklcENxK .dropdown-item.active,
.cid-qPsklcENxK .dropdown-item:active {
  background-color: transparent;
}
.cid-qPsklcENxK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qPsklcENxK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qPsklcENxK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qPsklcENxK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-qPsklcENxK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-qPsklcENxK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qPsklcENxK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qPsklcENxK .navbar-buttons {
  text-align: center;
}
.cid-qPsklcENxK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qPsklcENxK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-qPsklcENxK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qPsklcENxK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qPsklcENxK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qPsklcENxK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qPsklcENxK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qPsklcENxK nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qPsklcENxK nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qPsklcENxK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qPsklcENxK .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qPsklcENxK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-qPsklcENxK .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qPsklcENxK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-qPsklcENxK .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-qPsklcENxK .nav-link:hover,
.cid-qPsklcENxK .dropdown-item:hover {
  color: #444444 !important;
}
.cid-qPsklcENxK .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #efefef;
}
.cid-qPsklcENxK .navbar.opened {
  transition: all .3s;
  background: #efefef !important;
}
.cid-qPsklcENxK .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-qPsklcENxK .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-qPsklcENxK .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-qPsklcENxK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qPsklcENxK .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-qPsklcENxK .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #f78039;
}
.cid-qPsklcENxK .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-qPsklcENxK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qPsklcENxK .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-qPsklcENxK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qPsklcENxK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qPsklcENxK .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qPsklcENxK .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-qPsklcENxK .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-qPsklcENxK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qPsklcENxK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-qPsklcENxK .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-qPsklcENxK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qPsklcENxK .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-qPsklcENxK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qPsklcENxK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qPsklcENxK .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qPsklcENxK .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-qPsklcENxK .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-qPsklcENxK .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qPsklcENxK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qPsklcENxK .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-qPsklcENxK .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-qPsklcENxK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qPsklcENxK .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-qPsklcENxK .navbar.navbar-short {
  background: #efefef !important;
  min-height: 60px;
}
.cid-qPsklcENxK .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qPsklcENxK .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qPsklcENxK .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qPsklcENxK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qPsklcENxK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qPsklcENxK .dropdown-item.active,
.cid-qPsklcENxK .dropdown-item:active {
  background-color: transparent;
}
.cid-qPsklcENxK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qPsklcENxK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qPsklcENxK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qPsklcENxK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-qPsklcENxK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-qPsklcENxK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qPsklcENxK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qPsklcENxK .navbar-buttons {
  text-align: center;
}
.cid-qPsklcENxK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qPsklcENxK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-qPsklcENxK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qPsklcENxK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qPsklcENxK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qPsklcENxK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qPsklcENxK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qPsklcENxK nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qPsklcENxK nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qPsklcENxK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qPsklcENxK .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qPsklcENxK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-qPsklcENxK .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qPsklcENxK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-qPsklcENxK .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-qPsklcENxK .nav-link:hover,
.cid-qPsklcENxK .dropdown-item:hover {
  color: #444444 !important;
}
.cid-qPssaWzr4Q {
  padding-top: 120px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mbr-1620x1080.jpg");
}
.cid-qPssZgzL39 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #fafafa;
}
.cid-qPssZgzL39 h3 {
  text-align: center;
  font-weight: 300;
}
.cid-qPssZgzL39 .progress {
  width: 100%;
}
.cid-qPssZgzL39 .title-wrap {
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-qPssZgzL39 progress {
  height: inherit;
}
.cid-qPssZgzL39 .progressbar-number {
  display: inline-block;
}
.cid-qPssZgzL39 .progress-primary {
  background: rgba(206, 206, 206, 0.4);
  border: none;
  outline: none;
}
.cid-qPssZgzL39 .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-qPssZgzL39 .mbr-section-subtitle {
  color: #767676;
}
.cid-qPssZgzL39 .section-content-title {
  font-weight: 500;
}
.cid-qPssZgzL39 .progress_value {
  position: relative;
}
.cid-qPssZgzL39 .progress1 .progressbar-number:before,
.cid-qPssZgzL39 .progress2 .progressbar-number:before,
.cid-qPssZgzL39 .progress3 .progressbar-number:before,
.cid-qPssZgzL39 .progress4 .progressbar-number:before,
.cid-qPssZgzL39 .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-qPssZgzL39 progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-qPssZgzL39 progress::-webkit-progress-value {
  background: #0c57bf;
  background: linear-gradient(90deg, #0c57bf, #eb4e6f);
}
.cid-qPssZgzL39 progress[value]::-moz-progress-bar {
  background: #0c57bf;
  background: linear-gradient(90deg, #0c57bf, #eb4e6f);
}
.cid-qPssZgzL39 progress::-ms-fill {
  background: #0c57bf;
  background: linear-gradient(90deg, #0c57bf, #eb4e6f);
}
.cid-qPssZgzL39 .progress1 .progressbar-number:before {
  content: '100';
}
.cid-qPssZgzL39 .progress2 .progressbar-number:before {
  content: '90';
}
.cid-qPssZgzL39 .progress3 .progressbar-number:before {
  content: '80';
}
.cid-qPssZgzL39 .progress4 .progressbar-number:before {
  content: '70';
}
.cid-qPssZgzL39 .progress5 .progressbar-number:before {
  content: '60';
}
.cid-qPssZgzL39 .progress-container {
  display: flex;
  align-items: center;
  position: relative;
  height: 1.8rem;
  width: 100%;
}
.cid-qPssZgzL39 .progress-container span.progress-title {
  position: absolute;
  padding-left: 2rem;
  font-size: 1rem !important;
  bottom: 0;
  height: 24px;
  overflow: hidden;
  max-width: 85%;
}
.cid-qPssZgzL39 .progress-container .progress_value {
  position: absolute;
  right: 2rem;
  font-size: 1rem !important;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .cid-qPssZgzL39 .progress_value {
    margin-top: -10px;
  }
}
@media (min-width: 768px) {
  .cid-qPssZgzL39 .text-elements {
    padding-right: 3rem;
  }
  .cid-qPssZgzL39 .progress_elements {
    padding-left: 3rem;
  }
}
.cid-qPssZgzL39 H1 {
  color: #f78039;
}
.cid-qPsxpCvX1g {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f78039;
}
.cid-qPsxpCvX1g p {
  text-align: center;
}
.cid-qPsxpCvX1g .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-qPsxpCvX1g .btn-underline:hover {
  color: #505050;
}
.cid-qPsxpCvX1g .btn-underline:before {
  background-color: #505050;
}
.cid-qPsxpCvX1g .social-list a:focus {
  text-decoration: none;
}
.cid-qPsxpCvX1g .text-copyright {
  width: 100%;
}
.cid-qPsxpCvX1g .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-qPsxpCvX1g .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-qPsxpCvX1g .logo-footer {
  line-height: normal;
}
.cid-qPsxpCvX1g .copyright {
  display: flex;
  align-items: center;
}
.cid-qPsxpCvX1g .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qPsxpCvX1g .mbr-section-btn {
  font-size: 16px;
}
.cid-qPsxpCvX1g .mbr-section-btn a {
  margin: 0 1rem 0.5rem;
}
.cid-qSYlYqLooD .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #efefef;
}
.cid-qSYlYqLooD .navbar.opened {
  transition: all .3s;
  background: #efefef !important;
}
.cid-qSYlYqLooD .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-qSYlYqLooD .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-qSYlYqLooD .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-qSYlYqLooD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSYlYqLooD .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-qSYlYqLooD .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #f78039;
}
.cid-qSYlYqLooD .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-qSYlYqLooD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSYlYqLooD .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-qSYlYqLooD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSYlYqLooD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSYlYqLooD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qSYlYqLooD .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-qSYlYqLooD .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-qSYlYqLooD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSYlYqLooD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-qSYlYqLooD .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-qSYlYqLooD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSYlYqLooD .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-qSYlYqLooD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSYlYqLooD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSYlYqLooD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qSYlYqLooD .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-qSYlYqLooD .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-qSYlYqLooD .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSYlYqLooD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSYlYqLooD .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-qSYlYqLooD .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-qSYlYqLooD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSYlYqLooD .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-qSYlYqLooD .navbar.navbar-short {
  background: #efefef !important;
  min-height: 60px;
}
.cid-qSYlYqLooD .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSYlYqLooD .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSYlYqLooD .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSYlYqLooD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSYlYqLooD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSYlYqLooD .dropdown-item.active,
.cid-qSYlYqLooD .dropdown-item:active {
  background-color: transparent;
}
.cid-qSYlYqLooD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSYlYqLooD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSYlYqLooD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSYlYqLooD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-qSYlYqLooD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-qSYlYqLooD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSYlYqLooD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSYlYqLooD .navbar-buttons {
  text-align: center;
}
.cid-qSYlYqLooD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSYlYqLooD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-qSYlYqLooD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSYlYqLooD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSYlYqLooD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSYlYqLooD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSYlYqLooD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSYlYqLooD nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSYlYqLooD nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSYlYqLooD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSYlYqLooD .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSYlYqLooD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-qSYlYqLooD .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qSYlYqLooD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-qSYlYqLooD .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-qSYlYqLooD .nav-link:hover,
.cid-qSYlYqLooD .dropdown-item:hover {
  color: #444444 !important;
}
.cid-qSYlYr9Af8 {
  padding-top: 120px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mbr-1620x1080.jpg");
}
.cid-qSYlYrxFea {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #fafafa;
}
.cid-qSYlYrxFea h3 {
  text-align: center;
  font-weight: 300;
}
.cid-qSYlYrxFea .progress {
  width: 100%;
}
.cid-qSYlYrxFea .title-wrap {
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-qSYlYrxFea progress {
  height: inherit;
}
.cid-qSYlYrxFea .progressbar-number {
  display: inline-block;
}
.cid-qSYlYrxFea .progress-primary {
  background: rgba(206, 206, 206, 0.4);
  border: none;
  outline: none;
}
.cid-qSYlYrxFea .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-qSYlYrxFea .mbr-section-subtitle {
  color: #767676;
}
.cid-qSYlYrxFea .section-content-title {
  font-weight: 500;
}
.cid-qSYlYrxFea .progress_value {
  position: relative;
}
.cid-qSYlYrxFea .progress1 .progressbar-number:before,
.cid-qSYlYrxFea .progress2 .progressbar-number:before,
.cid-qSYlYrxFea .progress3 .progressbar-number:before,
.cid-qSYlYrxFea .progress4 .progressbar-number:before,
.cid-qSYlYrxFea .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-qSYlYrxFea progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-qSYlYrxFea progress::-webkit-progress-value {
  background: #0c57bf;
  background: linear-gradient(90deg, #0c57bf, #eb4e6f);
}
.cid-qSYlYrxFea progress[value]::-moz-progress-bar {
  background: #0c57bf;
  background: linear-gradient(90deg, #0c57bf, #eb4e6f);
}
.cid-qSYlYrxFea progress::-ms-fill {
  background: #0c57bf;
  background: linear-gradient(90deg, #0c57bf, #eb4e6f);
}
.cid-qSYlYrxFea .progress1 .progressbar-number:before {
  content: '100';
}
.cid-qSYlYrxFea .progress2 .progressbar-number:before {
  content: '90';
}
.cid-qSYlYrxFea .progress3 .progressbar-number:before {
  content: '80';
}
.cid-qSYlYrxFea .progress4 .progressbar-number:before {
  content: '70';
}
.cid-qSYlYrxFea .progress5 .progressbar-number:before {
  content: '60';
}
.cid-qSYlYrxFea .progress-container {
  display: flex;
  align-items: center;
  position: relative;
  height: 1.8rem;
  width: 100%;
}
.cid-qSYlYrxFea .progress-container span.progress-title {
  position: absolute;
  padding-left: 2rem;
  font-size: 1rem !important;
  bottom: 0;
  height: 24px;
  overflow: hidden;
  max-width: 85%;
}
.cid-qSYlYrxFea .progress-container .progress_value {
  position: absolute;
  right: 2rem;
  font-size: 1rem !important;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .cid-qSYlYrxFea .progress_value {
    margin-top: -10px;
  }
}
@media (min-width: 768px) {
  .cid-qSYlYrxFea .text-elements {
    padding-right: 3rem;
  }
  .cid-qSYlYrxFea .progress_elements {
    padding-left: 3rem;
  }
}
.cid-qSYlYrxFea H1 {
  color: #f78039;
}
.cid-qSYlYrxFea H3 {
  text-align: left;
}
.cid-qSYlYsxFzz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f78039;
}
.cid-qSYlYsxFzz p {
  text-align: center;
}
.cid-qSYlYsxFzz .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-qSYlYsxFzz .btn-underline:hover {
  color: #505050;
}
.cid-qSYlYsxFzz .btn-underline:before {
  background-color: #505050;
}
.cid-qSYlYsxFzz .social-list a:focus {
  text-decoration: none;
}
.cid-qSYlYsxFzz .text-copyright {
  width: 100%;
}
.cid-qSYlYsxFzz .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-qSYlYsxFzz .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-qSYlYsxFzz .logo-footer {
  line-height: normal;
}
.cid-qSYlYsxFzz .copyright {
  display: flex;
  align-items: center;
}
.cid-qSYlYsxFzz .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qSYlYsxFzz .mbr-section-btn {
  font-size: 16px;
}
.cid-qSYlYsxFzz .mbr-section-btn a {
  margin: 0 1rem 0.5rem;
}
