.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((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.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #35484c !important;
}
.bg-info {
  background-color: #1999d6 !important;
}
.bg-warning {
  background-color: #85be4b !important;
}
.bg-danger {
  background-color: #b69661 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #6d0075 !important;
  border-color: #6d0075 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #1c001e !important;
  border-color: #1c001e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1c001e !important;
  border-color: #1c001e !important;
}
.btn-info,
.btn-info:active {
  background-color: #1999d6 !important;
  border-color: #1999d6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #106188 !important;
  border-color: #106188 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #106188 !important;
  border-color: #106188 !important;
}
.btn-success,
.btn-success:active {
  background-color: #35484c !important;
  border-color: #35484c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #111819 !important;
  border-color: #111819 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #111819 !important;
  border-color: #111819 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #85be4b !important;
  border-color: #85be4b !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #5a832f !important;
  border-color: #5a832f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #5a832f !important;
  border-color: #5a832f !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b69661 !important;
  border-color: #b69661 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #84693d !important;
  border-color: #84693d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #84693d !important;
  border-color: #84693d !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #6592e6;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: #2260d2 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #6d0075;
  color: #6d0075;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #1c001e !important;
  background-color: transparent!important;
  border-color: #1c001e !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #6d0075 !important;
  border-color: #6d0075 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #1999d6;
  color: #1999d6;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #106188 !important;
  background-color: transparent!important;
  border-color: #106188 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #1999d6 !important;
  border-color: #1999d6 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #35484c;
  color: #35484c;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #111819 !important;
  background-color: transparent!important;
  border-color: #111819 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #35484c !important;
  border-color: #35484c !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #85be4b;
  color: #85be4b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #5a832f !important;
  background-color: transparent!important;
  border-color: #5a832f !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #85be4b !important;
  border-color: #85be4b !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #b69661;
  color: #b69661;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #84693d !important;
  background-color: transparent!important;
  border-color: #84693d !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b69661 !important;
  border-color: #b69661 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #6d0075 !important;
}
.text-success {
  color: #35484c !important;
}
.text-info {
  color: #1999d6 !important;
}
.text-warning {
  color: #85be4b !important;
}
.text-danger {
  color: #b69661 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #0e000f !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #0b0f10 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #0e587b !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #52782b !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #796138 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #1999d6;
}
.alert-warning {
  background-color: #85be4b;
}
.alert-danger {
  background-color: #b69661;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a6bcc1;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #c3e7f8;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #c4e0a9;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ded0b8;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #ffffff !important;
  background-color: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #6d0075 !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%;
  width: 100%;
  height: auto;
}
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='%236592e6' %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;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sprxh5GNRj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sprxh5GNRj nav.navbar {
  position: fixed;
}
.cid-sprxh5GNRj .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sprxh5GNRj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sprxh5GNRj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sprxh5GNRj .dropdown-item:hover,
.cid-sprxh5GNRj .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sprxh5GNRj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sprxh5GNRj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sprxh5GNRj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sprxh5GNRj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sprxh5GNRj .nav-link {
  position: relative;
}
.cid-sprxh5GNRj .container {
  display: flex;
  margin: auto;
}
.cid-sprxh5GNRj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sprxh5GNRj .dropdown-menu,
.cid-sprxh5GNRj .navbar.opened {
  background: #ffffff !important;
}
.cid-sprxh5GNRj .nav-item:focus,
.cid-sprxh5GNRj .nav-link:focus {
  outline: none;
}
.cid-sprxh5GNRj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sprxh5GNRj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sprxh5GNRj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sprxh5GNRj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sprxh5GNRj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sprxh5GNRj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sprxh5GNRj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sprxh5GNRj .navbar.opened {
  transition: all 0.3s;
}
.cid-sprxh5GNRj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sprxh5GNRj .navbar .navbar-logo img {
  width: auto;
}
.cid-sprxh5GNRj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sprxh5GNRj .navbar.collapsed {
  justify-content: center;
}
.cid-sprxh5GNRj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sprxh5GNRj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sprxh5GNRj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-sprxh5GNRj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sprxh5GNRj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sprxh5GNRj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sprxh5GNRj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sprxh5GNRj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sprxh5GNRj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sprxh5GNRj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sprxh5GNRj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sprxh5GNRj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sprxh5GNRj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sprxh5GNRj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sprxh5GNRj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sprxh5GNRj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sprxh5GNRj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sprxh5GNRj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sprxh5GNRj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sprxh5GNRj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sprxh5GNRj .navbar.navbar-short {
  min-height: 60px;
}
.cid-sprxh5GNRj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sprxh5GNRj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sprxh5GNRj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sprxh5GNRj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sprxh5GNRj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sprxh5GNRj .dropdown-item.active,
.cid-sprxh5GNRj .dropdown-item:active {
  background-color: transparent;
}
.cid-sprxh5GNRj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sprxh5GNRj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sprxh5GNRj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sprxh5GNRj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sprxh5GNRj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sprxh5GNRj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sprxh5GNRj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sprxh5GNRj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sprxh5GNRj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sprxh5GNRj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sprxh5GNRj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sprxh5GNRj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sprxh5GNRj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sprxh5GNRj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sprxh5GNRj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sprxh5GNRj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sprxh5GNRj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sprxh5GNRj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sprxh5GNRj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sprxh5GNRj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sprxh5GNRj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sprxh5GNRj .navbar {
    height: 70px;
  }
  .cid-sprxh5GNRj .navbar.opened {
    height: auto;
  }
  .cid-sprxh5GNRj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2h2VXJtKk {
  background-color: #265a62;
}
.cid-u2h2VXJtKk .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2h2VXJtKk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2h2VXJtKk .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u2h2VXJtKk .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u2h2VXJtKk .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u2h2VXJtKk .mbr-section-title {
  color: #ffffff;
}
.cid-u2h2VXJtKk .mbr-text,
.cid-u2h2VXJtKk .mbr-section-btn {
  color: #ffffff;
}
.cid-uF8SuETaBh {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uF8SuETaBh .mbr-section-subtitle {
  color: #265a62;
}
.cid-uF8Vjydqi9 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uF8Vjydqi9 .mbr-section-subtitle {
  color: #265a62;
}
.cid-uF8Vjydqi9 .mbr-text {
  color: #000000;
}
.cid-vb0tfXCv5D {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vb0tfXCv5D .mbr-section-subtitle {
  color: #265a62;
}
.cid-vb0u6f8w3c {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vb0u6f8w3c .mbr-section-subtitle {
  color: #265a62;
}
.cid-u2m1kvJHC6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u2m1kvJHC6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2m1kvJHC6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2m1kvJHC6 .number-wrap {
  color: #353535;
  text-align: center;
}
.cid-u2m1kvJHC6 .number {
  color: #265a62;
}
.cid-u2m1kvJHC6 .period {
  display: block;
}
.cid-u2m1kvJHC6 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-u2m1kvJHC6 .period {
    font-size: 0.8rem;
  }
}
.cid-u2m1kvJHC6 .btn {
  height: 100%;
  margin: 0;
}
.cid-u2m1kvJHC6 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-u2m1kvJHC6 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-u2m1kvJHC6 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #265a62;
  border: 2px solid #265a62;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-u2m1kvJHC6 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-u2m1kvJHC6 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #265a62;
  color: #ffffff;
}
.cid-u2m1kvJHC6 H3 {
  color: #265a62;
}
.cid-uF8SHgjdJz {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/tlo-1920x300.jpg");
}
.cid-sUXiIh61A7 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u2h5gZyPAN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u2h5gZyPAN .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2h5gZyPAN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2h5gZyPAN .video-wrapper iframe {
  width: 100%;
}
.cid-u2h5gZyPAN .mbr-section-title,
.cid-u2h5gZyPAN .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-u2h5gZyPAN .text-wrapper {
    padding: 2rem;
  }
}
.cid-u2h5gZyPAN .mbr-section-subtitle {
  color: #265a62;
}
.cid-uF8YzDdbqt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFdoohvJeR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFdoohvJeR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFdoohvJeR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFdoohvJeR .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uFdoohvJeR .row {
    flex-direction: column-reverse;
  }
  .cid-uFdoohvJeR .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uFdoohvJeR .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uFdoohvJeR .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-uFdoohvJeR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uFdoohvJeR .card-title {
  color: #265a62;
}
.cid-uFdm7QRyWW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFdm7QRyWW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFdm7QRyWW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFdm7QRyWW .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uFdm7QRyWW .row {
    flex-direction: column-reverse;
  }
  .cid-uFdm7QRyWW .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uFdm7QRyWW .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uFdm7QRyWW .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-uFdm7QRyWW .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uFdm7QRyWW .card-title {
  color: #265a62;
}
.cid-uFdjURKdWm {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uFdjURKdWm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFdjURKdWm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uFdjURKdWm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uFdjURKdWm img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uFdjURKdWm .text-wrapper {
    padding: 2rem;
  }
}
.cid-uFdjURKdWm .mbr-section-title {
  color: #265a62;
}
.cid-vgcX1iGBiM {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/tlo-1920x300.jpg");
}
.cid-vgcVJn8JOH {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vgcVJn8JOH .mbr-section-subtitle {
  color: #85be4b;
}
.cid-vgcVJTjrLE {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vgcVJTjrLE .mbr-section-subtitle {
  color: #85be4b;
}
.cid-vgcWlmPdwV {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vgcWlmPdwV .mbr-section-subtitle {
  color: #85be4b;
}
.cid-vgcXl4ZOgf {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vgcXl4ZOgf .mbr-section-subtitle {
  color: #85be4b;
}
.cid-vgcXs8C1vT {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vgcXs8C1vT .mbr-section-subtitle {
  color: #85be4b;
}
.cid-vgcXyivI6h {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vgcXyivI6h .mbr-section-subtitle {
  color: #85be4b;
}
.cid-vgcXHpT9DJ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vgcXHpT9DJ .mbr-section-subtitle {
  color: #85be4b;
}
.cid-vgcXPlmnO8 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vgcXPlmnO8 .mbr-section-subtitle {
  color: #85be4b;
}
.cid-vgcY2a049Q {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-vgcY2a049Q img,
.cid-vgcY2a049Q .item-img {
  width: 100%;
}
.cid-vgcY2a049Q .item:focus,
.cid-vgcY2a049Q span:focus {
  outline: none;
}
.cid-vgcY2a049Q .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-vgcY2a049Q .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vgcY2a049Q .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vgcY2a049Q .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-vgcY2a049Q .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vgcY2a049Q .mbr-section-title {
  color: #232323;
}
.cid-vb5qGVGRgJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uC17lOSsX8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uC17lOSsX8 img,
.cid-uC17lOSsX8 .item-img {
  width: 100%;
}
.cid-uC17lOSsX8 .item:focus,
.cid-uC17lOSsX8 span:focus {
  outline: none;
}
.cid-uC17lOSsX8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uC17lOSsX8 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uC17lOSsX8 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uC17lOSsX8 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uC17lOSsX8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uC17lOSsX8 .mbr-section-title {
  color: #232323;
}
.cid-u2m5zwzngF {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u2m5zwzngF .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2m5zwzngF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2m5zwzngF .mbr-section-title {
  color: #85be4b;
}
.cid-u2m5zwzngF .mbr-section-subtitle {
  color: #85be4b;
}
.cid-u2m5vPEw8Y {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uznj5cMHxS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uznj5cMHxS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uznj5cMHxS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uznj5cMHxS .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-uznj5cMHxS .panel-group {
  border: none;
}
.cid-uznj5cMHxS .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uznj5cMHxS .panel-body,
.cid-uznj5cMHxS .card-header {
  padding: 1rem 0;
}
.cid-uznj5cMHxS .panel-title-edit {
  color: #000000;
}
.cid-uznj5cMHxS .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sps14MS7Ax {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
.cid-sps14MS7Ax .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sps14MS7Ax .team-card:hover {
  transform: translateY(-10px);
}
.cid-sps14MS7Ax .card-wrap {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sps14MS7Ax .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sps14MS7Ax .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sps14MS7Ax .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sps14MS7Ax .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-sps14MS7Ax .social-row {
  text-align: center;
}
.cid-sps14MS7Ax .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-sps14MS7Ax .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-sps14MS7Ax .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sps14MS7Ax .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sps14MS7Ax .mbr-section-title {
  color: #35484c;
}
.cid-sps14MS7Ax .mbr-section-subtitle {
  color: #35484c;
}
.cid-vb5qUeBpXp {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
.cid-vb5qUeBpXp .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-vb5qUeBpXp .team-card:hover {
  transform: translateY(-10px);
}
.cid-vb5qUeBpXp .card-wrap {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-vb5qUeBpXp .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-vb5qUeBpXp .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-vb5qUeBpXp .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vb5qUeBpXp .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-vb5qUeBpXp .social-row {
  text-align: center;
}
.cid-vb5qUeBpXp .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-vb5qUeBpXp .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-vb5qUeBpXp .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-vb5qUeBpXp .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-vb5qUeBpXp .mbr-section-title {
  color: #35484c;
}
.cid-vb5qUeBpXp .mbr-section-subtitle {
  color: #35484c;
}
.cid-sUYsJVBdLI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sUYsJVBdLI img,
.cid-sUYsJVBdLI .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sUYsJVBdLI .item:focus,
.cid-sUYsJVBdLI span:focus {
  outline: none;
}
.cid-sUYsJVBdLI .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sUYsJVBdLI .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sUYsJVBdLI .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sUYsJVBdLI .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sUYsJVBdLI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sUYsJVBdLI .mbr-section-title {
  color: #232323;
}
.cid-sprzAnrdVb {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-sprzAnrdVb .content {
    text-align: center;
  }
  .cid-sprzAnrdVb .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sprzAnrdVb .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-sprzAnrdVb .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sprzAnrdVb .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-sprzAnrdVb .google-map {
  height: 25rem;
  position: relative;
}
.cid-sprzAnrdVb .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sprzAnrdVb .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sprzAnrdVb .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sprzAnrdVb .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sprzAnrdVb .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sprzAnrdVb .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sprzAnrdVb .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sprzAnrdVb .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sprzAnrdVb .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sprzAnrdVb .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sprzAnrdVb .list {
  list-style-type: none;
  padding: 0;
}
.cid-sps2UOyKYP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sps2UOyKYP nav.navbar {
  position: fixed;
}
.cid-sps2UOyKYP .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sps2UOyKYP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sps2UOyKYP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sps2UOyKYP .dropdown-item:hover,
.cid-sps2UOyKYP .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sps2UOyKYP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sps2UOyKYP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sps2UOyKYP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sps2UOyKYP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sps2UOyKYP .nav-link {
  position: relative;
}
.cid-sps2UOyKYP .container {
  display: flex;
  margin: auto;
}
.cid-sps2UOyKYP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sps2UOyKYP .dropdown-menu,
.cid-sps2UOyKYP .navbar.opened {
  background: #ffffff !important;
}
.cid-sps2UOyKYP .nav-item:focus,
.cid-sps2UOyKYP .nav-link:focus {
  outline: none;
}
.cid-sps2UOyKYP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sps2UOyKYP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sps2UOyKYP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sps2UOyKYP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sps2UOyKYP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sps2UOyKYP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sps2UOyKYP .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sps2UOyKYP .navbar.opened {
  transition: all 0.3s;
}
.cid-sps2UOyKYP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sps2UOyKYP .navbar .navbar-logo img {
  width: auto;
}
.cid-sps2UOyKYP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sps2UOyKYP .navbar.collapsed {
  justify-content: center;
}
.cid-sps2UOyKYP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sps2UOyKYP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sps2UOyKYP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-sps2UOyKYP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sps2UOyKYP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sps2UOyKYP .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sps2UOyKYP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sps2UOyKYP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sps2UOyKYP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sps2UOyKYP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sps2UOyKYP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sps2UOyKYP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sps2UOyKYP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sps2UOyKYP .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sps2UOyKYP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sps2UOyKYP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sps2UOyKYP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sps2UOyKYP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sps2UOyKYP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sps2UOyKYP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sps2UOyKYP .navbar.navbar-short {
  min-height: 60px;
}
.cid-sps2UOyKYP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sps2UOyKYP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sps2UOyKYP .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sps2UOyKYP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sps2UOyKYP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sps2UOyKYP .dropdown-item.active,
.cid-sps2UOyKYP .dropdown-item:active {
  background-color: transparent;
}
.cid-sps2UOyKYP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sps2UOyKYP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sps2UOyKYP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sps2UOyKYP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sps2UOyKYP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sps2UOyKYP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sps2UOyKYP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sps2UOyKYP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sps2UOyKYP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sps2UOyKYP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sps2UOyKYP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sps2UOyKYP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sps2UOyKYP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sps2UOyKYP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sps2UOyKYP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sps2UOyKYP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sps2UOyKYP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sps2UOyKYP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sps2UOyKYP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sps2UOyKYP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sps2UOyKYP .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sps2UOyKYP .navbar {
    height: 70px;
  }
  .cid-sps2UOyKYP .navbar.opened {
    height: auto;
  }
  .cid-sps2UOyKYP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sps2UP8wyB {
  padding-top: 9rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/img014-818x508.jpg");
}
.cid-sps2UP8wyB .mbr-section-title {
  color: #35484c;
  text-align: center;
}
.cid-sps2UP8wyB .mbr-text,
.cid-sps2UP8wyB .mbr-section-btn {
  text-align: center;
}
.cid-sps2UTmQbq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sps2UTmQbq img,
.cid-sps2UTmQbq .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sps2UTmQbq .item:focus,
.cid-sps2UTmQbq span:focus {
  outline: none;
}
.cid-sps2UTmQbq .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sps2UTmQbq .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sps2UTmQbq .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sps2UTmQbq .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sps2UTmQbq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sps2UTmQbq .mbr-section-title {
  color: #232323;
}
.cid-sps4MPmtj3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sps4MPmtj3 img,
.cid-sps4MPmtj3 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sps4MPmtj3 .item:focus,
.cid-sps4MPmtj3 span:focus {
  outline: none;
}
.cid-sps4MPmtj3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sps4MPmtj3 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sps4MPmtj3 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sps4MPmtj3 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sps4MPmtj3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sps4MPmtj3 .mbr-section-title {
  color: #232323;
}
.cid-sps2UVIQLb {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-sps2UVIQLb .content {
    text-align: center;
  }
  .cid-sps2UVIQLb .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sps2UVIQLb .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-sps2UVIQLb .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sps2UVIQLb .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-sps2UVIQLb .google-map {
  height: 25rem;
  position: relative;
}
.cid-sps2UVIQLb .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sps2UVIQLb .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sps2UVIQLb .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sps2UVIQLb .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sps2UVIQLb .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sps2UVIQLb .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sps2UVIQLb .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sps2UVIQLb .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sps2UVIQLb .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sps2UVIQLb .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sps2UVIQLb .list {
  list-style-type: none;
  padding: 0;
}
.cid-sps35bdN1p {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sps35bdN1p nav.navbar {
  position: fixed;
}
.cid-sps35bdN1p .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sps35bdN1p .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sps35bdN1p .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sps35bdN1p .dropdown-item:hover,
.cid-sps35bdN1p .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sps35bdN1p .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sps35bdN1p .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sps35bdN1p .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sps35bdN1p .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sps35bdN1p .nav-link {
  position: relative;
}
.cid-sps35bdN1p .container {
  display: flex;
  margin: auto;
}
.cid-sps35bdN1p .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sps35bdN1p .dropdown-menu,
.cid-sps35bdN1p .navbar.opened {
  background: #ffffff !important;
}
.cid-sps35bdN1p .nav-item:focus,
.cid-sps35bdN1p .nav-link:focus {
  outline: none;
}
.cid-sps35bdN1p .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sps35bdN1p .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sps35bdN1p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sps35bdN1p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sps35bdN1p .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sps35bdN1p .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sps35bdN1p .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sps35bdN1p .navbar.opened {
  transition: all 0.3s;
}
.cid-sps35bdN1p .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sps35bdN1p .navbar .navbar-logo img {
  width: auto;
}
.cid-sps35bdN1p .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sps35bdN1p .navbar.collapsed {
  justify-content: center;
}
.cid-sps35bdN1p .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sps35bdN1p .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sps35bdN1p .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-sps35bdN1p .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sps35bdN1p .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sps35bdN1p .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sps35bdN1p .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sps35bdN1p .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sps35bdN1p .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sps35bdN1p .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sps35bdN1p .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sps35bdN1p .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sps35bdN1p .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sps35bdN1p .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sps35bdN1p .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sps35bdN1p .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sps35bdN1p .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sps35bdN1p .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sps35bdN1p .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sps35bdN1p .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sps35bdN1p .navbar.navbar-short {
  min-height: 60px;
}
.cid-sps35bdN1p .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sps35bdN1p .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sps35bdN1p .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sps35bdN1p .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sps35bdN1p .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sps35bdN1p .dropdown-item.active,
.cid-sps35bdN1p .dropdown-item:active {
  background-color: transparent;
}
.cid-sps35bdN1p .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sps35bdN1p .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sps35bdN1p .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sps35bdN1p .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sps35bdN1p .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sps35bdN1p .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sps35bdN1p ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sps35bdN1p .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sps35bdN1p button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sps35bdN1p button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sps35bdN1p button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sps35bdN1p button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sps35bdN1p button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sps35bdN1p button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sps35bdN1p nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sps35bdN1p nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sps35bdN1p nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sps35bdN1p nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sps35bdN1p .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sps35bdN1p a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sps35bdN1p .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sps35bdN1p .navbar {
    height: 70px;
  }
  .cid-sps35bdN1p .navbar.opened {
    height: auto;
  }
  .cid-sps35bdN1p .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sps35bMLKt {
  background-image: url("../../../assets/images/nauczyciele-prowadzeni-na-rozstrzelanie-01.11.1939-r.-w-fordonie-ipn-by-31-10-strona-159-tabl-nr-5-1024x691.jpg");
}
.cid-sps35bMLKt .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-sps35bMLKt .mbr-text,
.cid-sps35bMLKt .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-sps35bMLKt .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sps88U7OLW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #35484c;
}
.cid-sps88U7OLW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sps88U7OLW .mbr-text {
  color: #ffffff;
}
.cid-sps35dpFqH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sps35dpFqH .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sps35dpFqH .card {
    margin-bottom: 2rem!important;
  }
  .cid-sps35dpFqH .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sps35dpFqH .link-wrap {
    align-items: center;
  }
}
.cid-sps35dpFqH .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sps35dpFqH .card-title,
.cid-sps35dpFqH .card-box {
  color: #35484c;
}
.cid-sps8KCNt5b {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sps8KCNt5b .video-wrapper iframe {
  width: 100%;
}
.cid-sps8KCNt5b .mbr-section-title,
.cid-sps8KCNt5b .mbr-section-subtitle,
.cid-sps8KCNt5b .mbr-text {
  text-align: center;
}
.cid-sps35h9oEY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #bbbbbb;
}
.cid-sps35h9oEY .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sps35h9oEY .team-card:hover {
  transform: translateY(-10px);
}
.cid-sps35h9oEY .card-wrap {
  background: #bbbbbb;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sps35h9oEY .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sps35h9oEY .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sps35h9oEY .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sps35h9oEY .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-sps35h9oEY .social-row {
  text-align: center;
}
.cid-sps35h9oEY .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-sps35h9oEY .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-sps35h9oEY .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sps35h9oEY .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sps35h9oEY .mbr-section-title {
  color: #000000;
}
.cid-sps35h9oEY .mbr-section-subtitle {
  color: #35484c;
}
.cid-sps35iIXMs {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-sps35iIXMs .content {
    text-align: center;
  }
  .cid-sps35iIXMs .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sps35iIXMs .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-sps35iIXMs .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sps35iIXMs .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-sps35iIXMs .google-map {
  height: 25rem;
  position: relative;
}
.cid-sps35iIXMs .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sps35iIXMs .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sps35iIXMs .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sps35iIXMs .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sps35iIXMs .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sps35iIXMs .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sps35iIXMs .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sps35iIXMs .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sps35iIXMs .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sps35iIXMs .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sps35iIXMs .list {
  list-style-type: none;
  padding: 0;
}
.cid-sps9ErFHns {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sps9ErFHns nav.navbar {
  position: fixed;
}
.cid-sps9ErFHns .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sps9ErFHns .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sps9ErFHns .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sps9ErFHns .dropdown-item:hover,
.cid-sps9ErFHns .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sps9ErFHns .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sps9ErFHns .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sps9ErFHns .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sps9ErFHns .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sps9ErFHns .nav-link {
  position: relative;
}
.cid-sps9ErFHns .container {
  display: flex;
  margin: auto;
}
.cid-sps9ErFHns .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sps9ErFHns .dropdown-menu,
.cid-sps9ErFHns .navbar.opened {
  background: #ffffff !important;
}
.cid-sps9ErFHns .nav-item:focus,
.cid-sps9ErFHns .nav-link:focus {
  outline: none;
}
.cid-sps9ErFHns .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sps9ErFHns .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sps9ErFHns .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sps9ErFHns .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sps9ErFHns .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sps9ErFHns .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sps9ErFHns .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sps9ErFHns .navbar.opened {
  transition: all 0.3s;
}
.cid-sps9ErFHns .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sps9ErFHns .navbar .navbar-logo img {
  width: auto;
}
.cid-sps9ErFHns .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sps9ErFHns .navbar.collapsed {
  justify-content: center;
}
.cid-sps9ErFHns .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sps9ErFHns .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sps9ErFHns .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-sps9ErFHns .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sps9ErFHns .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sps9ErFHns .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sps9ErFHns .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sps9ErFHns .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sps9ErFHns .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sps9ErFHns .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sps9ErFHns .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sps9ErFHns .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sps9ErFHns .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sps9ErFHns .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sps9ErFHns .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sps9ErFHns .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sps9ErFHns .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sps9ErFHns .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sps9ErFHns .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sps9ErFHns .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sps9ErFHns .navbar.navbar-short {
  min-height: 60px;
}
.cid-sps9ErFHns .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sps9ErFHns .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sps9ErFHns .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sps9ErFHns .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sps9ErFHns .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sps9ErFHns .dropdown-item.active,
.cid-sps9ErFHns .dropdown-item:active {
  background-color: transparent;
}
.cid-sps9ErFHns .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sps9ErFHns .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sps9ErFHns .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sps9ErFHns .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sps9ErFHns .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sps9ErFHns .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sps9ErFHns ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sps9ErFHns .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sps9ErFHns button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sps9ErFHns button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sps9ErFHns button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sps9ErFHns button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sps9ErFHns button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sps9ErFHns button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sps9ErFHns nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sps9ErFHns nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sps9ErFHns nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sps9ErFHns nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sps9ErFHns .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sps9ErFHns a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sps9ErFHns .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sps9ErFHns .navbar {
    height: 70px;
  }
  .cid-sps9ErFHns .navbar.opened {
    height: auto;
  }
  .cid-sps9ErFHns .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sps9EspA2W {
  padding-top: 9rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/56598195-308428859844962-8881505443390685184-o-2000x1333.jpg");
}
.cid-sps9EspA2W .mbr-section-title {
  color: #85be4b;
  text-align: left;
}
.cid-sps9EspA2W .mbr-text,
.cid-sps9EspA2W .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-spsblm6L79 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-spsblm6L79 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-spsblm6L79 form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-spsblm6L79 form.mbr-form {
    padding: 3rem 2rem;
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-spsblm6L79 form.mbr-form {
    padding: 1rem;
  }
}
.cid-spsblm6L79 form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-spsblm6L79 form.mbr-form .mbr-section-btn .btn {
  width: 100%;
}
.cid-sps9EsXgW3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sps9EsXgW3 img,
.cid-sps9EsXgW3 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sps9EsXgW3 .item:focus,
.cid-sps9EsXgW3 span:focus {
  outline: none;
}
.cid-sps9EsXgW3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sps9EsXgW3 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sps9EsXgW3 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sps9EsXgW3 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sps9EsXgW3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sps9EsXgW3 .mbr-section-title {
  color: #232323;
}
.cid-sps9EtEEZm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sps9EtEEZm img,
.cid-sps9EtEEZm .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sps9EtEEZm .item:focus,
.cid-sps9EtEEZm span:focus {
  outline: none;
}
.cid-sps9EtEEZm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sps9EtEEZm .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sps9EtEEZm .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sps9EtEEZm .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sps9EtEEZm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sps9EtEEZm .mbr-section-title {
  color: #232323;
}
.cid-sps9EuT4Us {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fafafa;
}
.cid-sps9EuT4Us .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sps9EuT4Us .team-card:hover {
  transform: translateY(-10px);
}
.cid-sps9EuT4Us .card-wrap {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sps9EuT4Us .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sps9EuT4Us .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sps9EuT4Us .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sps9EuT4Us .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-sps9EuT4Us .social-row {
  text-align: center;
}
.cid-sps9EuT4Us .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-sps9EuT4Us .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-sps9EuT4Us .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sps9EuT4Us .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sps9EuT4Us .mbr-section-title {
  color: #35484c;
}
.cid-sps9EuT4Us .mbr-section-subtitle {
  color: #35484c;
}
.cid-sps9Exk8CN {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-sps9Exk8CN .content {
    text-align: center;
  }
  .cid-sps9Exk8CN .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sps9Exk8CN .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-sps9Exk8CN .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sps9Exk8CN .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-sps9Exk8CN .google-map {
  height: 25rem;
  position: relative;
}
.cid-sps9Exk8CN .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sps9Exk8CN .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sps9Exk8CN .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sps9Exk8CN .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sps9Exk8CN .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sps9Exk8CN .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sps9Exk8CN .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sps9Exk8CN .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sps9Exk8CN .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sps9Exk8CN .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sps9Exk8CN .list {
  list-style-type: none;
  padding: 0;
}
.cid-sps9ErFHns {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sps9ErFHns nav.navbar {
  position: fixed;
}
.cid-sps9ErFHns .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sps9ErFHns .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sps9ErFHns .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sps9ErFHns .dropdown-item:hover,
.cid-sps9ErFHns .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sps9ErFHns .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sps9ErFHns .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sps9ErFHns .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sps9ErFHns .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sps9ErFHns .nav-link {
  position: relative;
}
.cid-sps9ErFHns .container {
  display: flex;
  margin: auto;
}
.cid-sps9ErFHns .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sps9ErFHns .dropdown-menu,
.cid-sps9ErFHns .navbar.opened {
  background: #ffffff !important;
}
.cid-sps9ErFHns .nav-item:focus,
.cid-sps9ErFHns .nav-link:focus {
  outline: none;
}
.cid-sps9ErFHns .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sps9ErFHns .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sps9ErFHns .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sps9ErFHns .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sps9ErFHns .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sps9ErFHns .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sps9ErFHns .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sps9ErFHns .navbar.opened {
  transition: all 0.3s;
}
.cid-sps9ErFHns .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sps9ErFHns .navbar .navbar-logo img {
  width: auto;
}
.cid-sps9ErFHns .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sps9ErFHns .navbar.collapsed {
  justify-content: center;
}
.cid-sps9ErFHns .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sps9ErFHns .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sps9ErFHns .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-sps9ErFHns .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sps9ErFHns .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sps9ErFHns .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sps9ErFHns .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sps9ErFHns .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sps9ErFHns .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sps9ErFHns .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sps9ErFHns .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sps9ErFHns .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sps9ErFHns .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sps9ErFHns .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sps9ErFHns .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sps9ErFHns .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sps9ErFHns .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sps9ErFHns .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sps9ErFHns .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sps9ErFHns .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sps9ErFHns .navbar.navbar-short {
  min-height: 60px;
}
.cid-sps9ErFHns .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sps9ErFHns .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sps9ErFHns .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sps9ErFHns .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sps9ErFHns .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sps9ErFHns .dropdown-item.active,
.cid-sps9ErFHns .dropdown-item:active {
  background-color: transparent;
}
.cid-sps9ErFHns .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sps9ErFHns .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sps9ErFHns .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sps9ErFHns .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sps9ErFHns .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sps9ErFHns .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sps9ErFHns ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sps9ErFHns .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sps9ErFHns button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sps9ErFHns button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sps9ErFHns button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sps9ErFHns button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sps9ErFHns button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sps9ErFHns button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sps9ErFHns nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sps9ErFHns nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sps9ErFHns nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sps9ErFHns nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sps9ErFHns .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sps9ErFHns a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sps9ErFHns .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sps9ErFHns .navbar {
    height: 70px;
  }
  .cid-sps9ErFHns .navbar.opened {
    height: auto;
  }
  .cid-sps9ErFHns .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2hwUeZFIW {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #265a62;
}
.cid-u2hwUeZFIW .mbr-section-title {
  color: #ffffff;
}
.cid-u2hwUeZFIW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uznym5uEyv {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-vb1i4axBPR {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vb1i4axBPR .mbr-section-title {
  color: #35484c;
}
.cid-uznyyvPVw5 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uznyyvPVw5 .mbr-section-title {
  color: #35484c;
}
.cid-u2hAOfzILi {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-u2hAOfzILi .mbr-section-title {
  color: #35484c;
}
.cid-tuyEEb3evS {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tuyEEb3evS .mbr-section-title {
  color: #35484c;
}
.cid-spsfn3awQs {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-spsfn3awQs .mbr-section-title {
  color: #35484c;
}
.cid-u2hzsKMyDM {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-u2hzsKMyDM .mbr-section-title {
  color: #35484c;
}
.cid-sPc5mwYrE6 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sPc5mwYrE6 .mbr-section-title {
  color: #35484c;
}
.cid-spsfd2rJxU {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-spsfd2rJxU .mbr-section-title {
  color: #35484c;
}
.cid-spsf72JdzL {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-spsf72JdzL .mbr-section-title {
  color: #35484c;
}
.cid-spsf1f6lVs {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-spsf1f6lVs .mbr-section-title {
  color: #35484c;
}
.cid-spseSBI9Xw {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-spseSBI9Xw .mbr-section-title {
  color: #35484c;
}
.cid-spseMfhcwo {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-spseMfhcwo .mbr-section-title {
  color: #35484c;
}
.cid-spseGkQBd7 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-spseGkQBd7 .mbr-section-title {
  color: #35484c;
}
.cid-spseyfAHdp {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-spseyfAHdp .mbr-section-title {
  color: #35484c;
}
.cid-spseqeWcbr {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-spseqeWcbr .mbr-section-title {
  color: #35484c;
}
.cid-spseh5AX1k {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-spseh5AX1k .mbr-section-title {
  color: #35484c;
}
.cid-spse5eDpbA {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-spse5eDpbA .mbr-section-title {
  color: #35484c;
}
.cid-u2m3UreW7j {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u2m3UreW7j img,
.cid-u2m3UreW7j .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u2m3UreW7j .item:focus,
.cid-u2m3UreW7j span:focus {
  outline: none;
}
.cid-u2m3UreW7j .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u2m3UreW7j .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u2m3UreW7j .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2m3UreW7j .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u2m3UreW7j .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u2m3UreW7j .mbr-section-title {
  color: #232323;
}
.cid-sps9Exk8CN {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-sps9Exk8CN .content {
    text-align: center;
  }
  .cid-sps9Exk8CN .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sps9Exk8CN .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-sps9Exk8CN .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sps9Exk8CN .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-sps9Exk8CN .google-map {
  height: 25rem;
  position: relative;
}
.cid-sps9Exk8CN .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sps9Exk8CN .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sps9Exk8CN .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sps9Exk8CN .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sps9Exk8CN .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sps9Exk8CN .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sps9Exk8CN .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sps9Exk8CN .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sps9Exk8CN .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sps9Exk8CN .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sps9Exk8CN .list {
  list-style-type: none;
  padding: 0;
}
.cid-spslhaO0NG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-spslhaO0NG nav.navbar {
  position: fixed;
}
.cid-spslhaO0NG .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-spslhaO0NG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-spslhaO0NG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-spslhaO0NG .dropdown-item:hover,
.cid-spslhaO0NG .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-spslhaO0NG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-spslhaO0NG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-spslhaO0NG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-spslhaO0NG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-spslhaO0NG .nav-link {
  position: relative;
}
.cid-spslhaO0NG .container {
  display: flex;
  margin: auto;
}
.cid-spslhaO0NG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-spslhaO0NG .dropdown-menu,
.cid-spslhaO0NG .navbar.opened {
  background: #ffffff !important;
}
.cid-spslhaO0NG .nav-item:focus,
.cid-spslhaO0NG .nav-link:focus {
  outline: none;
}
.cid-spslhaO0NG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-spslhaO0NG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-spslhaO0NG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-spslhaO0NG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-spslhaO0NG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-spslhaO0NG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-spslhaO0NG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-spslhaO0NG .navbar.opened {
  transition: all 0.3s;
}
.cid-spslhaO0NG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-spslhaO0NG .navbar .navbar-logo img {
  width: auto;
}
.cid-spslhaO0NG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-spslhaO0NG .navbar.collapsed {
  justify-content: center;
}
.cid-spslhaO0NG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-spslhaO0NG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-spslhaO0NG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-spslhaO0NG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-spslhaO0NG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-spslhaO0NG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-spslhaO0NG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-spslhaO0NG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-spslhaO0NG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-spslhaO0NG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-spslhaO0NG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-spslhaO0NG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-spslhaO0NG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-spslhaO0NG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-spslhaO0NG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-spslhaO0NG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-spslhaO0NG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-spslhaO0NG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-spslhaO0NG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-spslhaO0NG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-spslhaO0NG .navbar.navbar-short {
  min-height: 60px;
}
.cid-spslhaO0NG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-spslhaO0NG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-spslhaO0NG .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-spslhaO0NG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-spslhaO0NG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-spslhaO0NG .dropdown-item.active,
.cid-spslhaO0NG .dropdown-item:active {
  background-color: transparent;
}
.cid-spslhaO0NG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-spslhaO0NG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-spslhaO0NG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-spslhaO0NG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-spslhaO0NG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-spslhaO0NG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-spslhaO0NG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-spslhaO0NG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-spslhaO0NG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-spslhaO0NG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-spslhaO0NG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-spslhaO0NG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-spslhaO0NG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-spslhaO0NG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-spslhaO0NG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-spslhaO0NG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-spslhaO0NG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-spslhaO0NG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-spslhaO0NG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-spslhaO0NG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-spslhaO0NG .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-spslhaO0NG .navbar {
    height: 70px;
  }
  .cid-spslhaO0NG .navbar.opened {
    height: auto;
  }
  .cid-spslhaO0NG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-spslhbvR2I {
  padding-top: 9rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-spslhbvR2I .mbr-section-title {
  color: #35484c;
  text-align: center;
}
.cid-spslhbvR2I .mbr-text,
.cid-spslhbvR2I .mbr-section-btn {
  text-align: center;
}
.cid-u2m5nct38p {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fafafa;
}
.cid-u2m5nct38p .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-u2m5nct38p .team-card:hover {
  transform: translateY(-10px);
}
.cid-u2m5nct38p .card-wrap {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-u2m5nct38p .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-u2m5nct38p .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-u2m5nct38p .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u2m5nct38p .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-u2m5nct38p .social-row {
  text-align: center;
}
.cid-u2m5nct38p .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-u2m5nct38p .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-u2m5nct38p .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-u2m5nct38p .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-u2m5nct38p .mbr-section-title {
  color: #35484c;
}
.cid-u2m5nct38p .mbr-section-subtitle {
  color: #35484c;
}
.cid-tuyFwuMnMh {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tuyFwuMnMh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuyFwuMnMh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ssEZNw7BGd {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ssEZNw7BGd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ssEZNw7BGd .row {
  flex-direction: row-reverse;
}
.cid-ssEZNw7BGd img {
  width: 100%;
}
.cid-spslhdxYyT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fafafa;
}
.cid-spslhdxYyT .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-spslhdxYyT .team-card:hover {
  transform: translateY(-10px);
}
.cid-spslhdxYyT .card-wrap {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-spslhdxYyT .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-spslhdxYyT .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-spslhdxYyT .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-spslhdxYyT .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-spslhdxYyT .social-row {
  text-align: center;
}
.cid-spslhdxYyT .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-spslhdxYyT .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-spslhdxYyT .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-spslhdxYyT .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-spslhdxYyT .mbr-section-title {
  color: #35484c;
}
.cid-spslhdxYyT .mbr-section-subtitle {
  color: #35484c;
}
.cid-spslheCWge {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-spslheCWge .content {
    text-align: center;
  }
  .cid-spslheCWge .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-spslheCWge .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-spslheCWge .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-spslheCWge .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-spslheCWge .google-map {
  height: 25rem;
  position: relative;
}
.cid-spslheCWge .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-spslheCWge .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-spslheCWge .google-map[data-state] {
  background: #e9e5dc;
}
.cid-spslheCWge .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-spslheCWge .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spslheCWge .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-spslheCWge .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-spslheCWge .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-spslheCWge .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-spslheCWge .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-spslheCWge .list {
  list-style-type: none;
  padding: 0;
}
.cid-sUXjLmMIT8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sUXjLmMIT8 nav.navbar {
  position: fixed;
}
.cid-sUXjLmMIT8 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sUXjLmMIT8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sUXjLmMIT8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sUXjLmMIT8 .dropdown-item:hover,
.cid-sUXjLmMIT8 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sUXjLmMIT8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sUXjLmMIT8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sUXjLmMIT8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sUXjLmMIT8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sUXjLmMIT8 .nav-link {
  position: relative;
}
.cid-sUXjLmMIT8 .container {
  display: flex;
  margin: auto;
}
.cid-sUXjLmMIT8 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sUXjLmMIT8 .dropdown-menu,
.cid-sUXjLmMIT8 .navbar.opened {
  background: #ffffff !important;
}
.cid-sUXjLmMIT8 .nav-item:focus,
.cid-sUXjLmMIT8 .nav-link:focus {
  outline: none;
}
.cid-sUXjLmMIT8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sUXjLmMIT8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sUXjLmMIT8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sUXjLmMIT8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sUXjLmMIT8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sUXjLmMIT8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sUXjLmMIT8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sUXjLmMIT8 .navbar.opened {
  transition: all 0.3s;
}
.cid-sUXjLmMIT8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sUXjLmMIT8 .navbar .navbar-logo img {
  width: auto;
}
.cid-sUXjLmMIT8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sUXjLmMIT8 .navbar.collapsed {
  justify-content: center;
}
.cid-sUXjLmMIT8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sUXjLmMIT8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sUXjLmMIT8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-sUXjLmMIT8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sUXjLmMIT8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sUXjLmMIT8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sUXjLmMIT8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sUXjLmMIT8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sUXjLmMIT8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sUXjLmMIT8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sUXjLmMIT8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sUXjLmMIT8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sUXjLmMIT8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sUXjLmMIT8 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sUXjLmMIT8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sUXjLmMIT8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sUXjLmMIT8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sUXjLmMIT8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sUXjLmMIT8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sUXjLmMIT8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sUXjLmMIT8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sUXjLmMIT8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sUXjLmMIT8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sUXjLmMIT8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sUXjLmMIT8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sUXjLmMIT8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sUXjLmMIT8 .dropdown-item.active,
.cid-sUXjLmMIT8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sUXjLmMIT8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sUXjLmMIT8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sUXjLmMIT8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sUXjLmMIT8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sUXjLmMIT8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sUXjLmMIT8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sUXjLmMIT8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sUXjLmMIT8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sUXjLmMIT8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sUXjLmMIT8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sUXjLmMIT8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sUXjLmMIT8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sUXjLmMIT8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sUXjLmMIT8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sUXjLmMIT8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sUXjLmMIT8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sUXjLmMIT8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sUXjLmMIT8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sUXjLmMIT8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sUXjLmMIT8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sUXjLmMIT8 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sUXjLmMIT8 .navbar {
    height: 70px;
  }
  .cid-sUXjLmMIT8 .navbar.opened {
    height: auto;
  }
  .cid-sUXjLmMIT8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sUXjLnlrCN {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #6b136c;
}
.cid-sUXjLnlrCN .mbr-text,
.cid-sUXjLnlrCN .mbr-section-btn {
  color: #232323;
}
.cid-sUXjLnlrCN .card-title,
.cid-sUXjLnlrCN .card-box {
  color: #ffffff;
}
.cid-sUXjLnlrCN .mbr-text,
.cid-sUXjLnlrCN .link-wrap {
  color: #ffffff;
}
.cid-sUXjLnlrCN .card-box .mbr-text,
.cid-sUXjLnlrCN .mbr-section-btn {
  color: #ffffff;
}
.cid-sUXjLnIETa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sUXjLnVrWY {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sUXjLnVrWY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sUXjLnVrWY img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sUXjLnVrWY .text-wrapper {
    padding: 2rem;
  }
}
.cid-sUXjLnVrWY .mbr-section-title {
  color: #35484c;
}
.cid-sUXjLoYulx {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sUXjLoYulx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sUXjLoYulx .row {
  flex-direction: row-reverse;
}
.cid-sUXjLoYulx img {
  width: 100%;
}
.cid-vghhen3QE3 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vghgEpiSRZ {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-vghgEpiSRZ img,
.cid-vghgEpiSRZ .item-img {
  width: 100%;
}
.cid-vghgEpiSRZ .item:focus,
.cid-vghgEpiSRZ span:focus {
  outline: none;
}
.cid-vghgEpiSRZ .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-vghgEpiSRZ .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vghgEpiSRZ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vghgEpiSRZ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-vghgEpiSRZ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vghgEpiSRZ .mbr-section-title {
  color: #232323;
}
.cid-sUXjLrumPv {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-sUXjLrumPv .content {
    text-align: center;
  }
  .cid-sUXjLrumPv .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sUXjLrumPv .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-sUXjLrumPv .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sUXjLrumPv .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-sUXjLrumPv .google-map {
  height: 25rem;
  position: relative;
}
.cid-sUXjLrumPv .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sUXjLrumPv .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sUXjLrumPv .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sUXjLrumPv .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sUXjLrumPv .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sUXjLrumPv .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sUXjLrumPv .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sUXjLrumPv .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sUXjLrumPv .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sUXjLrumPv .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sUXjLrumPv .list {
  list-style-type: none;
  padding: 0;
}
.cid-u1OkK19vgo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u1OkK19vgo nav.navbar {
  position: fixed;
}
.cid-u1OkK19vgo .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u1OkK19vgo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u1OkK19vgo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u1OkK19vgo .dropdown-item:hover,
.cid-u1OkK19vgo .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u1OkK19vgo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u1OkK19vgo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u1OkK19vgo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u1OkK19vgo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u1OkK19vgo .nav-link {
  position: relative;
}
.cid-u1OkK19vgo .container {
  display: flex;
  margin: auto;
}
.cid-u1OkK19vgo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u1OkK19vgo .dropdown-menu,
.cid-u1OkK19vgo .navbar.opened {
  background: #ffffff !important;
}
.cid-u1OkK19vgo .nav-item:focus,
.cid-u1OkK19vgo .nav-link:focus {
  outline: none;
}
.cid-u1OkK19vgo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u1OkK19vgo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u1OkK19vgo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u1OkK19vgo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u1OkK19vgo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u1OkK19vgo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u1OkK19vgo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u1OkK19vgo .navbar.opened {
  transition: all 0.3s;
}
.cid-u1OkK19vgo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u1OkK19vgo .navbar .navbar-logo img {
  width: auto;
}
.cid-u1OkK19vgo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u1OkK19vgo .navbar.collapsed {
  justify-content: center;
}
.cid-u1OkK19vgo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u1OkK19vgo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u1OkK19vgo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-u1OkK19vgo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u1OkK19vgo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u1OkK19vgo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u1OkK19vgo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u1OkK19vgo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u1OkK19vgo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u1OkK19vgo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u1OkK19vgo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u1OkK19vgo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u1OkK19vgo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u1OkK19vgo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u1OkK19vgo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u1OkK19vgo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u1OkK19vgo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u1OkK19vgo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u1OkK19vgo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u1OkK19vgo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u1OkK19vgo .navbar.navbar-short {
  min-height: 60px;
}
.cid-u1OkK19vgo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u1OkK19vgo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u1OkK19vgo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u1OkK19vgo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u1OkK19vgo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u1OkK19vgo .dropdown-item.active,
.cid-u1OkK19vgo .dropdown-item:active {
  background-color: transparent;
}
.cid-u1OkK19vgo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u1OkK19vgo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u1OkK19vgo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u1OkK19vgo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u1OkK19vgo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u1OkK19vgo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u1OkK19vgo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u1OkK19vgo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u1OkK19vgo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u1OkK19vgo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u1OkK19vgo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u1OkK19vgo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1OkK19vgo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1OkK19vgo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u1OkK19vgo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1OkK19vgo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u1OkK19vgo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u1OkK19vgo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1OkK19vgo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u1OkK19vgo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u1OkK19vgo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u1OkK19vgo .navbar {
    height: 70px;
  }
  .cid-u1OkK19vgo .navbar.opened {
    height: auto;
  }
  .cid-u1OkK19vgo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u1OkK1Dhfy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/28-bs-foto-104-start-1920x1277.jpg");
}
.cid-u1OkK1Dhfy .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1OkK1Dhfy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1OkK1Dhfy .mbr-text,
.cid-u1OkK1Dhfy .mbr-section-btn {
  color: #232323;
}
.cid-u1OkK1Dhfy .card-title,
.cid-u1OkK1Dhfy .card-box {
  color: #ffffff;
}
.cid-u1OkK1Dhfy .mbr-text,
.cid-u1OkK1Dhfy .link-wrap {
  color: #ffffff;
}
.cid-u1OkK1Dhfy .card-box .mbr-text,
.cid-u1OkK1Dhfy .mbr-section-btn {
  color: #ffffff;
}
.cid-vb5ql8Ga42 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u1OkK1V6EJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u1OkK1V6EJ .mbr-section-subtitle {
  text-align: center;
}
.cid-u1OkK1V6EJ .mbr-text {
  text-align: center;
}
.cid-u2hN31AqXf {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u2hN31AqXf img,
.cid-u2hN31AqXf .item-img {
  width: 100%;
}
.cid-u2hN31AqXf .item:focus,
.cid-u2hN31AqXf span:focus {
  outline: none;
}
.cid-u2hN31AqXf .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-u2hN31AqXf .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u2hN31AqXf .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2hN31AqXf .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u2hN31AqXf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u2hN31AqXf .mbr-section-title {
  color: #232323;
}
.cid-u2hNhVQjrw {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-u1OkK3skdR {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-u1OkK3skdR .content {
    text-align: center;
  }
  .cid-u1OkK3skdR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u1OkK3skdR .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-u1OkK3skdR .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u1OkK3skdR .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-u1OkK3skdR .google-map {
  height: 25rem;
  position: relative;
}
.cid-u1OkK3skdR .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u1OkK3skdR .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u1OkK3skdR .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u1OkK3skdR .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u1OkK3skdR .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u1OkK3skdR .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u1OkK3skdR .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u1OkK3skdR .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u1OkK3skdR .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u1OkK3skdR .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u1OkK3skdR .list {
  list-style-type: none;
  padding: 0;
}
.cid-u2hOwUQzk6 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2hOwUQzk6 nav.navbar {
  position: fixed;
}
.cid-u2hOwUQzk6 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2hOwUQzk6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2hOwUQzk6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2hOwUQzk6 .dropdown-item:hover,
.cid-u2hOwUQzk6 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u2hOwUQzk6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2hOwUQzk6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2hOwUQzk6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2hOwUQzk6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2hOwUQzk6 .nav-link {
  position: relative;
}
.cid-u2hOwUQzk6 .container {
  display: flex;
  margin: auto;
}
.cid-u2hOwUQzk6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2hOwUQzk6 .dropdown-menu,
.cid-u2hOwUQzk6 .navbar.opened {
  background: #ffffff !important;
}
.cid-u2hOwUQzk6 .nav-item:focus,
.cid-u2hOwUQzk6 .nav-link:focus {
  outline: none;
}
.cid-u2hOwUQzk6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2hOwUQzk6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2hOwUQzk6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2hOwUQzk6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2hOwUQzk6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2hOwUQzk6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2hOwUQzk6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u2hOwUQzk6 .navbar.opened {
  transition: all 0.3s;
}
.cid-u2hOwUQzk6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2hOwUQzk6 .navbar .navbar-logo img {
  width: auto;
}
.cid-u2hOwUQzk6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2hOwUQzk6 .navbar.collapsed {
  justify-content: center;
}
.cid-u2hOwUQzk6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2hOwUQzk6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2hOwUQzk6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-u2hOwUQzk6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2hOwUQzk6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2hOwUQzk6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u2hOwUQzk6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2hOwUQzk6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2hOwUQzk6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2hOwUQzk6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2hOwUQzk6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2hOwUQzk6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2hOwUQzk6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2hOwUQzk6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u2hOwUQzk6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2hOwUQzk6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2hOwUQzk6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2hOwUQzk6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2hOwUQzk6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2hOwUQzk6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u2hOwUQzk6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u2hOwUQzk6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2hOwUQzk6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2hOwUQzk6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u2hOwUQzk6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2hOwUQzk6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2hOwUQzk6 .dropdown-item.active,
.cid-u2hOwUQzk6 .dropdown-item:active {
  background-color: transparent;
}
.cid-u2hOwUQzk6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2hOwUQzk6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2hOwUQzk6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2hOwUQzk6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u2hOwUQzk6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2hOwUQzk6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2hOwUQzk6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2hOwUQzk6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2hOwUQzk6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2hOwUQzk6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u2hOwUQzk6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2hOwUQzk6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2hOwUQzk6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2hOwUQzk6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2hOwUQzk6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2hOwUQzk6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2hOwUQzk6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2hOwUQzk6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2hOwUQzk6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2hOwUQzk6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2hOwUQzk6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u2hOwUQzk6 .navbar {
    height: 70px;
  }
  .cid-u2hOwUQzk6 .navbar.opened {
    height: auto;
  }
  .cid-u2hOwUQzk6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2hOwVetqz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/29-bs-osir-47-start-1920x1275.jpg");
}
.cid-u2hOwVetqz .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2hOwVetqz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2hOwVetqz .mbr-text,
.cid-u2hOwVetqz .mbr-section-btn {
  color: #232323;
}
.cid-u2hOwVetqz .card-title,
.cid-u2hOwVetqz .card-box {
  color: #ffffff;
}
.cid-u2hOwVetqz .mbr-text,
.cid-u2hOwVetqz .link-wrap {
  color: #ffffff;
}
.cid-u2hOwVetqz .card-box .mbr-text,
.cid-u2hOwVetqz .mbr-section-btn {
  color: #ffffff;
}
.cid-vb5qezDQq2 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u2hOwVDoYA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u2hOwVDoYA .mbr-section-subtitle {
  text-align: center;
}
.cid-u2hOwVDoYA .mbr-text {
  text-align: center;
}
.cid-u2hP1yZ01L {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-u2hP1yZ01L img,
.cid-u2hP1yZ01L .item-img {
  width: 100%;
}
.cid-u2hP1yZ01L .item:focus,
.cid-u2hP1yZ01L span:focus {
  outline: none;
}
.cid-u2hP1yZ01L .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-u2hP1yZ01L .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u2hP1yZ01L .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2hP1yZ01L .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u2hP1yZ01L .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u2hP1yZ01L .mbr-section-title {
  color: #232323;
}
.cid-u2hOwWKA0j {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-u2hOwWS5TS {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-u2hOwWS5TS .content {
    text-align: center;
  }
  .cid-u2hOwWS5TS .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u2hOwWS5TS .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-u2hOwWS5TS .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u2hOwWS5TS .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-u2hOwWS5TS .google-map {
  height: 25rem;
  position: relative;
}
.cid-u2hOwWS5TS .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u2hOwWS5TS .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u2hOwWS5TS .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u2hOwWS5TS .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u2hOwWS5TS .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2hOwWS5TS .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u2hOwWS5TS .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u2hOwWS5TS .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u2hOwWS5TS .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u2hOwWS5TS .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2hOwWS5TS .list {
  list-style-type: none;
  padding: 0;
}
.cid-u2hPz3DRuS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2hPz3DRuS nav.navbar {
  position: fixed;
}
.cid-u2hPz3DRuS .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2hPz3DRuS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2hPz3DRuS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2hPz3DRuS .dropdown-item:hover,
.cid-u2hPz3DRuS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u2hPz3DRuS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2hPz3DRuS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2hPz3DRuS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2hPz3DRuS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2hPz3DRuS .nav-link {
  position: relative;
}
.cid-u2hPz3DRuS .container {
  display: flex;
  margin: auto;
}
.cid-u2hPz3DRuS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2hPz3DRuS .dropdown-menu,
.cid-u2hPz3DRuS .navbar.opened {
  background: #ffffff !important;
}
.cid-u2hPz3DRuS .nav-item:focus,
.cid-u2hPz3DRuS .nav-link:focus {
  outline: none;
}
.cid-u2hPz3DRuS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2hPz3DRuS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2hPz3DRuS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2hPz3DRuS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2hPz3DRuS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2hPz3DRuS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2hPz3DRuS .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u2hPz3DRuS .navbar.opened {
  transition: all 0.3s;
}
.cid-u2hPz3DRuS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2hPz3DRuS .navbar .navbar-logo img {
  width: auto;
}
.cid-u2hPz3DRuS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2hPz3DRuS .navbar.collapsed {
  justify-content: center;
}
.cid-u2hPz3DRuS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2hPz3DRuS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2hPz3DRuS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-u2hPz3DRuS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2hPz3DRuS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2hPz3DRuS .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u2hPz3DRuS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2hPz3DRuS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2hPz3DRuS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2hPz3DRuS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2hPz3DRuS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2hPz3DRuS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2hPz3DRuS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2hPz3DRuS .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u2hPz3DRuS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2hPz3DRuS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2hPz3DRuS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2hPz3DRuS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2hPz3DRuS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2hPz3DRuS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u2hPz3DRuS .navbar.navbar-short {
  min-height: 60px;
}
.cid-u2hPz3DRuS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2hPz3DRuS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2hPz3DRuS .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u2hPz3DRuS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2hPz3DRuS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2hPz3DRuS .dropdown-item.active,
.cid-u2hPz3DRuS .dropdown-item:active {
  background-color: transparent;
}
.cid-u2hPz3DRuS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2hPz3DRuS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2hPz3DRuS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2hPz3DRuS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u2hPz3DRuS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2hPz3DRuS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2hPz3DRuS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2hPz3DRuS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2hPz3DRuS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2hPz3DRuS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u2hPz3DRuS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2hPz3DRuS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2hPz3DRuS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2hPz3DRuS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2hPz3DRuS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2hPz3DRuS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2hPz3DRuS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2hPz3DRuS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2hPz3DRuS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2hPz3DRuS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2hPz3DRuS .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u2hPz3DRuS .navbar {
    height: 70px;
  }
  .cid-u2hPz3DRuS .navbar.opened {
    height: auto;
  }
  .cid-u2hPz3DRuS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2hPz4fdxS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/30-bs-osir-26-start-1-1920x1277.jpg");
}
.cid-u2hPz4fdxS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2hPz4fdxS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2hPz4fdxS .mbr-text,
.cid-u2hPz4fdxS .mbr-section-btn {
  color: #232323;
}
.cid-u2hPz4fdxS .card-title,
.cid-u2hPz4fdxS .card-box {
  color: #ffffff;
}
.cid-u2hPz4fdxS .mbr-text,
.cid-u2hPz4fdxS .link-wrap {
  color: #ffffff;
}
.cid-u2hPz4fdxS .card-box .mbr-text,
.cid-u2hPz4fdxS .mbr-section-btn {
  color: #ffffff;
}
.cid-vb5q9W0KOc {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u2hPz4Mq0k {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u2hPz4Mq0k .mbr-section-subtitle {
  text-align: center;
}
.cid-u2hPz4Mq0k .mbr-text {
  text-align: center;
}
.cid-u2hQckyqjL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u2hQckyqjL img,
.cid-u2hQckyqjL .item-img {
  width: 100%;
}
.cid-u2hQckyqjL .item:focus,
.cid-u2hQckyqjL span:focus {
  outline: none;
}
.cid-u2hQckyqjL .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-u2hQckyqjL .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u2hQckyqjL .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2hQckyqjL .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u2hQckyqjL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u2hQckyqjL .mbr-section-title {
  color: #232323;
}
.cid-u2hPz6g6hP {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-u2hPz6svkF {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-u2hPz6svkF .content {
    text-align: center;
  }
  .cid-u2hPz6svkF .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u2hPz6svkF .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-u2hPz6svkF .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u2hPz6svkF .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-u2hPz6svkF .google-map {
  height: 25rem;
  position: relative;
}
.cid-u2hPz6svkF .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u2hPz6svkF .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u2hPz6svkF .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u2hPz6svkF .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u2hPz6svkF .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2hPz6svkF .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u2hPz6svkF .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u2hPz6svkF .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u2hPz6svkF .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u2hPz6svkF .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2hPz6svkF .list {
  list-style-type: none;
  padding: 0;
}
.cid-u2hQQN2CgR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2hQQN2CgR nav.navbar {
  position: fixed;
}
.cid-u2hQQN2CgR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2hQQN2CgR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2hQQN2CgR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2hQQN2CgR .dropdown-item:hover,
.cid-u2hQQN2CgR .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u2hQQN2CgR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2hQQN2CgR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2hQQN2CgR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2hQQN2CgR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2hQQN2CgR .nav-link {
  position: relative;
}
.cid-u2hQQN2CgR .container {
  display: flex;
  margin: auto;
}
.cid-u2hQQN2CgR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2hQQN2CgR .dropdown-menu,
.cid-u2hQQN2CgR .navbar.opened {
  background: #ffffff !important;
}
.cid-u2hQQN2CgR .nav-item:focus,
.cid-u2hQQN2CgR .nav-link:focus {
  outline: none;
}
.cid-u2hQQN2CgR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2hQQN2CgR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2hQQN2CgR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2hQQN2CgR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2hQQN2CgR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2hQQN2CgR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2hQQN2CgR .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u2hQQN2CgR .navbar.opened {
  transition: all 0.3s;
}
.cid-u2hQQN2CgR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2hQQN2CgR .navbar .navbar-logo img {
  width: auto;
}
.cid-u2hQQN2CgR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2hQQN2CgR .navbar.collapsed {
  justify-content: center;
}
.cid-u2hQQN2CgR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2hQQN2CgR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2hQQN2CgR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-u2hQQN2CgR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2hQQN2CgR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2hQQN2CgR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u2hQQN2CgR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2hQQN2CgR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2hQQN2CgR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2hQQN2CgR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2hQQN2CgR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2hQQN2CgR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2hQQN2CgR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2hQQN2CgR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u2hQQN2CgR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2hQQN2CgR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2hQQN2CgR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2hQQN2CgR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2hQQN2CgR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2hQQN2CgR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u2hQQN2CgR .navbar.navbar-short {
  min-height: 60px;
}
.cid-u2hQQN2CgR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2hQQN2CgR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2hQQN2CgR .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u2hQQN2CgR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2hQQN2CgR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2hQQN2CgR .dropdown-item.active,
.cid-u2hQQN2CgR .dropdown-item:active {
  background-color: transparent;
}
.cid-u2hQQN2CgR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2hQQN2CgR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2hQQN2CgR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2hQQN2CgR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u2hQQN2CgR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2hQQN2CgR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2hQQN2CgR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2hQQN2CgR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2hQQN2CgR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2hQQN2CgR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u2hQQN2CgR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2hQQN2CgR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2hQQN2CgR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2hQQN2CgR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2hQQN2CgR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2hQQN2CgR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2hQQN2CgR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2hQQN2CgR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2hQQN2CgR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2hQQN2CgR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2hQQN2CgR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u2hQQN2CgR .navbar {
    height: 70px;
  }
  .cid-u2hQQN2CgR .navbar.opened {
    height: auto;
  }
  .cid-u2hQQN2CgR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2hQQNyKhS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/31-bs-osir-139-start-2000x1326.jpg");
}
.cid-u2hQQNyKhS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2hQQNyKhS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2hQQNyKhS .mbr-text,
.cid-u2hQQNyKhS .mbr-section-btn {
  color: #232323;
}
.cid-u2hQQNyKhS .card-title,
.cid-u2hQQNyKhS .card-box {
  color: #ffffff;
}
.cid-u2hQQNyKhS .mbr-text,
.cid-u2hQQNyKhS .link-wrap {
  color: #ffffff;
}
.cid-u2hQQNyKhS .card-box .mbr-text,
.cid-u2hQQNyKhS .mbr-section-btn {
  color: #ffffff;
}
.cid-vb5q5qbUDT {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u2hQQO4MfK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u2hQQO4MfK .mbr-section-subtitle {
  text-align: center;
}
.cid-u2hQQO4MfK .mbr-text {
  text-align: center;
}
.cid-u2hRbGSJ6R {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u2hRbGSJ6R img,
.cid-u2hRbGSJ6R .item-img {
  width: 100%;
}
.cid-u2hRbGSJ6R .item:focus,
.cid-u2hRbGSJ6R span:focus {
  outline: none;
}
.cid-u2hRbGSJ6R .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-u2hRbGSJ6R .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u2hRbGSJ6R .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2hRbGSJ6R .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u2hRbGSJ6R .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u2hRbGSJ6R .mbr-section-title {
  color: #232323;
}
.cid-u2hQQQrGOE {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-u2hQQQW74u {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-u2hQQQW74u .content {
    text-align: center;
  }
  .cid-u2hQQQW74u .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u2hQQQW74u .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-u2hQQQW74u .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u2hQQQW74u .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-u2hQQQW74u .google-map {
  height: 25rem;
  position: relative;
}
.cid-u2hQQQW74u .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u2hQQQW74u .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u2hQQQW74u .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u2hQQQW74u .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u2hQQQW74u .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2hQQQW74u .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u2hQQQW74u .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u2hQQQW74u .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u2hQQQW74u .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u2hQQQW74u .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2hQQQW74u .list {
  list-style-type: none;
  padding: 0;
}
.cid-u2hRtpsKA7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2hRtpsKA7 nav.navbar {
  position: fixed;
}
.cid-u2hRtpsKA7 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2hRtpsKA7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2hRtpsKA7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2hRtpsKA7 .dropdown-item:hover,
.cid-u2hRtpsKA7 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u2hRtpsKA7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2hRtpsKA7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2hRtpsKA7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2hRtpsKA7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2hRtpsKA7 .nav-link {
  position: relative;
}
.cid-u2hRtpsKA7 .container {
  display: flex;
  margin: auto;
}
.cid-u2hRtpsKA7 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2hRtpsKA7 .dropdown-menu,
.cid-u2hRtpsKA7 .navbar.opened {
  background: #ffffff !important;
}
.cid-u2hRtpsKA7 .nav-item:focus,
.cid-u2hRtpsKA7 .nav-link:focus {
  outline: none;
}
.cid-u2hRtpsKA7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2hRtpsKA7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2hRtpsKA7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2hRtpsKA7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2hRtpsKA7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2hRtpsKA7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2hRtpsKA7 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u2hRtpsKA7 .navbar.opened {
  transition: all 0.3s;
}
.cid-u2hRtpsKA7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2hRtpsKA7 .navbar .navbar-logo img {
  width: auto;
}
.cid-u2hRtpsKA7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2hRtpsKA7 .navbar.collapsed {
  justify-content: center;
}
.cid-u2hRtpsKA7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2hRtpsKA7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2hRtpsKA7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-u2hRtpsKA7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2hRtpsKA7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2hRtpsKA7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u2hRtpsKA7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2hRtpsKA7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2hRtpsKA7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2hRtpsKA7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2hRtpsKA7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2hRtpsKA7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2hRtpsKA7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2hRtpsKA7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u2hRtpsKA7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2hRtpsKA7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2hRtpsKA7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2hRtpsKA7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2hRtpsKA7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2hRtpsKA7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u2hRtpsKA7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u2hRtpsKA7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2hRtpsKA7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2hRtpsKA7 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u2hRtpsKA7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2hRtpsKA7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2hRtpsKA7 .dropdown-item.active,
.cid-u2hRtpsKA7 .dropdown-item:active {
  background-color: transparent;
}
.cid-u2hRtpsKA7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2hRtpsKA7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2hRtpsKA7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2hRtpsKA7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u2hRtpsKA7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2hRtpsKA7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2hRtpsKA7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2hRtpsKA7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2hRtpsKA7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2hRtpsKA7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u2hRtpsKA7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2hRtpsKA7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2hRtpsKA7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2hRtpsKA7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2hRtpsKA7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2hRtpsKA7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2hRtpsKA7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2hRtpsKA7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2hRtpsKA7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2hRtpsKA7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2hRtpsKA7 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u2hRtpsKA7 .navbar {
    height: 70px;
  }
  .cid-u2hRtpsKA7 .navbar.opened {
    height: auto;
  }
  .cid-u2hRtpsKA7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2hRtpXvJ9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/32bs-foto-kociewiak-97-start-1-1530x793.jpg");
}
.cid-u2hRtpXvJ9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2hRtpXvJ9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2hRtpXvJ9 .mbr-text,
.cid-u2hRtpXvJ9 .mbr-section-btn {
  color: #232323;
}
.cid-u2hRtpXvJ9 .card-title,
.cid-u2hRtpXvJ9 .card-box {
  color: #ffffff;
}
.cid-u2hRtpXvJ9 .mbr-text,
.cid-u2hRtpXvJ9 .link-wrap {
  color: #ffffff;
}
.cid-u2hRtpXvJ9 .card-box .mbr-text,
.cid-u2hRtpXvJ9 .mbr-section-btn {
  color: #ffffff;
}
.cid-vb5pZcT5wb {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u2hRtqmnYV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u2hRtqmnYV .mbr-section-subtitle {
  text-align: center;
}
.cid-u2hRtqmnYV .mbr-text {
  text-align: center;
}
.cid-u2hRUhTUEZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u2hRUhTUEZ img,
.cid-u2hRUhTUEZ .item-img {
  width: 100%;
}
.cid-u2hRUhTUEZ .item:focus,
.cid-u2hRUhTUEZ span:focus {
  outline: none;
}
.cid-u2hRUhTUEZ .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-u2hRUhTUEZ .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u2hRUhTUEZ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2hRUhTUEZ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u2hRUhTUEZ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u2hRUhTUEZ .mbr-section-title {
  color: #232323;
}
.cid-u2hRtrvhWC {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-u2hRtrE4KN {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-u2hRtrE4KN .content {
    text-align: center;
  }
  .cid-u2hRtrE4KN .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u2hRtrE4KN .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-u2hRtrE4KN .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u2hRtrE4KN .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-u2hRtrE4KN .google-map {
  height: 25rem;
  position: relative;
}
.cid-u2hRtrE4KN .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u2hRtrE4KN .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u2hRtrE4KN .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u2hRtrE4KN .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u2hRtrE4KN .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2hRtrE4KN .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u2hRtrE4KN .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u2hRtrE4KN .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u2hRtrE4KN .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u2hRtrE4KN .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2hRtrE4KN .list {
  list-style-type: none;
  padding: 0;
}
.cid-u2hS6NmD88 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2hS6NmD88 nav.navbar {
  position: fixed;
}
.cid-u2hS6NmD88 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2hS6NmD88 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2hS6NmD88 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2hS6NmD88 .dropdown-item:hover,
.cid-u2hS6NmD88 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u2hS6NmD88 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2hS6NmD88 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2hS6NmD88 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2hS6NmD88 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2hS6NmD88 .nav-link {
  position: relative;
}
.cid-u2hS6NmD88 .container {
  display: flex;
  margin: auto;
}
.cid-u2hS6NmD88 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2hS6NmD88 .dropdown-menu,
.cid-u2hS6NmD88 .navbar.opened {
  background: #ffffff !important;
}
.cid-u2hS6NmD88 .nav-item:focus,
.cid-u2hS6NmD88 .nav-link:focus {
  outline: none;
}
.cid-u2hS6NmD88 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2hS6NmD88 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2hS6NmD88 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2hS6NmD88 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2hS6NmD88 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2hS6NmD88 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2hS6NmD88 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u2hS6NmD88 .navbar.opened {
  transition: all 0.3s;
}
.cid-u2hS6NmD88 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2hS6NmD88 .navbar .navbar-logo img {
  width: auto;
}
.cid-u2hS6NmD88 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2hS6NmD88 .navbar.collapsed {
  justify-content: center;
}
.cid-u2hS6NmD88 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2hS6NmD88 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2hS6NmD88 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-u2hS6NmD88 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2hS6NmD88 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2hS6NmD88 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u2hS6NmD88 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2hS6NmD88 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2hS6NmD88 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2hS6NmD88 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2hS6NmD88 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2hS6NmD88 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2hS6NmD88 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2hS6NmD88 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u2hS6NmD88 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2hS6NmD88 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2hS6NmD88 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2hS6NmD88 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2hS6NmD88 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2hS6NmD88 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u2hS6NmD88 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u2hS6NmD88 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2hS6NmD88 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2hS6NmD88 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u2hS6NmD88 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2hS6NmD88 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2hS6NmD88 .dropdown-item.active,
.cid-u2hS6NmD88 .dropdown-item:active {
  background-color: transparent;
}
.cid-u2hS6NmD88 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2hS6NmD88 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2hS6NmD88 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2hS6NmD88 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u2hS6NmD88 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2hS6NmD88 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2hS6NmD88 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2hS6NmD88 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2hS6NmD88 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2hS6NmD88 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u2hS6NmD88 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2hS6NmD88 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2hS6NmD88 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2hS6NmD88 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2hS6NmD88 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2hS6NmD88 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2hS6NmD88 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2hS6NmD88 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2hS6NmD88 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2hS6NmD88 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2hS6NmD88 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u2hS6NmD88 .navbar {
    height: 70px;
  }
  .cid-u2hS6NmD88 .navbar.opened {
    height: auto;
  }
  .cid-u2hS6NmD88 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2hS6NReHc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/33-bs-osir-51-start-1-1920x1277.jpg");
}
.cid-u2hS6NReHc .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2hS6NReHc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2hS6NReHc .mbr-text,
.cid-u2hS6NReHc .mbr-section-btn {
  color: #232323;
}
.cid-u2hS6NReHc .card-title,
.cid-u2hS6NReHc .card-box {
  color: #ffffff;
}
.cid-u2hS6NReHc .mbr-text,
.cid-u2hS6NReHc .link-wrap {
  color: #ffffff;
}
.cid-u2hS6NReHc .card-box .mbr-text,
.cid-u2hS6NReHc .mbr-section-btn {
  color: #ffffff;
}
.cid-vb5pTfsPHI {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u2hS6OjIBn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u2hS6OjIBn .mbr-section-subtitle {
  text-align: center;
}
.cid-u2hS6OjIBn .mbr-text {
  text-align: center;
}
.cid-u2hSyr51FB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u2hSyr51FB img,
.cid-u2hSyr51FB .item-img {
  width: 100%;
}
.cid-u2hSyr51FB .item:focus,
.cid-u2hSyr51FB span:focus {
  outline: none;
}
.cid-u2hSyr51FB .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-u2hSyr51FB .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u2hSyr51FB .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2hSyr51FB .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u2hSyr51FB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u2hSyr51FB .mbr-section-title {
  color: #232323;
}
.cid-u2hS6PeMXg {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-u2hS6PnqLC {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-u2hS6PnqLC .content {
    text-align: center;
  }
  .cid-u2hS6PnqLC .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u2hS6PnqLC .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-u2hS6PnqLC .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u2hS6PnqLC .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-u2hS6PnqLC .google-map {
  height: 25rem;
  position: relative;
}
.cid-u2hS6PnqLC .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u2hS6PnqLC .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u2hS6PnqLC .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u2hS6PnqLC .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u2hS6PnqLC .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2hS6PnqLC .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u2hS6PnqLC .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u2hS6PnqLC .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u2hS6PnqLC .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u2hS6PnqLC .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2hS6PnqLC .list {
  list-style-type: none;
  padding: 0;
}
.cid-u2hSXJgaXB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2hSXJgaXB nav.navbar {
  position: fixed;
}
.cid-u2hSXJgaXB .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2hSXJgaXB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2hSXJgaXB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2hSXJgaXB .dropdown-item:hover,
.cid-u2hSXJgaXB .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u2hSXJgaXB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2hSXJgaXB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2hSXJgaXB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2hSXJgaXB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2hSXJgaXB .nav-link {
  position: relative;
}
.cid-u2hSXJgaXB .container {
  display: flex;
  margin: auto;
}
.cid-u2hSXJgaXB .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2hSXJgaXB .dropdown-menu,
.cid-u2hSXJgaXB .navbar.opened {
  background: #ffffff !important;
}
.cid-u2hSXJgaXB .nav-item:focus,
.cid-u2hSXJgaXB .nav-link:focus {
  outline: none;
}
.cid-u2hSXJgaXB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2hSXJgaXB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2hSXJgaXB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2hSXJgaXB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2hSXJgaXB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2hSXJgaXB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2hSXJgaXB .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u2hSXJgaXB .navbar.opened {
  transition: all 0.3s;
}
.cid-u2hSXJgaXB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2hSXJgaXB .navbar .navbar-logo img {
  width: auto;
}
.cid-u2hSXJgaXB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2hSXJgaXB .navbar.collapsed {
  justify-content: center;
}
.cid-u2hSXJgaXB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2hSXJgaXB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2hSXJgaXB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-u2hSXJgaXB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2hSXJgaXB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2hSXJgaXB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u2hSXJgaXB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2hSXJgaXB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2hSXJgaXB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2hSXJgaXB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2hSXJgaXB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2hSXJgaXB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2hSXJgaXB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2hSXJgaXB .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u2hSXJgaXB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2hSXJgaXB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2hSXJgaXB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2hSXJgaXB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2hSXJgaXB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2hSXJgaXB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u2hSXJgaXB .navbar.navbar-short {
  min-height: 60px;
}
.cid-u2hSXJgaXB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2hSXJgaXB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2hSXJgaXB .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u2hSXJgaXB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2hSXJgaXB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2hSXJgaXB .dropdown-item.active,
.cid-u2hSXJgaXB .dropdown-item:active {
  background-color: transparent;
}
.cid-u2hSXJgaXB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2hSXJgaXB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2hSXJgaXB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2hSXJgaXB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u2hSXJgaXB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2hSXJgaXB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2hSXJgaXB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2hSXJgaXB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2hSXJgaXB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2hSXJgaXB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u2hSXJgaXB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2hSXJgaXB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2hSXJgaXB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2hSXJgaXB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2hSXJgaXB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2hSXJgaXB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2hSXJgaXB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2hSXJgaXB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2hSXJgaXB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2hSXJgaXB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2hSXJgaXB .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u2hSXJgaXB .navbar {
    height: 70px;
  }
  .cid-u2hSXJgaXB .navbar.opened {
    height: auto;
  }
  .cid-u2hSXJgaXB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2hSXJKplP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/34-bs-osir-41-start-1-1920x1281.jpg");
}
.cid-u2hSXJKplP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2hSXJKplP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2hSXJKplP .mbr-text,
.cid-u2hSXJKplP .mbr-section-btn {
  color: #232323;
}
.cid-u2hSXJKplP .card-title,
.cid-u2hSXJKplP .card-box {
  color: #ffffff;
}
.cid-u2hSXJKplP .mbr-text,
.cid-u2hSXJKplP .link-wrap {
  color: #ffffff;
}
.cid-u2hSXJKplP .card-box .mbr-text,
.cid-u2hSXJKplP .mbr-section-btn {
  color: #ffffff;
}
.cid-vb5psgCBFk {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u2hSXK9BPI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u2hSXK9BPI .mbr-section-subtitle {
  text-align: center;
}
.cid-u2hSXK9BPI .mbr-text {
  text-align: center;
}
.cid-u2hTiWg6Lr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u2hTiWg6Lr img,
.cid-u2hTiWg6Lr .item-img {
  width: 100%;
}
.cid-u2hTiWg6Lr .item:focus,
.cid-u2hTiWg6Lr span:focus {
  outline: none;
}
.cid-u2hTiWg6Lr .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-u2hTiWg6Lr .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u2hTiWg6Lr .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2hTiWg6Lr .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u2hTiWg6Lr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u2hTiWg6Lr .mbr-section-title {
  color: #232323;
}
.cid-u2hSXLm6FF {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-u2hSXLykLh {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-u2hSXLykLh .content {
    text-align: center;
  }
  .cid-u2hSXLykLh .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u2hSXLykLh .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-u2hSXLykLh .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u2hSXLykLh .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-u2hSXLykLh .google-map {
  height: 25rem;
  position: relative;
}
.cid-u2hSXLykLh .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u2hSXLykLh .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u2hSXLykLh .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u2hSXLykLh .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u2hSXLykLh .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2hSXLykLh .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u2hSXLykLh .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u2hSXLykLh .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u2hSXLykLh .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u2hSXLykLh .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2hSXLykLh .list {
  list-style-type: none;
  padding: 0;
}
.cid-u2hTF9hy8r {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2hTF9hy8r nav.navbar {
  position: fixed;
}
.cid-u2hTF9hy8r .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2hTF9hy8r .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2hTF9hy8r .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2hTF9hy8r .dropdown-item:hover,
.cid-u2hTF9hy8r .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u2hTF9hy8r .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2hTF9hy8r .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2hTF9hy8r .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2hTF9hy8r .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2hTF9hy8r .nav-link {
  position: relative;
}
.cid-u2hTF9hy8r .container {
  display: flex;
  margin: auto;
}
.cid-u2hTF9hy8r .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2hTF9hy8r .dropdown-menu,
.cid-u2hTF9hy8r .navbar.opened {
  background: #ffffff !important;
}
.cid-u2hTF9hy8r .nav-item:focus,
.cid-u2hTF9hy8r .nav-link:focus {
  outline: none;
}
.cid-u2hTF9hy8r .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2hTF9hy8r .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2hTF9hy8r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2hTF9hy8r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2hTF9hy8r .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2hTF9hy8r .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2hTF9hy8r .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u2hTF9hy8r .navbar.opened {
  transition: all 0.3s;
}
.cid-u2hTF9hy8r .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2hTF9hy8r .navbar .navbar-logo img {
  width: auto;
}
.cid-u2hTF9hy8r .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2hTF9hy8r .navbar.collapsed {
  justify-content: center;
}
.cid-u2hTF9hy8r .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2hTF9hy8r .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2hTF9hy8r .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-u2hTF9hy8r .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2hTF9hy8r .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2hTF9hy8r .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u2hTF9hy8r .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2hTF9hy8r .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2hTF9hy8r .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2hTF9hy8r .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2hTF9hy8r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2hTF9hy8r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2hTF9hy8r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2hTF9hy8r .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u2hTF9hy8r .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2hTF9hy8r .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2hTF9hy8r .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2hTF9hy8r .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2hTF9hy8r .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2hTF9hy8r .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u2hTF9hy8r .navbar.navbar-short {
  min-height: 60px;
}
.cid-u2hTF9hy8r .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2hTF9hy8r .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2hTF9hy8r .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u2hTF9hy8r .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2hTF9hy8r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2hTF9hy8r .dropdown-item.active,
.cid-u2hTF9hy8r .dropdown-item:active {
  background-color: transparent;
}
.cid-u2hTF9hy8r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2hTF9hy8r .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2hTF9hy8r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2hTF9hy8r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u2hTF9hy8r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2hTF9hy8r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2hTF9hy8r ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2hTF9hy8r .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2hTF9hy8r button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2hTF9hy8r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u2hTF9hy8r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2hTF9hy8r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2hTF9hy8r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2hTF9hy8r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2hTF9hy8r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2hTF9hy8r nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2hTF9hy8r nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2hTF9hy8r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2hTF9hy8r .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2hTF9hy8r a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2hTF9hy8r .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u2hTF9hy8r .navbar {
    height: 70px;
  }
  .cid-u2hTF9hy8r .navbar.opened {
    height: auto;
  }
  .cid-u2hTF9hy8r .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2hTF9MmvM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/35-bs-osir-66-start-1920x1282.jpg");
}
.cid-u2hTF9MmvM .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2hTF9MmvM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2hTF9MmvM .mbr-text,
.cid-u2hTF9MmvM .mbr-section-btn {
  color: #232323;
}
.cid-u2hTF9MmvM .card-title,
.cid-u2hTF9MmvM .card-box {
  color: #ffffff;
}
.cid-u2hTF9MmvM .mbr-text,
.cid-u2hTF9MmvM .link-wrap {
  color: #ffffff;
}
.cid-u2hTF9MmvM .card-box .mbr-text,
.cid-u2hTF9MmvM .mbr-section-btn {
  color: #ffffff;
}
.cid-vb5plzaz7E {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u2hTFabX7I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u2hTFabX7I .mbr-section-subtitle {
  text-align: center;
}
.cid-u2hTFabX7I .mbr-text {
  text-align: center;
}
.cid-u2hU84Xfd0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u2hU84Xfd0 img,
.cid-u2hU84Xfd0 .item-img {
  width: 100%;
}
.cid-u2hU84Xfd0 .item:focus,
.cid-u2hU84Xfd0 span:focus {
  outline: none;
}
.cid-u2hU84Xfd0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-u2hU84Xfd0 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u2hU84Xfd0 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2hU84Xfd0 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u2hU84Xfd0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u2hU84Xfd0 .mbr-section-title {
  color: #232323;
}
.cid-u2hTFbCfVJ {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-u2hTFbM8Ce {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-u2hTFbM8Ce .content {
    text-align: center;
  }
  .cid-u2hTFbM8Ce .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u2hTFbM8Ce .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-u2hTFbM8Ce .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u2hTFbM8Ce .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-u2hTFbM8Ce .google-map {
  height: 25rem;
  position: relative;
}
.cid-u2hTFbM8Ce .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u2hTFbM8Ce .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u2hTFbM8Ce .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u2hTFbM8Ce .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u2hTFbM8Ce .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2hTFbM8Ce .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u2hTFbM8Ce .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u2hTFbM8Ce .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u2hTFbM8Ce .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u2hTFbM8Ce .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2hTFbM8Ce .list {
  list-style-type: none;
  padding: 0;
}
.cid-u2hUmv2yGI {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2hUmv2yGI nav.navbar {
  position: fixed;
}
.cid-u2hUmv2yGI .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2hUmv2yGI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2hUmv2yGI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2hUmv2yGI .dropdown-item:hover,
.cid-u2hUmv2yGI .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u2hUmv2yGI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2hUmv2yGI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2hUmv2yGI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2hUmv2yGI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2hUmv2yGI .nav-link {
  position: relative;
}
.cid-u2hUmv2yGI .container {
  display: flex;
  margin: auto;
}
.cid-u2hUmv2yGI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2hUmv2yGI .dropdown-menu,
.cid-u2hUmv2yGI .navbar.opened {
  background: #ffffff !important;
}
.cid-u2hUmv2yGI .nav-item:focus,
.cid-u2hUmv2yGI .nav-link:focus {
  outline: none;
}
.cid-u2hUmv2yGI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2hUmv2yGI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2hUmv2yGI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2hUmv2yGI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2hUmv2yGI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2hUmv2yGI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2hUmv2yGI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u2hUmv2yGI .navbar.opened {
  transition: all 0.3s;
}
.cid-u2hUmv2yGI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2hUmv2yGI .navbar .navbar-logo img {
  width: auto;
}
.cid-u2hUmv2yGI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2hUmv2yGI .navbar.collapsed {
  justify-content: center;
}
.cid-u2hUmv2yGI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2hUmv2yGI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2hUmv2yGI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-u2hUmv2yGI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2hUmv2yGI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2hUmv2yGI .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u2hUmv2yGI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2hUmv2yGI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2hUmv2yGI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2hUmv2yGI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2hUmv2yGI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2hUmv2yGI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2hUmv2yGI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2hUmv2yGI .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u2hUmv2yGI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2hUmv2yGI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2hUmv2yGI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2hUmv2yGI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2hUmv2yGI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2hUmv2yGI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u2hUmv2yGI .navbar.navbar-short {
  min-height: 60px;
}
.cid-u2hUmv2yGI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2hUmv2yGI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2hUmv2yGI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u2hUmv2yGI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2hUmv2yGI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2hUmv2yGI .dropdown-item.active,
.cid-u2hUmv2yGI .dropdown-item:active {
  background-color: transparent;
}
.cid-u2hUmv2yGI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2hUmv2yGI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2hUmv2yGI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2hUmv2yGI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u2hUmv2yGI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2hUmv2yGI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2hUmv2yGI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2hUmv2yGI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2hUmv2yGI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2hUmv2yGI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u2hUmv2yGI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2hUmv2yGI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2hUmv2yGI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2hUmv2yGI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2hUmv2yGI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2hUmv2yGI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2hUmv2yGI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2hUmv2yGI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2hUmv2yGI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2hUmv2yGI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2hUmv2yGI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u2hUmv2yGI .navbar {
    height: 70px;
  }
  .cid-u2hUmv2yGI .navbar.opened {
    height: auto;
  }
  .cid-u2hUmv2yGI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2hUmvwy4s {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/36-bs-osir-24-start-2000x1334.jpg");
}
.cid-u2hUmvwy4s .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2hUmvwy4s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2hUmvwy4s .mbr-text,
.cid-u2hUmvwy4s .mbr-section-btn {
  color: #232323;
}
.cid-u2hUmvwy4s .card-title,
.cid-u2hUmvwy4s .card-box {
  color: #ffffff;
}
.cid-u2hUmvwy4s .mbr-text,
.cid-u2hUmvwy4s .link-wrap {
  color: #ffffff;
}
.cid-u2hUmvwy4s .card-box .mbr-text,
.cid-u2hUmvwy4s .mbr-section-btn {
  color: #ffffff;
}
.cid-vb5pe0f2Jk {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u2hUmvVwEP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u2hUmvVwEP .mbr-section-subtitle {
  text-align: center;
}
.cid-u2hUmvVwEP .mbr-text {
  text-align: center;
}
.cid-u2hUNNxaTq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u2hUNNxaTq img,
.cid-u2hUNNxaTq .item-img {
  width: 100%;
}
.cid-u2hUNNxaTq .item:focus,
.cid-u2hUNNxaTq span:focus {
  outline: none;
}
.cid-u2hUNNxaTq .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-u2hUNNxaTq .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u2hUNNxaTq .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2hUNNxaTq .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u2hUNNxaTq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u2hUNNxaTq .mbr-section-title {
  color: #232323;
}
.cid-u2hUmxCVU9 {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-u2hUmxMSjA {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-u2hUmxMSjA .content {
    text-align: center;
  }
  .cid-u2hUmxMSjA .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u2hUmxMSjA .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-u2hUmxMSjA .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u2hUmxMSjA .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-u2hUmxMSjA .google-map {
  height: 25rem;
  position: relative;
}
.cid-u2hUmxMSjA .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u2hUmxMSjA .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u2hUmxMSjA .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u2hUmxMSjA .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u2hUmxMSjA .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2hUmxMSjA .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u2hUmxMSjA .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u2hUmxMSjA .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u2hUmxMSjA .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u2hUmxMSjA .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2hUmxMSjA .list {
  list-style-type: none;
  padding: 0;
}
.cid-u2hVrOO6zv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2hVrOO6zv nav.navbar {
  position: fixed;
}
.cid-u2hVrOO6zv .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2hVrOO6zv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2hVrOO6zv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2hVrOO6zv .dropdown-item:hover,
.cid-u2hVrOO6zv .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u2hVrOO6zv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2hVrOO6zv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2hVrOO6zv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2hVrOO6zv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2hVrOO6zv .nav-link {
  position: relative;
}
.cid-u2hVrOO6zv .container {
  display: flex;
  margin: auto;
}
.cid-u2hVrOO6zv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2hVrOO6zv .dropdown-menu,
.cid-u2hVrOO6zv .navbar.opened {
  background: #ffffff !important;
}
.cid-u2hVrOO6zv .nav-item:focus,
.cid-u2hVrOO6zv .nav-link:focus {
  outline: none;
}
.cid-u2hVrOO6zv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2hVrOO6zv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2hVrOO6zv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2hVrOO6zv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2hVrOO6zv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2hVrOO6zv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2hVrOO6zv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u2hVrOO6zv .navbar.opened {
  transition: all 0.3s;
}
.cid-u2hVrOO6zv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2hVrOO6zv .navbar .navbar-logo img {
  width: auto;
}
.cid-u2hVrOO6zv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2hVrOO6zv .navbar.collapsed {
  justify-content: center;
}
.cid-u2hVrOO6zv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2hVrOO6zv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2hVrOO6zv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-u2hVrOO6zv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2hVrOO6zv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2hVrOO6zv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u2hVrOO6zv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2hVrOO6zv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2hVrOO6zv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2hVrOO6zv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2hVrOO6zv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2hVrOO6zv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2hVrOO6zv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2hVrOO6zv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u2hVrOO6zv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2hVrOO6zv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2hVrOO6zv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2hVrOO6zv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2hVrOO6zv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2hVrOO6zv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u2hVrOO6zv .navbar.navbar-short {
  min-height: 60px;
}
.cid-u2hVrOO6zv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2hVrOO6zv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2hVrOO6zv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u2hVrOO6zv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2hVrOO6zv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2hVrOO6zv .dropdown-item.active,
.cid-u2hVrOO6zv .dropdown-item:active {
  background-color: transparent;
}
.cid-u2hVrOO6zv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2hVrOO6zv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2hVrOO6zv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2hVrOO6zv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u2hVrOO6zv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2hVrOO6zv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2hVrOO6zv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2hVrOO6zv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2hVrOO6zv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2hVrOO6zv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u2hVrOO6zv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2hVrOO6zv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2hVrOO6zv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2hVrOO6zv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2hVrOO6zv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2hVrOO6zv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2hVrOO6zv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2hVrOO6zv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2hVrOO6zv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2hVrOO6zv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2hVrOO6zv .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u2hVrOO6zv .navbar {
    height: 70px;
  }
  .cid-u2hVrOO6zv .navbar.opened {
    height: auto;
  }
  .cid-u2hVrOO6zv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2hVrPov8T {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/bs-wydarzenie-v1-1200x625.jpg");
}
.cid-u2hVrPov8T .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2hVrPov8T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2hVrPov8T .mbr-text,
.cid-u2hVrPov8T .mbr-section-btn {
  color: #232323;
}
.cid-u2hVrPov8T .card-title,
.cid-u2hVrPov8T .card-box {
  color: #ffffff;
}
.cid-u2hVrPov8T .mbr-text,
.cid-u2hVrPov8T .link-wrap {
  color: #ffffff;
}
.cid-u2hVrPov8T .card-box .mbr-text,
.cid-u2hVrPov8T .mbr-section-btn {
  color: #ffffff;
}
.cid-vb5p5OHU0i {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u2hVrPUrZR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u2hVrPUrZR .mbr-section-subtitle {
  text-align: center;
}
.cid-u2hVrPUrZR .mbr-text {
  text-align: center;
}
.cid-u2hW6cckOl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u2hW6cckOl img,
.cid-u2hW6cckOl .item-img {
  width: 100%;
}
.cid-u2hW6cckOl .item:focus,
.cid-u2hW6cckOl span:focus {
  outline: none;
}
.cid-u2hW6cckOl .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-u2hW6cckOl .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u2hW6cckOl .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2hW6cckOl .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u2hW6cckOl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u2hW6cckOl .mbr-section-title {
  color: #232323;
}
.cid-u2hVrRHSu1 {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-u2hVrRT8iJ {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-u2hVrRT8iJ .content {
    text-align: center;
  }
  .cid-u2hVrRT8iJ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u2hVrRT8iJ .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-u2hVrRT8iJ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u2hVrRT8iJ .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-u2hVrRT8iJ .google-map {
  height: 25rem;
  position: relative;
}
.cid-u2hVrRT8iJ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u2hVrRT8iJ .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u2hVrRT8iJ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u2hVrRT8iJ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u2hVrRT8iJ .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2hVrRT8iJ .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u2hVrRT8iJ .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u2hVrRT8iJ .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u2hVrRT8iJ .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u2hVrRT8iJ .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2hVrRT8iJ .list {
  list-style-type: none;
  padding: 0;
}
.cid-u2hWjmyrXZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2hWjmyrXZ nav.navbar {
  position: fixed;
}
.cid-u2hWjmyrXZ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2hWjmyrXZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2hWjmyrXZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2hWjmyrXZ .dropdown-item:hover,
.cid-u2hWjmyrXZ .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u2hWjmyrXZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2hWjmyrXZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2hWjmyrXZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2hWjmyrXZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2hWjmyrXZ .nav-link {
  position: relative;
}
.cid-u2hWjmyrXZ .container {
  display: flex;
  margin: auto;
}
.cid-u2hWjmyrXZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2hWjmyrXZ .dropdown-menu,
.cid-u2hWjmyrXZ .navbar.opened {
  background: #ffffff !important;
}
.cid-u2hWjmyrXZ .nav-item:focus,
.cid-u2hWjmyrXZ .nav-link:focus {
  outline: none;
}
.cid-u2hWjmyrXZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2hWjmyrXZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2hWjmyrXZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2hWjmyrXZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2hWjmyrXZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2hWjmyrXZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2hWjmyrXZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u2hWjmyrXZ .navbar.opened {
  transition: all 0.3s;
}
.cid-u2hWjmyrXZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2hWjmyrXZ .navbar .navbar-logo img {
  width: auto;
}
.cid-u2hWjmyrXZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2hWjmyrXZ .navbar.collapsed {
  justify-content: center;
}
.cid-u2hWjmyrXZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2hWjmyrXZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2hWjmyrXZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-u2hWjmyrXZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2hWjmyrXZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2hWjmyrXZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u2hWjmyrXZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2hWjmyrXZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2hWjmyrXZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2hWjmyrXZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2hWjmyrXZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2hWjmyrXZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2hWjmyrXZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2hWjmyrXZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u2hWjmyrXZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2hWjmyrXZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2hWjmyrXZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2hWjmyrXZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2hWjmyrXZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2hWjmyrXZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u2hWjmyrXZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-u2hWjmyrXZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2hWjmyrXZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2hWjmyrXZ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u2hWjmyrXZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2hWjmyrXZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2hWjmyrXZ .dropdown-item.active,
.cid-u2hWjmyrXZ .dropdown-item:active {
  background-color: transparent;
}
.cid-u2hWjmyrXZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2hWjmyrXZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2hWjmyrXZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2hWjmyrXZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u2hWjmyrXZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2hWjmyrXZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2hWjmyrXZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2hWjmyrXZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2hWjmyrXZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2hWjmyrXZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u2hWjmyrXZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2hWjmyrXZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2hWjmyrXZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2hWjmyrXZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2hWjmyrXZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2hWjmyrXZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2hWjmyrXZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2hWjmyrXZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2hWjmyrXZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2hWjmyrXZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2hWjmyrXZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u2hWjmyrXZ .navbar {
    height: 70px;
  }
  .cid-u2hWjmyrXZ .navbar.opened {
    height: auto;
  }
  .cid-u2hWjmyrXZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2hWjn5YSU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/38bs-bieg-glowny-4-start-2000x935.jpg");
}
.cid-u2hWjn5YSU .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2hWjn5YSU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2hWjn5YSU .mbr-text,
.cid-u2hWjn5YSU .mbr-section-btn {
  color: #232323;
}
.cid-u2hWjn5YSU .card-title,
.cid-u2hWjn5YSU .card-box {
  color: #ffffff;
}
.cid-u2hWjn5YSU .mbr-text,
.cid-u2hWjn5YSU .link-wrap {
  color: #ffffff;
}
.cid-u2hWjn5YSU .card-box .mbr-text,
.cid-u2hWjn5YSU .mbr-section-btn {
  color: #ffffff;
}
.cid-vb5p068uvI {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u2hWjnvzMI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u2hWjnvzMI .mbr-section-subtitle {
  text-align: center;
}
.cid-u2hWjnvzMI .mbr-text {
  text-align: center;
}
.cid-u2hWMnwNO4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u2hWMnwNO4 img,
.cid-u2hWMnwNO4 .item-img {
  width: 100%;
}
.cid-u2hWMnwNO4 .item:focus,
.cid-u2hWMnwNO4 span:focus {
  outline: none;
}
.cid-u2hWMnwNO4 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-u2hWMnwNO4 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u2hWMnwNO4 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2hWMnwNO4 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u2hWMnwNO4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u2hWMnwNO4 .mbr-section-title {
  color: #232323;
}
.cid-u2hWjoT7Yz {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-u2hWjp24A0 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-u2hWjp24A0 .content {
    text-align: center;
  }
  .cid-u2hWjp24A0 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u2hWjp24A0 .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-u2hWjp24A0 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u2hWjp24A0 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-u2hWjp24A0 .google-map {
  height: 25rem;
  position: relative;
}
.cid-u2hWjp24A0 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u2hWjp24A0 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u2hWjp24A0 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u2hWjp24A0 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u2hWjp24A0 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2hWjp24A0 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u2hWjp24A0 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u2hWjp24A0 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u2hWjp24A0 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u2hWjp24A0 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2hWjp24A0 .list {
  list-style-type: none;
  padding: 0;
}
.cid-u2hXbe5FlW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2hXbe5FlW nav.navbar {
  position: fixed;
}
.cid-u2hXbe5FlW .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2hXbe5FlW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2hXbe5FlW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2hXbe5FlW .dropdown-item:hover,
.cid-u2hXbe5FlW .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u2hXbe5FlW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2hXbe5FlW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2hXbe5FlW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2hXbe5FlW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2hXbe5FlW .nav-link {
  position: relative;
}
.cid-u2hXbe5FlW .container {
  display: flex;
  margin: auto;
}
.cid-u2hXbe5FlW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2hXbe5FlW .dropdown-menu,
.cid-u2hXbe5FlW .navbar.opened {
  background: #ffffff !important;
}
.cid-u2hXbe5FlW .nav-item:focus,
.cid-u2hXbe5FlW .nav-link:focus {
  outline: none;
}
.cid-u2hXbe5FlW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2hXbe5FlW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2hXbe5FlW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2hXbe5FlW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2hXbe5FlW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2hXbe5FlW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2hXbe5FlW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u2hXbe5FlW .navbar.opened {
  transition: all 0.3s;
}
.cid-u2hXbe5FlW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2hXbe5FlW .navbar .navbar-logo img {
  width: auto;
}
.cid-u2hXbe5FlW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2hXbe5FlW .navbar.collapsed {
  justify-content: center;
}
.cid-u2hXbe5FlW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2hXbe5FlW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2hXbe5FlW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-u2hXbe5FlW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2hXbe5FlW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2hXbe5FlW .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u2hXbe5FlW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2hXbe5FlW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2hXbe5FlW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2hXbe5FlW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2hXbe5FlW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2hXbe5FlW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2hXbe5FlW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2hXbe5FlW .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u2hXbe5FlW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2hXbe5FlW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2hXbe5FlW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2hXbe5FlW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2hXbe5FlW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2hXbe5FlW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u2hXbe5FlW .navbar.navbar-short {
  min-height: 60px;
}
.cid-u2hXbe5FlW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2hXbe5FlW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2hXbe5FlW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u2hXbe5FlW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2hXbe5FlW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2hXbe5FlW .dropdown-item.active,
.cid-u2hXbe5FlW .dropdown-item:active {
  background-color: transparent;
}
.cid-u2hXbe5FlW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2hXbe5FlW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2hXbe5FlW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2hXbe5FlW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u2hXbe5FlW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2hXbe5FlW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2hXbe5FlW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2hXbe5FlW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2hXbe5FlW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2hXbe5FlW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u2hXbe5FlW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2hXbe5FlW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2hXbe5FlW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2hXbe5FlW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2hXbe5FlW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2hXbe5FlW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2hXbe5FlW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2hXbe5FlW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2hXbe5FlW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2hXbe5FlW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2hXbe5FlW .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u2hXbe5FlW .navbar {
    height: 70px;
  }
  .cid-u2hXbe5FlW .navbar.opened {
    height: auto;
  }
  .cid-u2hXbe5FlW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2hXbeBpN3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/39bs-3-trasa-59-start-1920x1280.jpg");
}
.cid-u2hXbeBpN3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2hXbeBpN3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2hXbeBpN3 .mbr-text,
.cid-u2hXbeBpN3 .mbr-section-btn {
  color: #232323;
}
.cid-u2hXbeBpN3 .card-title,
.cid-u2hXbeBpN3 .card-box {
  color: #ffffff;
}
.cid-u2hXbeBpN3 .mbr-text,
.cid-u2hXbeBpN3 .link-wrap {
  color: #ffffff;
}
.cid-u2hXbeBpN3 .card-box .mbr-text,
.cid-u2hXbeBpN3 .mbr-section-btn {
  color: #ffffff;
}
.cid-vb5oLKUUbm {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u2hXbf1gdN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u2hXbf1gdN .mbr-section-subtitle {
  text-align: center;
}
.cid-u2hXbf1gdN .mbr-text {
  text-align: center;
}
.cid-u2hXuJU0uu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u2hXuJU0uu img,
.cid-u2hXuJU0uu .item-img {
  width: 100%;
}
.cid-u2hXuJU0uu .item:focus,
.cid-u2hXuJU0uu span:focus {
  outline: none;
}
.cid-u2hXuJU0uu .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-u2hXuJU0uu .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u2hXuJU0uu .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2hXuJU0uu .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u2hXuJU0uu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u2hXuJU0uu .mbr-section-title {
  color: #232323;
}
.cid-u2hXbhf5jO {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-u2hXbhp6Jo {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-u2hXbhp6Jo .content {
    text-align: center;
  }
  .cid-u2hXbhp6Jo .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u2hXbhp6Jo .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-u2hXbhp6Jo .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u2hXbhp6Jo .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-u2hXbhp6Jo .google-map {
  height: 25rem;
  position: relative;
}
.cid-u2hXbhp6Jo .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u2hXbhp6Jo .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u2hXbhp6Jo .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u2hXbhp6Jo .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u2hXbhp6Jo .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2hXbhp6Jo .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u2hXbhp6Jo .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u2hXbhp6Jo .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u2hXbhp6Jo .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u2hXbhp6Jo .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2hXbhp6Jo .list {
  list-style-type: none;
  padding: 0;
}
.cid-uznpu2ckbj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uznpu2ckbj nav.navbar {
  position: fixed;
}
.cid-uznpu2ckbj .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uznpu2ckbj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uznpu2ckbj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uznpu2ckbj .dropdown-item:hover,
.cid-uznpu2ckbj .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uznpu2ckbj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uznpu2ckbj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uznpu2ckbj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uznpu2ckbj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uznpu2ckbj .nav-link {
  position: relative;
}
.cid-uznpu2ckbj .container {
  display: flex;
  margin: auto;
}
.cid-uznpu2ckbj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uznpu2ckbj .dropdown-menu,
.cid-uznpu2ckbj .navbar.opened {
  background: #ffffff !important;
}
.cid-uznpu2ckbj .nav-item:focus,
.cid-uznpu2ckbj .nav-link:focus {
  outline: none;
}
.cid-uznpu2ckbj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uznpu2ckbj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uznpu2ckbj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uznpu2ckbj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uznpu2ckbj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uznpu2ckbj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uznpu2ckbj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uznpu2ckbj .navbar.opened {
  transition: all 0.3s;
}
.cid-uznpu2ckbj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uznpu2ckbj .navbar .navbar-logo img {
  width: auto;
}
.cid-uznpu2ckbj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uznpu2ckbj .navbar.collapsed {
  justify-content: center;
}
.cid-uznpu2ckbj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uznpu2ckbj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uznpu2ckbj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-uznpu2ckbj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uznpu2ckbj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uznpu2ckbj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uznpu2ckbj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uznpu2ckbj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uznpu2ckbj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uznpu2ckbj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uznpu2ckbj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uznpu2ckbj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uznpu2ckbj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uznpu2ckbj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uznpu2ckbj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uznpu2ckbj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uznpu2ckbj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uznpu2ckbj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uznpu2ckbj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uznpu2ckbj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uznpu2ckbj .navbar.navbar-short {
  min-height: 60px;
}
.cid-uznpu2ckbj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uznpu2ckbj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uznpu2ckbj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uznpu2ckbj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uznpu2ckbj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uznpu2ckbj .dropdown-item.active,
.cid-uznpu2ckbj .dropdown-item:active {
  background-color: transparent;
}
.cid-uznpu2ckbj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uznpu2ckbj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uznpu2ckbj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uznpu2ckbj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uznpu2ckbj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uznpu2ckbj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uznpu2ckbj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uznpu2ckbj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uznpu2ckbj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uznpu2ckbj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uznpu2ckbj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uznpu2ckbj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uznpu2ckbj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uznpu2ckbj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uznpu2ckbj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uznpu2ckbj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uznpu2ckbj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uznpu2ckbj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uznpu2ckbj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uznpu2ckbj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uznpu2ckbj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uznpu2ckbj .navbar {
    height: 70px;
  }
  .cid-uznpu2ckbj .navbar.opened {
    height: auto;
  }
  .cid-uznpu2ckbj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uznpu2vG72 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/39bs-3-trasa-59-start-1920x1280.jpg");
}
.cid-uznpu2vG72 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uznpu2vG72 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uznpu2vG72 .mbr-text,
.cid-uznpu2vG72 .mbr-section-btn {
  color: #232323;
}
.cid-uznpu2vG72 .card-title,
.cid-uznpu2vG72 .card-box {
  color: #ffffff;
}
.cid-uznpu2vG72 .mbr-text,
.cid-uznpu2vG72 .link-wrap {
  color: #ffffff;
}
.cid-uznpu2vG72 .card-box .mbr-text,
.cid-uznpu2vG72 .mbr-section-btn {
  color: #ffffff;
}
.cid-vb5oAnQLVM {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uznpu2OfVI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uznpu2OfVI .mbr-section-subtitle {
  text-align: center;
}
.cid-uznpu2OfVI .mbr-text {
  text-align: center;
}
.cid-uznpu2XUzE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uznpu2XUzE img,
.cid-uznpu2XUzE .item-img {
  width: 100%;
}
.cid-uznpu2XUzE .item:focus,
.cid-uznpu2XUzE span:focus {
  outline: none;
}
.cid-uznpu2XUzE .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uznpu2XUzE .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uznpu2XUzE .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uznpu2XUzE .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uznpu2XUzE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uznpu2XUzE .mbr-section-title {
  color: #232323;
}
.cid-uznpu5qs4k {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-uznpu5DR62 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-uznpu5DR62 .content {
    text-align: center;
  }
  .cid-uznpu5DR62 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uznpu5DR62 .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uznpu5DR62 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uznpu5DR62 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uznpu5DR62 .google-map {
  height: 25rem;
  position: relative;
}
.cid-uznpu5DR62 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uznpu5DR62 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uznpu5DR62 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uznpu5DR62 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uznpu5DR62 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uznpu5DR62 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uznpu5DR62 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uznpu5DR62 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uznpu5DR62 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uznpu5DR62 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uznpu5DR62 .list {
  list-style-type: none;
  padding: 0;
}
.cid-vb1c4J3iLU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vb1c4J3iLU nav.navbar {
  position: fixed;
}
.cid-vb1c4J3iLU .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vb1c4J3iLU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vb1c4J3iLU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vb1c4J3iLU .dropdown-item:hover,
.cid-vb1c4J3iLU .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-vb1c4J3iLU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vb1c4J3iLU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vb1c4J3iLU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vb1c4J3iLU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vb1c4J3iLU .nav-link {
  position: relative;
}
.cid-vb1c4J3iLU .container {
  display: flex;
  margin: auto;
}
.cid-vb1c4J3iLU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vb1c4J3iLU .dropdown-menu,
.cid-vb1c4J3iLU .navbar.opened {
  background: #ffffff !important;
}
.cid-vb1c4J3iLU .nav-item:focus,
.cid-vb1c4J3iLU .nav-link:focus {
  outline: none;
}
.cid-vb1c4J3iLU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vb1c4J3iLU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vb1c4J3iLU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vb1c4J3iLU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vb1c4J3iLU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vb1c4J3iLU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vb1c4J3iLU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-vb1c4J3iLU .navbar.opened {
  transition: all 0.3s;
}
.cid-vb1c4J3iLU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vb1c4J3iLU .navbar .navbar-logo img {
  width: auto;
}
.cid-vb1c4J3iLU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vb1c4J3iLU .navbar.collapsed {
  justify-content: center;
}
.cid-vb1c4J3iLU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vb1c4J3iLU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vb1c4J3iLU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-vb1c4J3iLU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vb1c4J3iLU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vb1c4J3iLU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vb1c4J3iLU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vb1c4J3iLU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vb1c4J3iLU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vb1c4J3iLU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vb1c4J3iLU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vb1c4J3iLU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vb1c4J3iLU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vb1c4J3iLU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vb1c4J3iLU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vb1c4J3iLU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vb1c4J3iLU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vb1c4J3iLU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vb1c4J3iLU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vb1c4J3iLU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vb1c4J3iLU .navbar.navbar-short {
  min-height: 60px;
}
.cid-vb1c4J3iLU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vb1c4J3iLU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vb1c4J3iLU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vb1c4J3iLU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vb1c4J3iLU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vb1c4J3iLU .dropdown-item.active,
.cid-vb1c4J3iLU .dropdown-item:active {
  background-color: transparent;
}
.cid-vb1c4J3iLU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vb1c4J3iLU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vb1c4J3iLU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vb1c4J3iLU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vb1c4J3iLU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vb1c4J3iLU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vb1c4J3iLU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vb1c4J3iLU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vb1c4J3iLU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vb1c4J3iLU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vb1c4J3iLU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vb1c4J3iLU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vb1c4J3iLU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vb1c4J3iLU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vb1c4J3iLU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vb1c4J3iLU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vb1c4J3iLU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vb1c4J3iLU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vb1c4J3iLU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vb1c4J3iLU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vb1c4J3iLU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vb1c4J3iLU .navbar {
    height: 70px;
  }
  .cid-vb1c4J3iLU .navbar.opened {
    height: auto;
  }
  .cid-vb1c4J3iLU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vb1c4JuIsp {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/x0v2l7x2l0u0c177g4t4c0j00393g2z8-1200x800.jpg");
}
.cid-vb1c4JuIsp .mbr-fallback-image.disabled {
  display: none;
}
.cid-vb1c4JuIsp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vb1c4JuIsp .mbr-text,
.cid-vb1c4JuIsp .mbr-section-btn {
  color: #232323;
}
.cid-vb1c4JuIsp .card-title,
.cid-vb1c4JuIsp .card-box {
  color: #ffffff;
}
.cid-vb1c4JuIsp .mbr-text,
.cid-vb1c4JuIsp .link-wrap {
  color: #ffffff;
}
.cid-vb1c4JuIsp .card-box .mbr-text,
.cid-vb1c4JuIsp .mbr-section-btn {
  color: #ffffff;
}
.cid-vb1c4JJMpl {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vb1c4JTmoE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vb1c4JTmoE .mbr-section-subtitle {
  text-align: center;
}
.cid-vb1c4JTmoE .mbr-text {
  text-align: center;
}
.cid-vb1c4K49ie {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-vb1c4K49ie img,
.cid-vb1c4K49ie .item-img {
  width: 100%;
}
.cid-vb1c4K49ie .item:focus,
.cid-vb1c4K49ie span:focus {
  outline: none;
}
.cid-vb1c4K49ie .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-vb1c4K49ie .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vb1c4K49ie .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vb1c4K49ie .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-vb1c4K49ie .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vb1c4K49ie .mbr-section-title {
  color: #232323;
}
.cid-vb1c4LdvH4 {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-vb1c4Ll0cs {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-vb1c4Ll0cs .content {
    text-align: center;
  }
  .cid-vb1c4Ll0cs .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vb1c4Ll0cs .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-vb1c4Ll0cs .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vb1c4Ll0cs .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-vb1c4Ll0cs .google-map {
  height: 25rem;
  position: relative;
}
.cid-vb1c4Ll0cs .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-vb1c4Ll0cs .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-vb1c4Ll0cs .google-map[data-state] {
  background: #e9e5dc;
}
.cid-vb1c4Ll0cs .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-vb1c4Ll0cs .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vb1c4Ll0cs .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-vb1c4Ll0cs .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-vb1c4Ll0cs .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-vb1c4Ll0cs .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vb1c4Ll0cs .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vb1c4Ll0cs .list {
  list-style-type: none;
  padding: 0;
}
