body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Lexend', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Lexend', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Lexend', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Lexend', 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: #22a5e5 !important;
}
.bg-success {
  background-color: #22a5e5 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #bbbbbb !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #22a5e5 !important;
  border-color: #22a5e5 !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: #13709e !important;
  border-color: #13709e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !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: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #22a5e5 !important;
  border-color: #22a5e5 !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: #13709e !important;
  border-color: #13709e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !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: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !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: #909090 !important;
  border-color: #909090 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !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: transparent;
  color: #22a5e5;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #13709e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #22a5e5 !important;
  border-color: #22a5e5 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #22a5e5;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #13709e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #22a5e5 !important;
  border-color: #22a5e5 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bbbbbb;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #909090 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  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: transparent!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: #22a5e5 !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #22a5e5 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #bbbbbb !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #116690 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #116690 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #888888 !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: #22a5e5;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #bbbbbb;
}
.mbr-gallery-filter li.active .btn {
  background-color: #22a5e5;
  border-color: #22a5e5;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #22a5e5;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d9effa;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #d9effa;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fbfbfb;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Lexend', 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: #22a5e5 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Lexend', 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: #22a5e5;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #22a5e5;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #22a5e5;
}
.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: #22a5e5;
  border-bottom-color: #22a5e5;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #22a5e5 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ffffff !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='%2322a5e5' %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;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-sFF0ciwnEL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFF0ciwnEL nav.navbar {
  position: fixed;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFF0ciwnEL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFF0ciwnEL .dropdown-item:hover,
.cid-sFF0ciwnEL .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sFF0ciwnEL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFF0ciwnEL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFF0ciwnEL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFF0ciwnEL .nav-link {
  position: relative;
}
.cid-sFF0ciwnEL .container {
  display: flex;
  margin: auto;
}
.cid-sFF0ciwnEL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown-menu,
.cid-sFF0ciwnEL .navbar.opened {
  background: #ffffff !important;
}
.cid-sFF0ciwnEL .nav-item:focus,
.cid-sFF0ciwnEL .nav-link:focus {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFF0ciwnEL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar.opened {
  transition: all 0.3s;
}
.cid-sFF0ciwnEL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFF0ciwnEL .navbar .navbar-logo img {
  width: auto;
}
.cid-sFF0ciwnEL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar.collapsed {
  justify-content: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFF0ciwnEL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFF0ciwnEL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFF0ciwnEL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFF0ciwnEL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFF0ciwnEL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFF0ciwnEL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFF0ciwnEL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFF0ciwnEL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFF0ciwnEL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown-item.active,
.cid-sFF0ciwnEL .dropdown-item:active {
  background-color: transparent;
}
.cid-sFF0ciwnEL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFF0ciwnEL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFF0ciwnEL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFF0ciwnEL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFF0ciwnEL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFF0ciwnEL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar {
    height: 70px;
  }
  .cid-sFF0ciwnEL .navbar.opened {
    height: auto;
  }
  .cid-sFF0ciwnEL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7mz40b1Sz {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7mz40b1Sz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mz40b1Sz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mz40b1Sz .mbr-section-subtitle {
  color: #353535;
}
.cid-v7mz40b1Sz .mbr-section-title {
  color: #353535;
}
.cid-v7nueLKilP {
  background-image: url("../../../assets/images/rumina-zamrozona-1a-mniejsza-1.png");
}
.cid-v7nueLKilP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7nueLKilP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2mFgjAr8g {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2mFgjAr8g img,
.cid-v2mFgjAr8g .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-v2mFgjAr8g .item:focus,
.cid-v2mFgjAr8g span:focus {
  outline: none;
}
.cid-v2mFgjAr8g .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2mFgjAr8g .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2mFgjAr8g .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2mFgjAr8g .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2mFgjAr8g .item-wrapper {
  background: transparent;
}
.cid-v2mFgjAr8g .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2mFgjAr8g .mbr-section-title {
  color: #232323;
}
.cid-v2mFgjAr8g .mbr-text,
.cid-v2mFgjAr8g .mbr-section-btn {
  text-align: left;
}
.cid-v2mFgjAr8g .item-title {
  text-align: center;
}
.cid-v2mFgjAr8g .item-subtitle {
  text-align: center;
}
.cid-v2mFgjAr8g .mbr-section-subtitle {
  color: #232323;
}
.cid-v2x7JgqDDk {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/04f-tlo-1-1366x768.png");
}
.cid-v2x7JgqDDk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2x7JgqDDk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2gbPBgGBF {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #96d465;
}
.cid-v2gbPBgGBF img,
.cid-v2gbPBgGBF .item-img {
  width: 100%;
}
.cid-v2gbPBgGBF .item:focus,
.cid-v2gbPBgGBF span:focus {
  outline: none;
}
.cid-v2gbPBgGBF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2gbPBgGBF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2gbPBgGBF .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2gbPBgGBF .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2gbPBgGBF .item-wrapper {
  background: transparent;
}
.cid-v2gbPBgGBF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2gbPBgGBF .mbr-section-title {
  color: #232323;
}
.cid-v2gbPBgGBF .mbr-text,
.cid-v2gbPBgGBF .mbr-section-btn {
  text-align: left;
}
.cid-v2gbPBgGBF .item-title {
  text-align: justify;
}
.cid-v2gbPBgGBF .item-subtitle {
  text-align: center;
}
.cid-v2x7LRDVcz {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/02-b-pieklo-tlo-1366x768.png");
}
.cid-v2x7LRDVcz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2x7LRDVcz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sFF3eJNZDT {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sFF3eJNZDT .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sFF3eJNZDT .icon-box {
  background: #e85a4f;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sFF3eJNZDT .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sFF3eJNZDT .card {
    margin-bottom: 2rem;
  }
  .cid-sFF3eJNZDT .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFF3eJNZDT .card-title,
.cid-sFF3eJNZDT .card-box {
  color: #000000;
}
.cid-sFF3eJNZDT .icon-text {
  color: #8e8d8a;
}
.cid-v2x7KhjqUY {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/7-tlo-1200x1200.png");
}
.cid-v2x7KhjqUY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2x7KhjqUY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sFF75ZhH2d {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #47b5ed;
}
@media (max-width: 991px) {
  .cid-sFF75ZhH2d .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sFF75ZhH2d img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sFF75ZhH2d .text-wrapper {
    padding: 2rem;
  }
}
.cid-sFF75ZhH2d .mbr-section-title {
  color: #000000;
}
.cid-sFF75ZhH2d .mbr-text {
  color: #000000;
}
.cid-v2x80H7eaV {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/odglos-1587667726-7794682-1280x800.png");
}
.cid-v2x80H7eaV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2x80H7eaV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3AB58ga2k {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v3AB58ga2k img {
  width: 120px;
  margin: auto;
}
.cid-v3AB58ga2k .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v3AB58ga2k .card {
    max-width: 12.5%;
  }
}
.cid-v3ABg6ThMw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v3ABg6ThMw img {
  width: 120px;
  margin: auto;
}
.cid-v3ABg6ThMw .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v3ABg6ThMw .card {
    max-width: 12.5%;
  }
}
.cid-v3ABj0xfs5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v3ABj0xfs5 img {
  width: 120px;
  margin: auto;
}
.cid-v3ABj0xfs5 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v3ABj0xfs5 .card {
    max-width: 12.5%;
  }
}
.cid-v3ABhblPOA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v3ABhblPOA img {
  width: 120px;
  margin: auto;
}
.cid-v3ABhblPOA .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v3ABhblPOA .card {
    max-width: 12.5%;
  }
}
.cid-v3ABhDnFCr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v3ABhDnFCr img {
  width: 120px;
  margin: auto;
}
.cid-v3ABhDnFCr .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v3ABhDnFCr .card {
    max-width: 12.5%;
  }
}
.cid-v3AF11saTk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v3AF11saTk img {
  width: 120px;
  margin: auto;
}
.cid-v3AF11saTk .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v3AF11saTk .card {
    max-width: 12.5%;
  }
}
.cid-v3ABgIUwSQ {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v3ABgIUwSQ img {
  width: 120px;
  margin: auto;
}
.cid-v3ABgIUwSQ .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v3ABgIUwSQ .card {
    max-width: 12.5%;
  }
}
.cid-v2i6pN53On {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v7m7Q0UPjO {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/karambola-steam-tlo-1438-810-1438x810.png");
}
.cid-v7m7Q0UPjO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7m7Q0UPjO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2nPuz1jlY {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v2nPuz1jlY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2nPuz1jlY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2nPuz1jlY .mbr-section-title {
  color: #ffffff;
}
.cid-v2nPuz1jlY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2goHvPda7 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
@media (min-width: 992px) {
  .cid-v2goHvPda7 .carousel {
    min-height: 600px;
  }
  .cid-v2goHvPda7 .carousel img {
    max-height: 600px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v2goHvPda7 .carousel {
    min-height: 390px;
  }
  .cid-v2goHvPda7 .carousel img {
    max-height: 390px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v2goHvPda7 .carousel {
    min-height: 330px;
  }
  .cid-v2goHvPda7 .carousel img {
    max-height: 330px;
    object-fit: contain;
  }
  .cid-v2goHvPda7 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v2goHvPda7 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v2goHvPda7 .carousel,
.cid-v2goHvPda7 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v2goHvPda7 .item-wrapper {
  width: 100%;
}
.cid-v2goHvPda7 .carousel-caption {
  bottom: 40px;
  z-index: 1;
}
.cid-v2goHvPda7 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v2goHvPda7 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v2goHvPda7 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v2goHvPda7 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v2goHvPda7 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v2goHvPda7 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v2goHvPda7 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v2goHvPda7 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v2goHvPda7 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v2goHvPda7 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v2goHvPda7 .carousel-indicators li.active,
.cid-v2goHvPda7 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v2goHvPda7 .carousel-indicators li::after,
.cid-v2goHvPda7 .carousel-indicators li::before {
  content: none;
}
.cid-v2goHvPda7 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v2goHvPda7 .carousel-indicators {
    display: none !important;
  }
}
.cid-v2goHvPda7 .mbr-section-text {
  color: #ffffff;
}
.cid-v3MkOC0yRM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v3MkOC0yRM img,
.cid-v3MkOC0yRM .item-img {
  width: 100%;
}
.cid-v3MkOC0yRM .item:focus,
.cid-v3MkOC0yRM span:focus {
  outline: none;
}
.cid-v3MkOC0yRM .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3MkOC0yRM .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3MkOC0yRM .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3MkOC0yRM .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3MkOC0yRM .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3MkOC0yRM .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3MkOC0yRM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3MkOC0yRM .mbr-section-title {
  color: #ffffff;
}
.cid-v3MkOC0yRM .mbr-text,
.cid-v3MkOC0yRM .mbr-section-btn {
  text-align: left;
}
.cid-v3MkOC0yRM .item-title {
  text-align: left;
}
.cid-v3MkOC0yRM .item-subtitle {
  text-align: left;
}
.cid-v3MkOC0yRM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v7m7TiU32E {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/04f-tlo-1-1366x768.png");
}
.cid-v7m7TiU32E .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7m7TiU32E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2h8TUNX9F {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #96d465;
}
.cid-v2h8TUNX9F .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-v2h8TUNX9F form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-v2h8TUNX9F form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-v2h8TUNX9F form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-v2h8TUNX9F .mbr-section-subtitle {
  text-align: center;
}
.cid-v2h89PzHfH {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #96d465;
}
.cid-v2h89PzHfH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2h89PzHfH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2h89PzHfH .media-container-row {
  justify-content: space-between;
  justify-content: center;
}
.cid-v2h89PzHfH .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-v2h89PzHfH .text-content {
    max-width: none;
  }
}
.cid-v2h89PzHfH .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-v2h89PzHfH .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-v2h89PzHfH .mbr-iconfont-social:hover {
  background-color: #ffffff;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-v2h89PzHfH .icons {
    justify-content: center !important;
  }
  .cid-v2h89PzHfH .text-content * {
    text-align: center;
  }
}
.cid-v2h89PzHfH .mbr-section-title {
  text-align: justify;
}
.cid-v2h89PzHfH .mbr-text {
  text-align: justify;
}
.cid-v7mgbqn9Ly {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/7-tlo-1200x1200.png");
}
.cid-v7mgbqn9Ly .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mgbqn9Ly .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sFF3CYc3p7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-v2mnY2Yir6 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2mnY2Yir6 nav.navbar {
  position: fixed;
}
.cid-v2mnY2Yir6 .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-v2mnY2Yir6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2mnY2Yir6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2mnY2Yir6 .dropdown-item:hover,
.cid-v2mnY2Yir6 .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-v2mnY2Yir6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2mnY2Yir6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2mnY2Yir6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2mnY2Yir6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2mnY2Yir6 .nav-link {
  position: relative;
}
.cid-v2mnY2Yir6 .container {
  display: flex;
  margin: auto;
}
.cid-v2mnY2Yir6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2mnY2Yir6 .dropdown-menu,
.cid-v2mnY2Yir6 .navbar.opened {
  background: #ffffff !important;
}
.cid-v2mnY2Yir6 .nav-item:focus,
.cid-v2mnY2Yir6 .nav-link:focus {
  outline: none;
}
.cid-v2mnY2Yir6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2mnY2Yir6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2mnY2Yir6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2mnY2Yir6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2mnY2Yir6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2mnY2Yir6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2mnY2Yir6 .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-v2mnY2Yir6 .navbar.opened {
  transition: all 0.3s;
}
.cid-v2mnY2Yir6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2mnY2Yir6 .navbar .navbar-logo img {
  width: auto;
}
.cid-v2mnY2Yir6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2mnY2Yir6 .navbar.collapsed {
  justify-content: center;
}
.cid-v2mnY2Yir6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2mnY2Yir6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v2mnY2Yir6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2mnY2Yir6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2mnY2Yir6 .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-v2mnY2Yir6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2mnY2Yir6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2mnY2Yir6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2mnY2Yir6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2mnY2Yir6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2mnY2Yir6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2mnY2Yir6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2mnY2Yir6 .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-v2mnY2Yir6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2mnY2Yir6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2mnY2Yir6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2mnY2Yir6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2mnY2Yir6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2mnY2Yir6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2mnY2Yir6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2mnY2Yir6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2mnY2Yir6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2mnY2Yir6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2mnY2Yir6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2mnY2Yir6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2mnY2Yir6 .dropdown-item.active,
.cid-v2mnY2Yir6 .dropdown-item:active {
  background-color: transparent;
}
.cid-v2mnY2Yir6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2mnY2Yir6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2mnY2Yir6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2mnY2Yir6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v2mnY2Yir6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2mnY2Yir6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2mnY2Yir6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2mnY2Yir6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2mnY2Yir6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2mnY2Yir6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v2mnY2Yir6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2mnY2Yir6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2mnY2Yir6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2mnY2Yir6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2mnY2Yir6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2mnY2Yir6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2mnY2Yir6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2mnY2Yir6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2mnY2Yir6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2mnY2Yir6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2mnY2Yir6 .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-v2mnY2Yir6 .navbar {
    height: 70px;
  }
  .cid-v2mnY2Yir6 .navbar.opened {
    height: auto;
  }
  .cid-v2mnY2Yir6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3B031GWuK {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/04f-tlo-1-1366x768.png");
}
.cid-v3B031GWuK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3B031GWuK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2mypkoIRT {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v2mypkoIRT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mypkoIRT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2mypkoIRT .video-wrapper iframe {
  width: 100%;
}
.cid-v2mypkoIRT .mbr-section-title,
.cid-v2mypkoIRT .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v2mypkoIRT .text-wrapper {
    padding: 2rem;
  }
}
.cid-v2mypkoIRT .mbr-section-title {
  color: #ffffff;
}
.cid-v2mypkoIRT .mbr-text {
  color: #ffffff;
}
.cid-v2mypkoIRT .mbr-description {
  color: #ffffff;
}
.cid-v2wZWle70R {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/karambola-steam-tlo-1438-810-1438x810.png");
}
.cid-v2wZWle70R .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2wZWle70R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2mwYDVq3P {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v2mwYDVq3P .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mwYDVq3P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2mwYDVq3P .video-wrapper iframe {
  width: 100%;
}
.cid-v2mwYDVq3P .mbr-section-title,
.cid-v2mwYDVq3P .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v2mwYDVq3P .text-wrapper {
    padding: 2rem;
  }
}
.cid-v2mwYDVq3P .mbr-text {
  color: #ffffff;
}
.cid-v2mwYDVq3P .mbr-section-title {
  color: #ffffff;
}
.cid-v2mwYDVq3P .mbr-description {
  color: #ffffff;
}
.cid-v3uZkHmbBs {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v3uZkHmbBs .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3uZkHmbBs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3uZkHmbBs .item {
  padding-bottom: 2rem;
}
.cid-v3uZkHmbBs .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v3uZkHmbBs .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v3uZkHmbBs .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v3uZkHmbBs .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v3uZkHmbBs .carousel-control,
.cid-v3uZkHmbBs .close {
  background: #1b1b1b;
}
.cid-v3uZkHmbBs .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v3uZkHmbBs .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v3uZkHmbBs .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v3uZkHmbBs .carousel-control-next span {
  margin-left: 5px;
}
.cid-v3uZkHmbBs .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v3uZkHmbBs .close::before {
  content: '\e91a';
}
.cid-v3uZkHmbBs .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v3uZkHmbBs .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v3uZkHmbBs .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3uZkHmbBs .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v3uZkHmbBs .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v3uZkHmbBs .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v3uZkHmbBs .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v3uZkHmbBs .carousel-indicators li.active,
.cid-v3uZkHmbBs .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v3uZkHmbBs .carousel-indicators li::after,
.cid-v3uZkHmbBs .carousel-indicators li::before {
  content: none;
}
.cid-v3uZkHmbBs .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v3uZkHmbBs .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v3uZkHmbBs .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v3uZkHmbBs .carousel-indicators {
    display: none;
  }
}
.cid-v3uZkHmbBs .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v3uZkHmbBs .carousel-inner > .active {
  display: block;
}
.cid-v3uZkHmbBs .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3uZkHmbBs .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v3uZkHmbBs .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v3uZkHmbBs .carousel-control,
  .cid-v3uZkHmbBs .carousel-indicators,
  .cid-v3uZkHmbBs .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v3uZkHmbBs .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v3uZkHmbBs .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v3uZkHmbBs .carousel-indicators .active,
.cid-v3uZkHmbBs .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v3uZkHmbBs .carousel-indicators .active {
  background: #fff;
}
.cid-v3uZkHmbBs .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v3uZkHmbBs .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v3uZkHmbBs .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v3uZkHmbBs .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v3uZkHmbBs .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v3uZkHmbBs .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v3uZkHmbBs .carousel {
  width: 100%;
}
.cid-v3uZkHmbBs .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v3uZkHmbBs .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v3uZkHmbBs .modal.fade .modal-dialog,
.cid-v3uZkHmbBs .modal.in .modal-dialog {
  transform: none;
}
.cid-v3uZkHmbBs .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v3uZkHmbBs H6 {
  text-align: center;
}
.cid-v3uZkHmbBs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3uZkHmbBs .mbr-section-title {
  color: #ffffff;
}
.cid-v2nRBqZfEB {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v2nRBqZfEB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2nRBqZfEB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2nRBqZfEB .mbr-section-title {
  color: #ffffff;
}
.cid-v2nRlQlMQ7 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
@media (min-width: 992px) {
  .cid-v2nRlQlMQ7 .carousel {
    min-height: 1200px;
  }
  .cid-v2nRlQlMQ7 .carousel img {
    max-height: 1200px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v2nRlQlMQ7 .carousel {
    min-height: 780px;
  }
  .cid-v2nRlQlMQ7 .carousel img {
    max-height: 780px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v2nRlQlMQ7 .carousel {
    min-height: 660px;
  }
  .cid-v2nRlQlMQ7 .carousel img {
    max-height: 660px;
    object-fit: contain;
  }
  .cid-v2nRlQlMQ7 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v2nRlQlMQ7 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v2nRlQlMQ7 .carousel,
.cid-v2nRlQlMQ7 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v2nRlQlMQ7 .item-wrapper {
  width: 100%;
}
.cid-v2nRlQlMQ7 .carousel-caption {
  bottom: 40px;
  z-index: 1;
}
.cid-v2nRlQlMQ7 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v2nRlQlMQ7 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v2nRlQlMQ7 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v2nRlQlMQ7 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v2nRlQlMQ7 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v2nRlQlMQ7 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v2nRlQlMQ7 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v2nRlQlMQ7 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v2nRlQlMQ7 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v2nRlQlMQ7 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v2nRlQlMQ7 .carousel-indicators li.active,
.cid-v2nRlQlMQ7 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v2nRlQlMQ7 .carousel-indicators li::after,
.cid-v2nRlQlMQ7 .carousel-indicators li::before {
  content: none;
}
.cid-v2nRlQlMQ7 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v2nRlQlMQ7 .carousel-indicators {
    display: none !important;
  }
}
.cid-v3AV7ssKXs {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v3AV7ssKXs img {
  width: 120px;
  margin: auto;
}
.cid-v3AV7ssKXs .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v3AV7ssKXs .card {
    max-width: 12.5%;
  }
}
.cid-v3AV8palZV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v3AV8palZV img {
  width: 120px;
  margin: auto;
}
.cid-v3AV8palZV .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v3AV8palZV .card {
    max-width: 12.5%;
  }
}
.cid-v3AVC39XxX {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v2x15FOmN1 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/7-tlo-1200x1200.png");
}
.cid-v2x15FOmN1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2x15FOmN1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2wp6BE144 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2wp6BE144 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2wp6BE144 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3uZV6QLVZ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v3uZV6QLVZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3uZV6QLVZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3uZV6QLVZ .item {
  padding-bottom: 2rem;
}
.cid-v3uZV6QLVZ .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v3uZV6QLVZ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v3uZV6QLVZ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v3uZV6QLVZ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v3uZV6QLVZ .carousel-control,
.cid-v3uZV6QLVZ .close {
  background: #1b1b1b;
}
.cid-v3uZV6QLVZ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v3uZV6QLVZ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v3uZV6QLVZ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v3uZV6QLVZ .carousel-control-next span {
  margin-left: 5px;
}
.cid-v3uZV6QLVZ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v3uZV6QLVZ .close::before {
  content: '\e91a';
}
.cid-v3uZV6QLVZ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v3uZV6QLVZ .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v3uZV6QLVZ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3uZV6QLVZ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v3uZV6QLVZ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v3uZV6QLVZ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v3uZV6QLVZ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v3uZV6QLVZ .carousel-indicators li.active,
.cid-v3uZV6QLVZ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v3uZV6QLVZ .carousel-indicators li::after,
.cid-v3uZV6QLVZ .carousel-indicators li::before {
  content: none;
}
.cid-v3uZV6QLVZ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v3uZV6QLVZ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v3uZV6QLVZ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v3uZV6QLVZ .carousel-indicators {
    display: none;
  }
}
.cid-v3uZV6QLVZ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v3uZV6QLVZ .carousel-inner > .active {
  display: block;
}
.cid-v3uZV6QLVZ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3uZV6QLVZ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v3uZV6QLVZ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v3uZV6QLVZ .carousel-control,
  .cid-v3uZV6QLVZ .carousel-indicators,
  .cid-v3uZV6QLVZ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v3uZV6QLVZ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v3uZV6QLVZ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v3uZV6QLVZ .carousel-indicators .active,
.cid-v3uZV6QLVZ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v3uZV6QLVZ .carousel-indicators .active {
  background: #fff;
}
.cid-v3uZV6QLVZ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v3uZV6QLVZ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v3uZV6QLVZ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v3uZV6QLVZ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v3uZV6QLVZ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v3uZV6QLVZ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v3uZV6QLVZ .carousel {
  width: 100%;
}
.cid-v3uZV6QLVZ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v3uZV6QLVZ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v3uZV6QLVZ .modal.fade .modal-dialog,
.cid-v3uZV6QLVZ .modal.in .modal-dialog {
  transform: none;
}
.cid-v3uZV6QLVZ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v3uZV6QLVZ H6 {
  text-align: center;
}
.cid-v2x17YEhPx {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/odglos4-2000x1125.jpg");
}
.cid-v2x17YEhPx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2x17YEhPx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2mCSijK7b {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v2mCSijK7b .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mCSijK7b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2mCSijK7b .video-wrapper iframe {
  width: 100%;
}
.cid-v2mCSijK7b .mbr-section-title,
.cid-v2mCSijK7b .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v2mCSijK7b .text-wrapper {
    padding: 2rem;
  }
}
.cid-v2mCSijK7b .mbr-section-title {
  color: #ffffff;
}
.cid-v2mCSijK7b .mbr-text {
  color: #ffffff;
}
.cid-v2mCSijK7b .mbr-description {
  color: #ffffff;
}
.cid-v5n9vnEoUq {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v5n9vnEoUq .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-v3ATTQv9Oy {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v3ATTQv9Oy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ATTQv9Oy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ATTQv9Oy .item {
  padding-bottom: 2rem;
}
.cid-v3ATTQv9Oy .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v3ATTQv9Oy .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v3ATTQv9Oy .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v3ATTQv9Oy .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v3ATTQv9Oy .carousel-control,
.cid-v3ATTQv9Oy .close {
  background: #1b1b1b;
}
.cid-v3ATTQv9Oy .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v3ATTQv9Oy .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v3ATTQv9Oy .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v3ATTQv9Oy .carousel-control-next span {
  margin-left: 5px;
}
.cid-v3ATTQv9Oy .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v3ATTQv9Oy .close::before {
  content: '\e91a';
}
.cid-v3ATTQv9Oy .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v3ATTQv9Oy .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v3ATTQv9Oy .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3ATTQv9Oy .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v3ATTQv9Oy .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v3ATTQv9Oy .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v3ATTQv9Oy .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v3ATTQv9Oy .carousel-indicators li.active,
.cid-v3ATTQv9Oy .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v3ATTQv9Oy .carousel-indicators li::after,
.cid-v3ATTQv9Oy .carousel-indicators li::before {
  content: none;
}
.cid-v3ATTQv9Oy .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v3ATTQv9Oy .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v3ATTQv9Oy .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v3ATTQv9Oy .carousel-indicators {
    display: none;
  }
}
.cid-v3ATTQv9Oy .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v3ATTQv9Oy .carousel-inner > .active {
  display: block;
}
.cid-v3ATTQv9Oy .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3ATTQv9Oy .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v3ATTQv9Oy .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v3ATTQv9Oy .carousel-control,
  .cid-v3ATTQv9Oy .carousel-indicators,
  .cid-v3ATTQv9Oy .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v3ATTQv9Oy .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v3ATTQv9Oy .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v3ATTQv9Oy .carousel-indicators .active,
.cid-v3ATTQv9Oy .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v3ATTQv9Oy .carousel-indicators .active {
  background: #fff;
}
.cid-v3ATTQv9Oy .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v3ATTQv9Oy .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v3ATTQv9Oy .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v3ATTQv9Oy .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v3ATTQv9Oy .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v3ATTQv9Oy .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v3ATTQv9Oy .carousel {
  width: 100%;
}
.cid-v3ATTQv9Oy .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v3ATTQv9Oy .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v3ATTQv9Oy .modal.fade .modal-dialog,
.cid-v3ATTQv9Oy .modal.in .modal-dialog {
  transform: none;
}
.cid-v3ATTQv9Oy .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v3ATTQv9Oy H6 {
  text-align: center;
}
.cid-v3ATTQv9Oy .mbr-section-title {
  color: #ffffff;
}
.cid-v2wLZ5jRzz {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v2wLZ5jRzz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2wLZ5jRzz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2wLZ5jRzz .mbr-section-title {
  color: #ffffff;
}
.cid-v2wLMj361N {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2wLMj361N .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2wLMj361N .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-v2wLMj361N .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v2wLMj361N .row {
  flex-direction: row-reverse;
}
.cid-v2wLMj361N img {
  width: 100%;
}
.cid-v2x1emCuj9 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/02-b-pieklo-tlo-1366x768.png");
}
.cid-v2x1emCuj9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2x1emCuj9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2wBzQfyuk {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2wBzQfyuk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2wBzQfyuk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2wCtm3RDL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2wCtm3RDL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2wCtm3RDL .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-v2wCtm3RDL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v2wCtm3RDL .row {
  flex-direction: row-reverse;
}
.cid-v2wCtm3RDL img {
  width: 100%;
}
.cid-v5zuXVqvcv {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v5zuXVqvcv img {
  width: 120px;
  margin: auto;
}
.cid-v5zuXVqvcv .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v5zuXVqvcv .card {
    max-width: 12.5%;
  }
}
.cid-v2wYa3hF5F {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/04f-tlo-1-1366x768.png");
}
.cid-v2wYa3hF5F .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2wYa3hF5F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Bm9qURuV {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v3Bm9qURuV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Bm9qURuV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Bm9qURuV .mbr-section-title {
  color: #ffffff;
}
.cid-v3Bm9qURuV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3BnXMI8hz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3BnXMI8hz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3BnXMI8hz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3BnXMI8hz .video-wrapper iframe {
  width: 100%;
}
.cid-v3BnXMI8hz .mbr-section-title,
.cid-v3BnXMI8hz .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v3BnXMI8hz .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3BnXMI8hz .mbr-text {
  color: #ffffff;
}
.cid-v3BnXMI8hz .mbr-description {
  color: #ffffff;
}
.cid-v3G4e6A6cx {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v3G4e6A6cx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3G4e6A6cx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3G4e6A6cx .item {
  padding-bottom: 2rem;
}
.cid-v3G4e6A6cx .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v3G4e6A6cx .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v3G4e6A6cx .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v3G4e6A6cx .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v3G4e6A6cx .carousel-control,
.cid-v3G4e6A6cx .close {
  background: #1b1b1b;
}
.cid-v3G4e6A6cx .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v3G4e6A6cx .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v3G4e6A6cx .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v3G4e6A6cx .carousel-control-next span {
  margin-left: 5px;
}
.cid-v3G4e6A6cx .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v3G4e6A6cx .close::before {
  content: '\e91a';
}
.cid-v3G4e6A6cx .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v3G4e6A6cx .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v3G4e6A6cx .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3G4e6A6cx .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v3G4e6A6cx .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v3G4e6A6cx .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v3G4e6A6cx .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v3G4e6A6cx .carousel-indicators li.active,
.cid-v3G4e6A6cx .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v3G4e6A6cx .carousel-indicators li::after,
.cid-v3G4e6A6cx .carousel-indicators li::before {
  content: none;
}
.cid-v3G4e6A6cx .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v3G4e6A6cx .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v3G4e6A6cx .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v3G4e6A6cx .carousel-indicators {
    display: none;
  }
}
.cid-v3G4e6A6cx .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v3G4e6A6cx .carousel-inner > .active {
  display: block;
}
.cid-v3G4e6A6cx .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3G4e6A6cx .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v3G4e6A6cx .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v3G4e6A6cx .carousel-control,
  .cid-v3G4e6A6cx .carousel-indicators,
  .cid-v3G4e6A6cx .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v3G4e6A6cx .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v3G4e6A6cx .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v3G4e6A6cx .carousel-indicators .active,
.cid-v3G4e6A6cx .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v3G4e6A6cx .carousel-indicators .active {
  background: #fff;
}
.cid-v3G4e6A6cx .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v3G4e6A6cx .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v3G4e6A6cx .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v3G4e6A6cx .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v3G4e6A6cx .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v3G4e6A6cx .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v3G4e6A6cx .carousel {
  width: 100%;
}
.cid-v3G4e6A6cx .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v3G4e6A6cx .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v3G4e6A6cx .modal.fade .modal-dialog,
.cid-v3G4e6A6cx .modal.in .modal-dialog {
  transform: none;
}
.cid-v3G4e6A6cx .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v3G4e6A6cx H6 {
  text-align: center;
}
.cid-v3G4e6A6cx .mbr-section-title {
  color: #ffffff;
}
.cid-v3G4e6A6cx .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3BgDJW5HP {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v3BgDJW5HP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3BgDJW5HP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3BgDJW5HP .item {
  padding-bottom: 2rem;
}
.cid-v3BgDJW5HP .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v3BgDJW5HP .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v3BgDJW5HP .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v3BgDJW5HP .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v3BgDJW5HP .carousel-control,
.cid-v3BgDJW5HP .close {
  background: #1b1b1b;
}
.cid-v3BgDJW5HP .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v3BgDJW5HP .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v3BgDJW5HP .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v3BgDJW5HP .carousel-control-next span {
  margin-left: 5px;
}
.cid-v3BgDJW5HP .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v3BgDJW5HP .close::before {
  content: '\e91a';
}
.cid-v3BgDJW5HP .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v3BgDJW5HP .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v3BgDJW5HP .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3BgDJW5HP .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v3BgDJW5HP .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v3BgDJW5HP .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v3BgDJW5HP .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v3BgDJW5HP .carousel-indicators li.active,
.cid-v3BgDJW5HP .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v3BgDJW5HP .carousel-indicators li::after,
.cid-v3BgDJW5HP .carousel-indicators li::before {
  content: none;
}
.cid-v3BgDJW5HP .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v3BgDJW5HP .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v3BgDJW5HP .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v3BgDJW5HP .carousel-indicators {
    display: none;
  }
}
.cid-v3BgDJW5HP .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v3BgDJW5HP .carousel-inner > .active {
  display: block;
}
.cid-v3BgDJW5HP .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3BgDJW5HP .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v3BgDJW5HP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v3BgDJW5HP .carousel-control,
  .cid-v3BgDJW5HP .carousel-indicators,
  .cid-v3BgDJW5HP .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v3BgDJW5HP .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v3BgDJW5HP .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v3BgDJW5HP .carousel-indicators .active,
.cid-v3BgDJW5HP .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v3BgDJW5HP .carousel-indicators .active {
  background: #fff;
}
.cid-v3BgDJW5HP .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v3BgDJW5HP .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v3BgDJW5HP .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v3BgDJW5HP .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v3BgDJW5HP .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v3BgDJW5HP .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v3BgDJW5HP .carousel {
  width: 100%;
}
.cid-v3BgDJW5HP .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v3BgDJW5HP .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v3BgDJW5HP .modal.fade .modal-dialog,
.cid-v3BgDJW5HP .modal.in .modal-dialog {
  transform: none;
}
.cid-v3BgDJW5HP .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v3BgDJW5HP H6 {
  text-align: center;
}
.cid-v3BgDJW5HP .mbr-section-title {
  color: #ffffff;
}
.cid-v3BgDJW5HP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2x5RSltX4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/04f-tlo-1-1366x768.png");
}
.cid-v2x5RSltX4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2x5RSltX4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6Hkp5Fy2H {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v6Hkp5Fy2H .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6Hkp5Fy2H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6Hkp5Fy2H .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6Hkp5Fy2H .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v6Hko7rE5z {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v6Hko7rE5z .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6Hko7rE5z .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-v6Hko7rE5z .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v6Hko7rE5z .row {
  flex-direction: row-reverse;
}
.cid-v6Hko7rE5z img {
  width: 100%;
}
.cid-v6Hko7rE5z .mbr-description {
  color: #ffffff;
}
.cid-v6MXFTiy3M {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/02-b-pieklo-tlo-1366x768.png");
}
.cid-v6MXFTiy3M .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6MXFTiy3M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2x5N7njt3 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v2x5N7njt3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2x5N7njt3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2x5N7njt3 .mbr-section-title {
  color: #ffffff;
}
.cid-v2x5N7njt3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3BOAV2sAK {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3BOAV2sAK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3BOAV2sAK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3BOAV2sAK .video-wrapper iframe {
  width: 100%;
}
.cid-v3BOAV2sAK .mbr-section-title,
.cid-v3BOAV2sAK .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v3BOAV2sAK .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3BOAV2sAK .mbr-section-title {
  color: #ffffff;
}
.cid-v3BOAV2sAK .mbr-text {
  color: #ffffff;
}
.cid-v3BQ2y7fxP {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3BQ2y7fxP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3BQ2y7fxP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3BQ2y7fxP .video-wrapper iframe {
  width: 100%;
}
.cid-v3BQ2y7fxP .mbr-section-title,
.cid-v3BQ2y7fxP .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v3BQ2y7fxP .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3BQ2y7fxP .mbr-section-title {
  color: #ffffff;
}
.cid-v3BQ2y7fxP .mbr-text {
  color: #ffffff;
}
.cid-v5zHdDSLpt {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v5zHdDSLpt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5zHdDSLpt .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-v5zHdDSLpt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v5zHdDSLpt .row {
  flex-direction: row-reverse;
}
.cid-v5zHdDSLpt img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v5zHdDSLpt .text-wrapper {
    padding: 2rem;
  }
}
.cid-v5zHdDSLpt .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-v3BQ39eYCq {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3BQ39eYCq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3BQ39eYCq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3BQ39eYCq .video-wrapper iframe {
  width: 100%;
}
.cid-v3BQ39eYCq .mbr-section-title,
.cid-v3BQ39eYCq .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v3BQ39eYCq .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3BQ39eYCq .mbr-section-title {
  color: #ffffff;
}
.cid-v3BQ39eYCq .mbr-text {
  color: #ffffff;
}
.cid-v5zxpt3N3p {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v5zxpt3N3p img,
.cid-v5zxpt3N3p .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v5zxpt3N3p .item:focus,
.cid-v5zxpt3N3p span:focus {
  outline: none;
}
.cid-v5zxpt3N3p .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v5zxpt3N3p .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v5zxpt3N3p .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5zxpt3N3p .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v5zxpt3N3p .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v5zxpt3N3p .mbr-section-title {
  color: #ffffff;
  text-align: justify;
}
.cid-v3BQMZlF4F {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v3BQMZlF4F .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3BQMZlF4F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3BQMZlF4F .item {
  padding-bottom: 2rem;
}
.cid-v3BQMZlF4F .item-wrapper {
  position: relative;
}
.cid-v3BQMZlF4F .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v3BQMZlF4F .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v3BQMZlF4F .carousel-control,
.cid-v3BQMZlF4F .close {
  background: #1b1b1b;
}
.cid-v3BQMZlF4F .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v3BQMZlF4F .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v3BQMZlF4F .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v3BQMZlF4F .carousel-control-next span {
  margin-left: 5px;
}
.cid-v3BQMZlF4F .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v3BQMZlF4F .close::before {
  content: '\e91a';
}
.cid-v3BQMZlF4F .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v3BQMZlF4F .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v3BQMZlF4F .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3BQMZlF4F .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v3BQMZlF4F .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v3BQMZlF4F .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v3BQMZlF4F .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v3BQMZlF4F .carousel-indicators li.active,
.cid-v3BQMZlF4F .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v3BQMZlF4F .carousel-indicators li::after,
.cid-v3BQMZlF4F .carousel-indicators li::before {
  content: none;
}
.cid-v3BQMZlF4F .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v3BQMZlF4F .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v3BQMZlF4F .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v3BQMZlF4F .carousel-indicators {
    display: none;
  }
}
.cid-v3BQMZlF4F .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v3BQMZlF4F .carousel-inner > .active {
  display: block;
}
.cid-v3BQMZlF4F .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3BQMZlF4F .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v3BQMZlF4F .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v3BQMZlF4F .carousel-control,
  .cid-v3BQMZlF4F .carousel-indicators,
  .cid-v3BQMZlF4F .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v3BQMZlF4F .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v3BQMZlF4F .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v3BQMZlF4F .carousel-indicators .active,
.cid-v3BQMZlF4F .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v3BQMZlF4F .carousel-indicators .active {
  background: #fff;
}
.cid-v3BQMZlF4F .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v3BQMZlF4F .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v3BQMZlF4F .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v3BQMZlF4F .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v3BQMZlF4F .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v3BQMZlF4F .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v3BQMZlF4F .carousel {
  width: 100%;
}
.cid-v3BQMZlF4F .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v3BQMZlF4F .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v3BQMZlF4F .modal.fade .modal-dialog,
.cid-v3BQMZlF4F .modal.in .modal-dialog {
  transform: none;
}
.cid-v3BQMZlF4F .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v3BQMZlF4F H6 {
  text-align: center;
}
.cid-v3BQMZlF4F .mbr-section-title {
  color: #ffffff;
}
.cid-v3BQMZlF4F .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3BQMZlF4F .mbr-item-subtitle {
  color: #ffffff;
}
.cid-v6MXfBC1aT {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/04f-tlo-1366x768.png");
}
.cid-v6MXfBC1aT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6MXfBC1aT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3M2fvpScn {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v3M2fvpScn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3M2fvpScn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3M2fvpScn .mbr-section-title {
  color: #ffffff;
}
.cid-v3M0Nt9j8n {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-v3M0Nt9j8n .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3M0Nt9j8n .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-v3M0Nt9j8n .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3M0Nt9j8n .row {
  flex-direction: row-reverse;
}
.cid-v3M0Nt9j8n img {
  width: 100%;
}
.cid-v3M0Nt9j8n .mbr-description {
  color: #ffffff;
}
.cid-v7i0NI7pMQ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/7-tlo-1200x1200.png");
}
.cid-v7i0NI7pMQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7i0NI7pMQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2mnYdxnjF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-v2CWRcXdSb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2CWRcXdSb nav.navbar {
  position: fixed;
}
.cid-v2CWRcXdSb .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-v2CWRcXdSb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2CWRcXdSb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2CWRcXdSb .dropdown-item:hover,
.cid-v2CWRcXdSb .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-v2CWRcXdSb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2CWRcXdSb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2CWRcXdSb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2CWRcXdSb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2CWRcXdSb .nav-link {
  position: relative;
}
.cid-v2CWRcXdSb .container {
  display: flex;
  margin: auto;
}
.cid-v2CWRcXdSb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2CWRcXdSb .dropdown-menu,
.cid-v2CWRcXdSb .navbar.opened {
  background: #ffffff !important;
}
.cid-v2CWRcXdSb .nav-item:focus,
.cid-v2CWRcXdSb .nav-link:focus {
  outline: none;
}
.cid-v2CWRcXdSb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2CWRcXdSb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2CWRcXdSb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2CWRcXdSb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2CWRcXdSb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2CWRcXdSb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2CWRcXdSb .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-v2CWRcXdSb .navbar.opened {
  transition: all 0.3s;
}
.cid-v2CWRcXdSb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2CWRcXdSb .navbar .navbar-logo img {
  width: auto;
}
.cid-v2CWRcXdSb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2CWRcXdSb .navbar.collapsed {
  justify-content: center;
}
.cid-v2CWRcXdSb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2CWRcXdSb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v2CWRcXdSb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2CWRcXdSb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2CWRcXdSb .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-v2CWRcXdSb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2CWRcXdSb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2CWRcXdSb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2CWRcXdSb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2CWRcXdSb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2CWRcXdSb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2CWRcXdSb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2CWRcXdSb .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-v2CWRcXdSb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2CWRcXdSb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2CWRcXdSb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2CWRcXdSb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2CWRcXdSb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2CWRcXdSb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2CWRcXdSb .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2CWRcXdSb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2CWRcXdSb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2CWRcXdSb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2CWRcXdSb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2CWRcXdSb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2CWRcXdSb .dropdown-item.active,
.cid-v2CWRcXdSb .dropdown-item:active {
  background-color: transparent;
}
.cid-v2CWRcXdSb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2CWRcXdSb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2CWRcXdSb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2CWRcXdSb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v2CWRcXdSb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2CWRcXdSb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2CWRcXdSb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2CWRcXdSb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2CWRcXdSb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2CWRcXdSb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v2CWRcXdSb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2CWRcXdSb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2CWRcXdSb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2CWRcXdSb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2CWRcXdSb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2CWRcXdSb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2CWRcXdSb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2CWRcXdSb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2CWRcXdSb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2CWRcXdSb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2CWRcXdSb .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-v2CWRcXdSb .navbar {
    height: 70px;
  }
  .cid-v2CWRcXdSb .navbar.opened {
    height: auto;
  }
  .cid-v2CWRcXdSb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2CWR3Pt3P {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2CWR3Pt3P .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2CWR3Pt3P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2CWR3Pt3P .mbr-section-title {
  color: #000000;
}
.cid-v2CWRizb9D {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/the-flight-of-the-quirky-owl-still2-1900x1069.jpeg");
}
.cid-v2CWRizb9D .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2CWRizb9D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3G8cA5Xeu {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v3G8cA5Xeu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3G8cA5Xeu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3G8cA5Xeu .mbr-section-title {
  color: #ffffff;
}
.cid-v3G8cA5Xeu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3Gbo0Fr4u {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3Gbo0Fr4u .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Gbo0Fr4u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Gbo0Fr4u .video-wrapper iframe {
  width: 100%;
}
.cid-v3Gbo0Fr4u .mbr-section-title,
.cid-v3Gbo0Fr4u .mbr-section-subtitle,
.cid-v3Gbo0Fr4u .mbr-text {
  text-align: center;
}
.cid-v3pI3vIKCy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3pI3vIKCy .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-v3pI3vIKCy .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v3oFQsk0rn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v3oFQsk0rn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3oFQsk0rn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3oFQsk0rn .item {
  padding-bottom: 2rem;
}
.cid-v3oFQsk0rn .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v3oFQsk0rn .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v3oFQsk0rn .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v3oFQsk0rn .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v3oFQsk0rn .carousel-control,
.cid-v3oFQsk0rn .close {
  background: #1b1b1b;
}
.cid-v3oFQsk0rn .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v3oFQsk0rn .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v3oFQsk0rn .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v3oFQsk0rn .carousel-control-next span {
  margin-left: 5px;
}
.cid-v3oFQsk0rn .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v3oFQsk0rn .close::before {
  content: '\e91a';
}
.cid-v3oFQsk0rn .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v3oFQsk0rn .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v3oFQsk0rn .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3oFQsk0rn .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v3oFQsk0rn .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v3oFQsk0rn .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v3oFQsk0rn .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v3oFQsk0rn .carousel-indicators li.active,
.cid-v3oFQsk0rn .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v3oFQsk0rn .carousel-indicators li::after,
.cid-v3oFQsk0rn .carousel-indicators li::before {
  content: none;
}
.cid-v3oFQsk0rn .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v3oFQsk0rn .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v3oFQsk0rn .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v3oFQsk0rn .carousel-indicators {
    display: none;
  }
}
.cid-v3oFQsk0rn .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v3oFQsk0rn .carousel-inner > .active {
  display: block;
}
.cid-v3oFQsk0rn .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3oFQsk0rn .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v3oFQsk0rn .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v3oFQsk0rn .carousel-control,
  .cid-v3oFQsk0rn .carousel-indicators,
  .cid-v3oFQsk0rn .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v3oFQsk0rn .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v3oFQsk0rn .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v3oFQsk0rn .carousel-indicators .active,
.cid-v3oFQsk0rn .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v3oFQsk0rn .carousel-indicators .active {
  background: #fff;
}
.cid-v3oFQsk0rn .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v3oFQsk0rn .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v3oFQsk0rn .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v3oFQsk0rn .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v3oFQsk0rn .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v3oFQsk0rn .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v3oFQsk0rn .carousel {
  width: 100%;
}
.cid-v3oFQsk0rn .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v3oFQsk0rn .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v3oFQsk0rn .modal.fade .modal-dialog,
.cid-v3oFQsk0rn .modal.in .modal-dialog {
  transform: none;
}
.cid-v3oFQsk0rn .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v3oFQsk0rn H6 {
  text-align: center;
}
.cid-v3oFQsk0rn .mbr-section-title {
  color: #ffffff;
}
.cid-v3oFQsk0rn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3pxuI7n50 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v3pxuI7n50 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3pxuI7n50 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3pxuI7n50 .item {
  padding-bottom: 2rem;
}
.cid-v3pxuI7n50 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v3pxuI7n50 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v3pxuI7n50 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v3pxuI7n50 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v3pxuI7n50 .carousel-control,
.cid-v3pxuI7n50 .close {
  background: #1b1b1b;
}
.cid-v3pxuI7n50 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v3pxuI7n50 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v3pxuI7n50 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v3pxuI7n50 .carousel-control-next span {
  margin-left: 5px;
}
.cid-v3pxuI7n50 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v3pxuI7n50 .close::before {
  content: '\e91a';
}
.cid-v3pxuI7n50 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v3pxuI7n50 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v3pxuI7n50 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3pxuI7n50 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v3pxuI7n50 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v3pxuI7n50 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v3pxuI7n50 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v3pxuI7n50 .carousel-indicators li.active,
.cid-v3pxuI7n50 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v3pxuI7n50 .carousel-indicators li::after,
.cid-v3pxuI7n50 .carousel-indicators li::before {
  content: none;
}
.cid-v3pxuI7n50 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v3pxuI7n50 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v3pxuI7n50 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v3pxuI7n50 .carousel-indicators {
    display: none;
  }
}
.cid-v3pxuI7n50 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v3pxuI7n50 .carousel-inner > .active {
  display: block;
}
.cid-v3pxuI7n50 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3pxuI7n50 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v3pxuI7n50 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v3pxuI7n50 .carousel-control,
  .cid-v3pxuI7n50 .carousel-indicators,
  .cid-v3pxuI7n50 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v3pxuI7n50 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v3pxuI7n50 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v3pxuI7n50 .carousel-indicators .active,
.cid-v3pxuI7n50 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v3pxuI7n50 .carousel-indicators .active {
  background: #fff;
}
.cid-v3pxuI7n50 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v3pxuI7n50 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v3pxuI7n50 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v3pxuI7n50 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v3pxuI7n50 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v3pxuI7n50 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v3pxuI7n50 .carousel {
  width: 100%;
}
.cid-v3pxuI7n50 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v3pxuI7n50 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v3pxuI7n50 .modal.fade .modal-dialog,
.cid-v3pxuI7n50 .modal.in .modal-dialog {
  transform: none;
}
.cid-v3pxuI7n50 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v3pxuI7n50 H6 {
  text-align: center;
}
.cid-v3pxuI7n50 .mbr-section-title {
  color: #ffffff;
}
.cid-v3pxuI7n50 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3pyGgUjF5 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v3pyGgUjF5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3pyGgUjF5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3pyGgUjF5 .item {
  padding-bottom: 2rem;
}
.cid-v3pyGgUjF5 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v3pyGgUjF5 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v3pyGgUjF5 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v3pyGgUjF5 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v3pyGgUjF5 .carousel-control,
.cid-v3pyGgUjF5 .close {
  background: #1b1b1b;
}
.cid-v3pyGgUjF5 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v3pyGgUjF5 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v3pyGgUjF5 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v3pyGgUjF5 .carousel-control-next span {
  margin-left: 5px;
}
.cid-v3pyGgUjF5 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v3pyGgUjF5 .close::before {
  content: '\e91a';
}
.cid-v3pyGgUjF5 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v3pyGgUjF5 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v3pyGgUjF5 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3pyGgUjF5 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v3pyGgUjF5 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v3pyGgUjF5 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v3pyGgUjF5 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v3pyGgUjF5 .carousel-indicators li.active,
.cid-v3pyGgUjF5 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v3pyGgUjF5 .carousel-indicators li::after,
.cid-v3pyGgUjF5 .carousel-indicators li::before {
  content: none;
}
.cid-v3pyGgUjF5 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v3pyGgUjF5 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v3pyGgUjF5 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v3pyGgUjF5 .carousel-indicators {
    display: none;
  }
}
.cid-v3pyGgUjF5 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v3pyGgUjF5 .carousel-inner > .active {
  display: block;
}
.cid-v3pyGgUjF5 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3pyGgUjF5 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v3pyGgUjF5 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v3pyGgUjF5 .carousel-control,
  .cid-v3pyGgUjF5 .carousel-indicators,
  .cid-v3pyGgUjF5 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v3pyGgUjF5 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v3pyGgUjF5 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v3pyGgUjF5 .carousel-indicators .active,
.cid-v3pyGgUjF5 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v3pyGgUjF5 .carousel-indicators .active {
  background: #fff;
}
.cid-v3pyGgUjF5 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v3pyGgUjF5 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v3pyGgUjF5 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v3pyGgUjF5 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v3pyGgUjF5 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v3pyGgUjF5 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v3pyGgUjF5 .carousel {
  width: 100%;
}
.cid-v3pyGgUjF5 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v3pyGgUjF5 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v3pyGgUjF5 .modal.fade .modal-dialog,
.cid-v3pyGgUjF5 .modal.in .modal-dialog {
  transform: none;
}
.cid-v3pyGgUjF5 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v3pyGgUjF5 H6 {
  text-align: center;
}
.cid-v3pyGgUjF5 .mbr-section-title {
  color: #ffffff;
}
.cid-v3pyGgUjF5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2CWRes67O {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v2CWRes67O .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2CWRes67O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2CWRes67O .mbr-section-title {
  color: #ffffff;
}
.cid-v2CYbK18Ax {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-v2CYbK18Ax .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2CYbK18Ax .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-v2CYbK18Ax .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v2CYbK18Ax .row {
  flex-direction: row-reverse;
}
.cid-v2CYbK18Ax img {
  width: 100%;
}
.cid-v3MvjxjkqV {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-v3MvjxjkqV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3MvjxjkqV .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-v3MvjxjkqV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3MvjxjkqV .row {
  flex-direction: row-reverse;
}
.cid-v3MvjxjkqV img {
  width: 100%;
}
.cid-v3RYm6zdl0 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-v3RYm6zdl0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3RYm6zdl0 .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-v3RYm6zdl0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3RYm6zdl0 .row {
  flex-direction: row-reverse;
}
.cid-v3RYm6zdl0 img {
  width: 100%;
}
.cid-v3AMpXiw8x {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v3AMpXiw8x img {
  width: 120px;
  margin: auto;
}
.cid-v3AMpXiw8x .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v3AMpXiw8x .card {
    max-width: 12.5%;
  }
}
.cid-v3AN9P4yMD {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v7hHKJEGN1 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-v7hHKJEGN1 img,
.cid-v7hHKJEGN1 .item-img {
  width: 100%;
}
.cid-v7hHKJEGN1 .item:focus,
.cid-v7hHKJEGN1 span:focus {
  outline: none;
}
.cid-v7hHKJEGN1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v7hHKJEGN1 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v7hHKJEGN1 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v7hHKJEGN1 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v7hHKJEGN1 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v7hHKJEGN1 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v7hHKJEGN1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v7hHKJEGN1 .mbr-section-title {
  color: #ffffff;
}
.cid-v7hHKJEGN1 .mbr-text,
.cid-v7hHKJEGN1 .mbr-section-btn {
  text-align: left;
}
.cid-v7hHKJEGN1 .item-title {
  text-align: left;
}
.cid-v7hHKJEGN1 .item-subtitle {
  text-align: left;
}
.cid-v7hHKJEGN1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3pBYi97Ti {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/the-flight-of-the-quirky-owl-book-1900x1069.jpeg");
}
.cid-v3pBYi97Ti .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3pBYi97Ti .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2CWRDItjD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-v3GVtwekGr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v3GVtwekGr nav.navbar {
  position: fixed;
}
.cid-v3GVtwekGr .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-v3GVtwekGr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3GVtwekGr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v3GVtwekGr .dropdown-item:hover,
.cid-v3GVtwekGr .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-v3GVtwekGr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v3GVtwekGr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v3GVtwekGr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v3GVtwekGr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v3GVtwekGr .nav-link {
  position: relative;
}
.cid-v3GVtwekGr .container {
  display: flex;
  margin: auto;
}
.cid-v3GVtwekGr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v3GVtwekGr .dropdown-menu,
.cid-v3GVtwekGr .navbar.opened {
  background: #ffffff !important;
}
.cid-v3GVtwekGr .nav-item:focus,
.cid-v3GVtwekGr .nav-link:focus {
  outline: none;
}
.cid-v3GVtwekGr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3GVtwekGr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GVtwekGr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3GVtwekGr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3GVtwekGr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3GVtwekGr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3GVtwekGr .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-v3GVtwekGr .navbar.opened {
  transition: all 0.3s;
}
.cid-v3GVtwekGr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3GVtwekGr .navbar .navbar-logo img {
  width: auto;
}
.cid-v3GVtwekGr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v3GVtwekGr .navbar.collapsed {
  justify-content: center;
}
.cid-v3GVtwekGr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3GVtwekGr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v3GVtwekGr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3GVtwekGr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3GVtwekGr .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-v3GVtwekGr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3GVtwekGr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3GVtwekGr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3GVtwekGr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3GVtwekGr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3GVtwekGr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3GVtwekGr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3GVtwekGr .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-v3GVtwekGr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3GVtwekGr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3GVtwekGr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3GVtwekGr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3GVtwekGr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3GVtwekGr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3GVtwekGr .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3GVtwekGr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3GVtwekGr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v3GVtwekGr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v3GVtwekGr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3GVtwekGr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3GVtwekGr .dropdown-item.active,
.cid-v3GVtwekGr .dropdown-item:active {
  background-color: transparent;
}
.cid-v3GVtwekGr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3GVtwekGr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3GVtwekGr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3GVtwekGr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v3GVtwekGr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3GVtwekGr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GVtwekGr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3GVtwekGr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3GVtwekGr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3GVtwekGr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v3GVtwekGr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3GVtwekGr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3GVtwekGr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3GVtwekGr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3GVtwekGr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3GVtwekGr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3GVtwekGr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3GVtwekGr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3GVtwekGr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3GVtwekGr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3GVtwekGr .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-v3GVtwekGr .navbar {
    height: 70px;
  }
  .cid-v3GVtwekGr .navbar.opened {
    height: auto;
  }
  .cid-v3GVtwekGr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3GVtvPrF8 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/the-flight-of-the-quirky-owl-still2-1900x1069.jpeg");
}
.cid-v3GVtvPrF8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GVtvPrF8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GVtwLeHU {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v3GVtwLeHU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GVtwLeHU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GVtwLeHU .mbr-section-title {
  color: #000000;
}
.cid-v3GVYJRzbo {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v3GVYJRzbo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GVYJRzbo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GVYJRzbo .video-wrapper iframe {
  width: 100%;
}
.cid-v3GVYJRzbo .mbr-section-title,
.cid-v3GVYJRzbo .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v3GVYJRzbo .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3GVYJRzbo .mbr-section-title {
  color: #ffffff;
  text-align: justify;
}
.cid-v3GVYJRzbo .mbr-text {
  color: #ffffff;
}
.cid-v3GVYJRzbo .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3GVtxntUG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v3GVtxntUG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GVtxntUG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GVtxntUG .item {
  padding-bottom: 2rem;
}
.cid-v3GVtxntUG .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v3GVtxntUG .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v3GVtxntUG .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v3GVtxntUG .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v3GVtxntUG .carousel-control,
.cid-v3GVtxntUG .close {
  background: #1b1b1b;
}
.cid-v3GVtxntUG .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v3GVtxntUG .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v3GVtxntUG .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v3GVtxntUG .carousel-control-next span {
  margin-left: 5px;
}
.cid-v3GVtxntUG .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v3GVtxntUG .close::before {
  content: '\e91a';
}
.cid-v3GVtxntUG .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v3GVtxntUG .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v3GVtxntUG .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3GVtxntUG .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v3GVtxntUG .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v3GVtxntUG .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v3GVtxntUG .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v3GVtxntUG .carousel-indicators li.active,
.cid-v3GVtxntUG .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v3GVtxntUG .carousel-indicators li::after,
.cid-v3GVtxntUG .carousel-indicators li::before {
  content: none;
}
.cid-v3GVtxntUG .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v3GVtxntUG .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v3GVtxntUG .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v3GVtxntUG .carousel-indicators {
    display: none;
  }
}
.cid-v3GVtxntUG .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v3GVtxntUG .carousel-inner > .active {
  display: block;
}
.cid-v3GVtxntUG .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3GVtxntUG .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v3GVtxntUG .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v3GVtxntUG .carousel-control,
  .cid-v3GVtxntUG .carousel-indicators,
  .cid-v3GVtxntUG .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v3GVtxntUG .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v3GVtxntUG .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v3GVtxntUG .carousel-indicators .active,
.cid-v3GVtxntUG .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v3GVtxntUG .carousel-indicators .active {
  background: #fff;
}
.cid-v3GVtxntUG .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v3GVtxntUG .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v3GVtxntUG .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v3GVtxntUG .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v3GVtxntUG .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v3GVtxntUG .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v3GVtxntUG .carousel {
  width: 100%;
}
.cid-v3GVtxntUG .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v3GVtxntUG .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v3GVtxntUG .modal.fade .modal-dialog,
.cid-v3GVtxntUG .modal.in .modal-dialog {
  transform: none;
}
.cid-v3GVtxntUG .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v3GVtxntUG H6 {
  text-align: center;
}
.cid-v3GVtxntUG .mbr-section-title {
  color: #ffffff;
}
.cid-v3GVtxntUG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3Hl1qNCU0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v3Hl1qNCU0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Hl1qNCU0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Hl1qNCU0 .item {
  padding-bottom: 2rem;
}
.cid-v3Hl1qNCU0 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v3Hl1qNCU0 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v3Hl1qNCU0 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v3Hl1qNCU0 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v3Hl1qNCU0 .carousel-control,
.cid-v3Hl1qNCU0 .close {
  background: #1b1b1b;
}
.cid-v3Hl1qNCU0 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v3Hl1qNCU0 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v3Hl1qNCU0 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v3Hl1qNCU0 .carousel-control-next span {
  margin-left: 5px;
}
.cid-v3Hl1qNCU0 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v3Hl1qNCU0 .close::before {
  content: '\e91a';
}
.cid-v3Hl1qNCU0 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v3Hl1qNCU0 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v3Hl1qNCU0 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3Hl1qNCU0 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v3Hl1qNCU0 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v3Hl1qNCU0 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v3Hl1qNCU0 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v3Hl1qNCU0 .carousel-indicators li.active,
.cid-v3Hl1qNCU0 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v3Hl1qNCU0 .carousel-indicators li::after,
.cid-v3Hl1qNCU0 .carousel-indicators li::before {
  content: none;
}
.cid-v3Hl1qNCU0 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v3Hl1qNCU0 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v3Hl1qNCU0 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v3Hl1qNCU0 .carousel-indicators {
    display: none;
  }
}
.cid-v3Hl1qNCU0 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v3Hl1qNCU0 .carousel-inner > .active {
  display: block;
}
.cid-v3Hl1qNCU0 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3Hl1qNCU0 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v3Hl1qNCU0 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v3Hl1qNCU0 .carousel-control,
  .cid-v3Hl1qNCU0 .carousel-indicators,
  .cid-v3Hl1qNCU0 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v3Hl1qNCU0 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v3Hl1qNCU0 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v3Hl1qNCU0 .carousel-indicators .active,
.cid-v3Hl1qNCU0 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v3Hl1qNCU0 .carousel-indicators .active {
  background: #fff;
}
.cid-v3Hl1qNCU0 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v3Hl1qNCU0 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v3Hl1qNCU0 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v3Hl1qNCU0 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v3Hl1qNCU0 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v3Hl1qNCU0 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v3Hl1qNCU0 .carousel {
  width: 100%;
}
.cid-v3Hl1qNCU0 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v3Hl1qNCU0 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v3Hl1qNCU0 .modal.fade .modal-dialog,
.cid-v3Hl1qNCU0 .modal.in .modal-dialog {
  transform: none;
}
.cid-v3Hl1qNCU0 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v3Hl1qNCU0 H6 {
  text-align: center;
}
.cid-v3Hl1qNCU0 .mbr-section-title {
  color: #ffffff;
  text-align: justify;
}
.cid-v3Hl1qNCU0 .mbr-section-subtitle {
  color: #ffffff;
  text-align: justify;
}
.cid-v3HmbFk1Xh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v3HmbFk1Xh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3HmbFk1Xh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3HmbFk1Xh .item {
  padding-bottom: 2rem;
}
.cid-v3HmbFk1Xh .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v3HmbFk1Xh .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v3HmbFk1Xh .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v3HmbFk1Xh .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v3HmbFk1Xh .carousel-control,
.cid-v3HmbFk1Xh .close {
  background: #1b1b1b;
}
.cid-v3HmbFk1Xh .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v3HmbFk1Xh .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v3HmbFk1Xh .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v3HmbFk1Xh .carousel-control-next span {
  margin-left: 5px;
}
.cid-v3HmbFk1Xh .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v3HmbFk1Xh .close::before {
  content: '\e91a';
}
.cid-v3HmbFk1Xh .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v3HmbFk1Xh .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v3HmbFk1Xh .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3HmbFk1Xh .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v3HmbFk1Xh .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v3HmbFk1Xh .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v3HmbFk1Xh .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v3HmbFk1Xh .carousel-indicators li.active,
.cid-v3HmbFk1Xh .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v3HmbFk1Xh .carousel-indicators li::after,
.cid-v3HmbFk1Xh .carousel-indicators li::before {
  content: none;
}
.cid-v3HmbFk1Xh .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v3HmbFk1Xh .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v3HmbFk1Xh .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v3HmbFk1Xh .carousel-indicators {
    display: none;
  }
}
.cid-v3HmbFk1Xh .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v3HmbFk1Xh .carousel-inner > .active {
  display: block;
}
.cid-v3HmbFk1Xh .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3HmbFk1Xh .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v3HmbFk1Xh .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v3HmbFk1Xh .carousel-control,
  .cid-v3HmbFk1Xh .carousel-indicators,
  .cid-v3HmbFk1Xh .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v3HmbFk1Xh .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v3HmbFk1Xh .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v3HmbFk1Xh .carousel-indicators .active,
.cid-v3HmbFk1Xh .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v3HmbFk1Xh .carousel-indicators .active {
  background: #fff;
}
.cid-v3HmbFk1Xh .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v3HmbFk1Xh .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v3HmbFk1Xh .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v3HmbFk1Xh .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v3HmbFk1Xh .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v3HmbFk1Xh .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v3HmbFk1Xh .carousel {
  width: 100%;
}
.cid-v3HmbFk1Xh .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v3HmbFk1Xh .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v3HmbFk1Xh .modal.fade .modal-dialog,
.cid-v3HmbFk1Xh .modal.in .modal-dialog {
  transform: none;
}
.cid-v3HmbFk1Xh .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v3HmbFk1Xh H6 {
  text-align: center;
}
.cid-v3HmbFk1Xh .mbr-section-title {
  color: #ffffff;
  text-align: justify;
}
.cid-v3HmbFk1Xh .mbr-section-subtitle {
  color: #ffffff;
  text-align: justify;
}
.cid-v3M3XeSsZM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v3M3XeSsZM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3M3XeSsZM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3M3XeSsZM .item {
  padding-bottom: 2rem;
}
.cid-v3M3XeSsZM .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v3M3XeSsZM .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v3M3XeSsZM .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v3M3XeSsZM .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v3M3XeSsZM .carousel-control,
.cid-v3M3XeSsZM .close {
  background: #1b1b1b;
}
.cid-v3M3XeSsZM .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v3M3XeSsZM .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v3M3XeSsZM .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v3M3XeSsZM .carousel-control-next span {
  margin-left: 5px;
}
.cid-v3M3XeSsZM .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v3M3XeSsZM .close::before {
  content: '\e91a';
}
.cid-v3M3XeSsZM .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v3M3XeSsZM .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v3M3XeSsZM .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3M3XeSsZM .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v3M3XeSsZM .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v3M3XeSsZM .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v3M3XeSsZM .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v3M3XeSsZM .carousel-indicators li.active,
.cid-v3M3XeSsZM .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v3M3XeSsZM .carousel-indicators li::after,
.cid-v3M3XeSsZM .carousel-indicators li::before {
  content: none;
}
.cid-v3M3XeSsZM .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v3M3XeSsZM .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v3M3XeSsZM .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v3M3XeSsZM .carousel-indicators {
    display: none;
  }
}
.cid-v3M3XeSsZM .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v3M3XeSsZM .carousel-inner > .active {
  display: block;
}
.cid-v3M3XeSsZM .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3M3XeSsZM .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v3M3XeSsZM .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v3M3XeSsZM .carousel-control,
  .cid-v3M3XeSsZM .carousel-indicators,
  .cid-v3M3XeSsZM .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v3M3XeSsZM .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v3M3XeSsZM .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v3M3XeSsZM .carousel-indicators .active,
.cid-v3M3XeSsZM .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v3M3XeSsZM .carousel-indicators .active {
  background: #fff;
}
.cid-v3M3XeSsZM .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v3M3XeSsZM .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v3M3XeSsZM .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v3M3XeSsZM .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v3M3XeSsZM .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v3M3XeSsZM .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v3M3XeSsZM .carousel {
  width: 100%;
}
.cid-v3M3XeSsZM .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v3M3XeSsZM .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v3M3XeSsZM .modal.fade .modal-dialog,
.cid-v3M3XeSsZM .modal.in .modal-dialog {
  transform: none;
}
.cid-v3M3XeSsZM .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v3M3XeSsZM H6 {
  text-align: center;
}
.cid-v3M3XeSsZM .mbr-section-title {
  color: #ffffff;
  text-align: justify;
}
.cid-v3M3XeSsZM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v4IwQpbq3F {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v4IwQpbq3F img,
.cid-v4IwQpbq3F .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v4IwQpbq3F .item:focus,
.cid-v4IwQpbq3F span:focus {
  outline: none;
}
.cid-v4IwQpbq3F .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v4IwQpbq3F .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4IwQpbq3F .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4IwQpbq3F .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4IwQpbq3F .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4IwQpbq3F .mbr-section-title {
  color: #ffffff;
  text-align: justify;
}
.cid-v3LXy7eA8I {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-v3LXy7eA8I .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3LXy7eA8I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3LXy7eA8I .item {
  padding-bottom: 2rem;
}
.cid-v3LXy7eA8I .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v3LXy7eA8I .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v3LXy7eA8I .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v3LXy7eA8I .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v3LXy7eA8I .carousel-control,
.cid-v3LXy7eA8I .close {
  background: #1b1b1b;
}
.cid-v3LXy7eA8I .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v3LXy7eA8I .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v3LXy7eA8I .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v3LXy7eA8I .carousel-control-next span {
  margin-left: 5px;
}
.cid-v3LXy7eA8I .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v3LXy7eA8I .close::before {
  content: '\e91a';
}
.cid-v3LXy7eA8I .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v3LXy7eA8I .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v3LXy7eA8I .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3LXy7eA8I .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v3LXy7eA8I .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v3LXy7eA8I .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v3LXy7eA8I .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v3LXy7eA8I .carousel-indicators li.active,
.cid-v3LXy7eA8I .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v3LXy7eA8I .carousel-indicators li::after,
.cid-v3LXy7eA8I .carousel-indicators li::before {
  content: none;
}
.cid-v3LXy7eA8I .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v3LXy7eA8I .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v3LXy7eA8I .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v3LXy7eA8I .carousel-indicators {
    display: none;
  }
}
.cid-v3LXy7eA8I .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v3LXy7eA8I .carousel-inner > .active {
  display: block;
}
.cid-v3LXy7eA8I .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3LXy7eA8I .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v3LXy7eA8I .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v3LXy7eA8I .carousel-control,
  .cid-v3LXy7eA8I .carousel-indicators,
  .cid-v3LXy7eA8I .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v3LXy7eA8I .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v3LXy7eA8I .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v3LXy7eA8I .carousel-indicators .active,
.cid-v3LXy7eA8I .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v3LXy7eA8I .carousel-indicators .active {
  background: #fff;
}
.cid-v3LXy7eA8I .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v3LXy7eA8I .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v3LXy7eA8I .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v3LXy7eA8I .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v3LXy7eA8I .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v3LXy7eA8I .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v3LXy7eA8I .carousel {
  width: 100%;
}
.cid-v3LXy7eA8I .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v3LXy7eA8I .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v3LXy7eA8I .modal.fade .modal-dialog,
.cid-v3LXy7eA8I .modal.in .modal-dialog {
  transform: none;
}
.cid-v3LXy7eA8I .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v3LXy7eA8I H6 {
  text-align: center;
}
.cid-v3LXy7eA8I .mbr-section-title {
  color: #ffffff;
  text-align: justify;
}
.cid-v3LXy7eA8I .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3M348GPuo {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v3M348GPuo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3M348GPuo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3M348GPuo .mbr-section-title {
  color: #ffffff;
}
.cid-v3M3F1PSIU {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-v3M3F1PSIU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3M3F1PSIU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3M3F1PSIU .video-wrapper iframe {
  width: 100%;
}
.cid-v3M3F1PSIU .mbr-section-title,
.cid-v3M3F1PSIU .mbr-section-subtitle,
.cid-v3M3F1PSIU .mbr-text {
  text-align: center;
}
.cid-v3GVtxV1XT {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/the-flight-of-the-quirky-owl-book-1900x1069.jpeg");
}
.cid-v3GVtxV1XT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GVtxV1XT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GVtyjSpD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-v3GUNzPR48 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v3GUNzPR48 nav.navbar {
  position: fixed;
}
.cid-v3GUNzPR48 .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-v3GUNzPR48 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3GUNzPR48 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v3GUNzPR48 .dropdown-item:hover,
.cid-v3GUNzPR48 .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-v3GUNzPR48 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v3GUNzPR48 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v3GUNzPR48 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v3GUNzPR48 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v3GUNzPR48 .nav-link {
  position: relative;
}
.cid-v3GUNzPR48 .container {
  display: flex;
  margin: auto;
}
.cid-v3GUNzPR48 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v3GUNzPR48 .dropdown-menu,
.cid-v3GUNzPR48 .navbar.opened {
  background: #ffffff !important;
}
.cid-v3GUNzPR48 .nav-item:focus,
.cid-v3GUNzPR48 .nav-link:focus {
  outline: none;
}
.cid-v3GUNzPR48 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3GUNzPR48 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GUNzPR48 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3GUNzPR48 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3GUNzPR48 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3GUNzPR48 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3GUNzPR48 .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-v3GUNzPR48 .navbar.opened {
  transition: all 0.3s;
}
.cid-v3GUNzPR48 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3GUNzPR48 .navbar .navbar-logo img {
  width: auto;
}
.cid-v3GUNzPR48 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v3GUNzPR48 .navbar.collapsed {
  justify-content: center;
}
.cid-v3GUNzPR48 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3GUNzPR48 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v3GUNzPR48 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3GUNzPR48 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3GUNzPR48 .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-v3GUNzPR48 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3GUNzPR48 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3GUNzPR48 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3GUNzPR48 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3GUNzPR48 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3GUNzPR48 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3GUNzPR48 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3GUNzPR48 .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-v3GUNzPR48 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3GUNzPR48 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3GUNzPR48 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3GUNzPR48 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3GUNzPR48 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3GUNzPR48 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3GUNzPR48 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3GUNzPR48 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3GUNzPR48 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v3GUNzPR48 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v3GUNzPR48 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3GUNzPR48 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3GUNzPR48 .dropdown-item.active,
.cid-v3GUNzPR48 .dropdown-item:active {
  background-color: transparent;
}
.cid-v3GUNzPR48 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3GUNzPR48 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3GUNzPR48 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3GUNzPR48 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v3GUNzPR48 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3GUNzPR48 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GUNzPR48 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3GUNzPR48 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3GUNzPR48 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3GUNzPR48 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v3GUNzPR48 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3GUNzPR48 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3GUNzPR48 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3GUNzPR48 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3GUNzPR48 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3GUNzPR48 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3GUNzPR48 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3GUNzPR48 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3GUNzPR48 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3GUNzPR48 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3GUNzPR48 .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-v3GUNzPR48 .navbar {
    height: 70px;
  }
  .cid-v3GUNzPR48 .navbar.opened {
    height: auto;
  }
  .cid-v3GUNzPR48 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3GUNAFBtS {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/04f-tlo-1-1366x768.png");
}
.cid-v3GUNAFBtS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GUNAFBtS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GUNAldDH {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v3GUNAldDH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GUNAldDH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GUNAldDH .mbr-section-title {
  color: #000000;
}
.cid-v3MgstePwW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v3MgstePwW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3MgstePwW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3MgstePwW .item {
  padding-bottom: 2rem;
}
.cid-v3MgstePwW .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v3MgstePwW .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v3MgstePwW .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v3MgstePwW .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v3MgstePwW .carousel-control,
.cid-v3MgstePwW .close {
  background: #1b1b1b;
}
.cid-v3MgstePwW .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v3MgstePwW .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v3MgstePwW .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v3MgstePwW .carousel-control-next span {
  margin-left: 5px;
}
.cid-v3MgstePwW .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v3MgstePwW .close::before {
  content: '\e91a';
}
.cid-v3MgstePwW .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v3MgstePwW .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v3MgstePwW .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3MgstePwW .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v3MgstePwW .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v3MgstePwW .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v3MgstePwW .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v3MgstePwW .carousel-indicators li.active,
.cid-v3MgstePwW .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v3MgstePwW .carousel-indicators li::after,
.cid-v3MgstePwW .carousel-indicators li::before {
  content: none;
}
.cid-v3MgstePwW .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v3MgstePwW .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v3MgstePwW .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v3MgstePwW .carousel-indicators {
    display: none;
  }
}
.cid-v3MgstePwW .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v3MgstePwW .carousel-inner > .active {
  display: block;
}
.cid-v3MgstePwW .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3MgstePwW .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v3MgstePwW .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v3MgstePwW .carousel-control,
  .cid-v3MgstePwW .carousel-indicators,
  .cid-v3MgstePwW .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v3MgstePwW .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v3MgstePwW .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v3MgstePwW .carousel-indicators .active,
.cid-v3MgstePwW .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v3MgstePwW .carousel-indicators .active {
  background: #fff;
}
.cid-v3MgstePwW .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v3MgstePwW .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v3MgstePwW .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v3MgstePwW .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v3MgstePwW .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v3MgstePwW .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v3MgstePwW .carousel {
  width: 100%;
}
.cid-v3MgstePwW .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v3MgstePwW .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v3MgstePwW .modal.fade .modal-dialog,
.cid-v3MgstePwW .modal.in .modal-dialog {
  transform: none;
}
.cid-v3MgstePwW .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v3MgstePwW H6 {
  text-align: center;
}
.cid-v3MgstePwW .mbr-section-title {
  color: #000000;
  text-align: justify;
}
.cid-v3MgstePwW .mbr-section-subtitle {
  color: #000000;
  text-align: justify;
}
.cid-v5neHNYsFL {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v5neHNYsFL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5neHNYsFL .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-v5neHNYsFL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v5neHNYsFL .row {
  flex-direction: row-reverse;
}
.cid-v5neHNYsFL img {
  width: 100%;
}
.cid-v4axXfgxgO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v4axXfgxgO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4axXfgxgO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4axXfgxgO .item {
  padding-bottom: 2rem;
}
.cid-v4axXfgxgO .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v4axXfgxgO .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v4axXfgxgO .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v4axXfgxgO .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v4axXfgxgO .carousel-control,
.cid-v4axXfgxgO .close {
  background: #1b1b1b;
}
.cid-v4axXfgxgO .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v4axXfgxgO .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v4axXfgxgO .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v4axXfgxgO .carousel-control-next span {
  margin-left: 5px;
}
.cid-v4axXfgxgO .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v4axXfgxgO .close::before {
  content: '\e91a';
}
.cid-v4axXfgxgO .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v4axXfgxgO .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v4axXfgxgO .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v4axXfgxgO .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v4axXfgxgO .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v4axXfgxgO .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v4axXfgxgO .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v4axXfgxgO .carousel-indicators li.active,
.cid-v4axXfgxgO .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v4axXfgxgO .carousel-indicators li::after,
.cid-v4axXfgxgO .carousel-indicators li::before {
  content: none;
}
.cid-v4axXfgxgO .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v4axXfgxgO .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v4axXfgxgO .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v4axXfgxgO .carousel-indicators {
    display: none;
  }
}
.cid-v4axXfgxgO .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v4axXfgxgO .carousel-inner > .active {
  display: block;
}
.cid-v4axXfgxgO .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v4axXfgxgO .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v4axXfgxgO .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v4axXfgxgO .carousel-control,
  .cid-v4axXfgxgO .carousel-indicators,
  .cid-v4axXfgxgO .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v4axXfgxgO .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v4axXfgxgO .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v4axXfgxgO .carousel-indicators .active,
.cid-v4axXfgxgO .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v4axXfgxgO .carousel-indicators .active {
  background: #fff;
}
.cid-v4axXfgxgO .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v4axXfgxgO .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v4axXfgxgO .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v4axXfgxgO .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v4axXfgxgO .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v4axXfgxgO .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v4axXfgxgO .carousel {
  width: 100%;
}
.cid-v4axXfgxgO .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v4axXfgxgO .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v4axXfgxgO .modal.fade .modal-dialog,
.cid-v4axXfgxgO .modal.in .modal-dialog {
  transform: none;
}
.cid-v4axXfgxgO .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v4axXfgxgO H6 {
  text-align: center;
}
.cid-v4axXfgxgO .mbr-section-title {
  color: #000000;
  text-align: justify;
}
.cid-v4axXfgxgO .mbr-section-subtitle {
  color: #000000;
  text-align: justify;
}
.cid-v5F5rN8k3w {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v5F5rN8k3w .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5F5rN8k3w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5F5rN8k3w .mbr-section-title {
  text-align: justify;
}
.cid-v5F1NPfIGR {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v5F1NPfIGR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5F1NPfIGR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5F1NPfIGR .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v5F1NPfIGR .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-v5F1NPfIGR .item-wrapper {
  position: relative;
}
.cid-v5F1NPfIGR .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v5F1NPfIGR .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v5F1NPfIGR .carousel-control,
.cid-v5F1NPfIGR .close {
  background: #1b1b1b;
}
.cid-v5F1NPfIGR .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v5F1NPfIGR .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v5F1NPfIGR .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v5F1NPfIGR .carousel-control-next span {
  margin-left: 5px;
}
.cid-v5F1NPfIGR .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v5F1NPfIGR .close::before {
  content: '\e91a';
}
.cid-v5F1NPfIGR .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v5F1NPfIGR .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v5F1NPfIGR .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v5F1NPfIGR .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v5F1NPfIGR .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v5F1NPfIGR .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v5F1NPfIGR .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v5F1NPfIGR .carousel-indicators li.active,
.cid-v5F1NPfIGR .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v5F1NPfIGR .carousel-indicators li::after,
.cid-v5F1NPfIGR .carousel-indicators li::before {
  content: none;
}
.cid-v5F1NPfIGR .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v5F1NPfIGR .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v5F1NPfIGR .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v5F1NPfIGR .carousel-indicators {
    display: none;
  }
}
.cid-v5F1NPfIGR .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v5F1NPfIGR .carousel-inner > .active {
  display: block;
}
.cid-v5F1NPfIGR .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v5F1NPfIGR .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v5F1NPfIGR .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v5F1NPfIGR .carousel-control,
  .cid-v5F1NPfIGR .carousel-indicators,
  .cid-v5F1NPfIGR .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v5F1NPfIGR .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v5F1NPfIGR .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v5F1NPfIGR .carousel-indicators .active,
.cid-v5F1NPfIGR .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v5F1NPfIGR .carousel-indicators .active {
  background: #fff;
}
.cid-v5F1NPfIGR .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v5F1NPfIGR .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v5F1NPfIGR .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v5F1NPfIGR .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v5F1NPfIGR .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v5F1NPfIGR .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v5F1NPfIGR .carousel {
  width: 100%;
}
.cid-v5F1NPfIGR .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v5F1NPfIGR .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v5F1NPfIGR .modal.fade .modal-dialog,
.cid-v5F1NPfIGR .modal.in .modal-dialog {
  transform: none;
}
.cid-v5F1NPfIGR .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v5F1NPfIGR H6 {
  text-align: center;
}
.cid-v5F1NPfIGR .mbr-section-title {
  text-align: justify;
}
.cid-v5F1NPfIGR .mbr-section-subtitle {
  text-align: justify;
}
.cid-v5F45cIv5g {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v5F45cIv5g .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5F45cIv5g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5F45cIv5g .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v5F45cIv5g .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-v5F45cIv5g .item-wrapper {
  position: relative;
}
.cid-v5F45cIv5g .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v5F45cIv5g .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v5F45cIv5g .carousel-control,
.cid-v5F45cIv5g .close {
  background: #1b1b1b;
}
.cid-v5F45cIv5g .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v5F45cIv5g .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v5F45cIv5g .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v5F45cIv5g .carousel-control-next span {
  margin-left: 5px;
}
.cid-v5F45cIv5g .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v5F45cIv5g .close::before {
  content: '\e91a';
}
.cid-v5F45cIv5g .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v5F45cIv5g .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v5F45cIv5g .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v5F45cIv5g .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v5F45cIv5g .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v5F45cIv5g .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v5F45cIv5g .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v5F45cIv5g .carousel-indicators li.active,
.cid-v5F45cIv5g .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v5F45cIv5g .carousel-indicators li::after,
.cid-v5F45cIv5g .carousel-indicators li::before {
  content: none;
}
.cid-v5F45cIv5g .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v5F45cIv5g .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v5F45cIv5g .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v5F45cIv5g .carousel-indicators {
    display: none;
  }
}
.cid-v5F45cIv5g .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v5F45cIv5g .carousel-inner > .active {
  display: block;
}
.cid-v5F45cIv5g .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v5F45cIv5g .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v5F45cIv5g .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v5F45cIv5g .carousel-control,
  .cid-v5F45cIv5g .carousel-indicators,
  .cid-v5F45cIv5g .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v5F45cIv5g .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v5F45cIv5g .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v5F45cIv5g .carousel-indicators .active,
.cid-v5F45cIv5g .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v5F45cIv5g .carousel-indicators .active {
  background: #fff;
}
.cid-v5F45cIv5g .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v5F45cIv5g .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v5F45cIv5g .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v5F45cIv5g .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v5F45cIv5g .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v5F45cIv5g .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v5F45cIv5g .carousel {
  width: 100%;
}
.cid-v5F45cIv5g .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v5F45cIv5g .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v5F45cIv5g .modal.fade .modal-dialog,
.cid-v5F45cIv5g .modal.in .modal-dialog {
  transform: none;
}
.cid-v5F45cIv5g .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v5F45cIv5g H6 {
  text-align: center;
}
.cid-v5F45cIv5g .mbr-section-title {
  text-align: justify;
}
.cid-v5F45cIv5g .mbr-section-subtitle {
  text-align: justify;
}
.cid-v7miq1x7b7 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v7miq1x7b7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7miq1x7b7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7miq1x7b7 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v7miq1x7b7 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-v7miq1x7b7 .item-wrapper {
  position: relative;
}
.cid-v7miq1x7b7 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v7miq1x7b7 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v7miq1x7b7 .carousel-control,
.cid-v7miq1x7b7 .close {
  background: #1b1b1b;
}
.cid-v7miq1x7b7 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v7miq1x7b7 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v7miq1x7b7 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v7miq1x7b7 .carousel-control-next span {
  margin-left: 5px;
}
.cid-v7miq1x7b7 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v7miq1x7b7 .close::before {
  content: '\e91a';
}
.cid-v7miq1x7b7 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v7miq1x7b7 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v7miq1x7b7 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7miq1x7b7 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v7miq1x7b7 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v7miq1x7b7 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v7miq1x7b7 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v7miq1x7b7 .carousel-indicators li.active,
.cid-v7miq1x7b7 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v7miq1x7b7 .carousel-indicators li::after,
.cid-v7miq1x7b7 .carousel-indicators li::before {
  content: none;
}
.cid-v7miq1x7b7 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v7miq1x7b7 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v7miq1x7b7 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v7miq1x7b7 .carousel-indicators {
    display: none;
  }
}
.cid-v7miq1x7b7 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v7miq1x7b7 .carousel-inner > .active {
  display: block;
}
.cid-v7miq1x7b7 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7miq1x7b7 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7miq1x7b7 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v7miq1x7b7 .carousel-control,
  .cid-v7miq1x7b7 .carousel-indicators,
  .cid-v7miq1x7b7 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v7miq1x7b7 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v7miq1x7b7 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v7miq1x7b7 .carousel-indicators .active,
.cid-v7miq1x7b7 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v7miq1x7b7 .carousel-indicators .active {
  background: #fff;
}
.cid-v7miq1x7b7 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v7miq1x7b7 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v7miq1x7b7 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v7miq1x7b7 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v7miq1x7b7 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v7miq1x7b7 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v7miq1x7b7 .carousel {
  width: 100%;
}
.cid-v7miq1x7b7 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v7miq1x7b7 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v7miq1x7b7 .modal.fade .modal-dialog,
.cid-v7miq1x7b7 .modal.in .modal-dialog {
  transform: none;
}
.cid-v7miq1x7b7 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v7miq1x7b7 H6 {
  text-align: center;
}
.cid-v7miq1x7b7 .mbr-section-title {
  text-align: justify;
}
.cid-v7miq1x7b7 .mbr-section-subtitle {
  text-align: justify;
}
.cid-v5FbBATXvB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v5FbBATXvB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5FbBATXvB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5FbBATXvB .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v5FbBATXvB .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-v5FbBATXvB .item-wrapper {
  position: relative;
}
.cid-v5FbBATXvB .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v5FbBATXvB .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v5FbBATXvB .carousel-control,
.cid-v5FbBATXvB .close {
  background: #1b1b1b;
}
.cid-v5FbBATXvB .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v5FbBATXvB .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v5FbBATXvB .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v5FbBATXvB .carousel-control-next span {
  margin-left: 5px;
}
.cid-v5FbBATXvB .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v5FbBATXvB .close::before {
  content: '\e91a';
}
.cid-v5FbBATXvB .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v5FbBATXvB .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v5FbBATXvB .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v5FbBATXvB .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v5FbBATXvB .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v5FbBATXvB .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v5FbBATXvB .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v5FbBATXvB .carousel-indicators li.active,
.cid-v5FbBATXvB .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v5FbBATXvB .carousel-indicators li::after,
.cid-v5FbBATXvB .carousel-indicators li::before {
  content: none;
}
.cid-v5FbBATXvB .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v5FbBATXvB .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v5FbBATXvB .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v5FbBATXvB .carousel-indicators {
    display: none;
  }
}
.cid-v5FbBATXvB .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v5FbBATXvB .carousel-inner > .active {
  display: block;
}
.cid-v5FbBATXvB .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v5FbBATXvB .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v5FbBATXvB .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v5FbBATXvB .carousel-control,
  .cid-v5FbBATXvB .carousel-indicators,
  .cid-v5FbBATXvB .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v5FbBATXvB .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v5FbBATXvB .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v5FbBATXvB .carousel-indicators .active,
.cid-v5FbBATXvB .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v5FbBATXvB .carousel-indicators .active {
  background: #fff;
}
.cid-v5FbBATXvB .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v5FbBATXvB .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v5FbBATXvB .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v5FbBATXvB .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v5FbBATXvB .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v5FbBATXvB .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v5FbBATXvB .carousel {
  width: 100%;
}
.cid-v5FbBATXvB .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v5FbBATXvB .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v5FbBATXvB .modal.fade .modal-dialog,
.cid-v5FbBATXvB .modal.in .modal-dialog {
  transform: none;
}
.cid-v5FbBATXvB .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v5FbBATXvB H6 {
  text-align: center;
}
.cid-v5FbBATXvB .mbr-section-title {
  text-align: justify;
}
.cid-v5FbBATXvB .mbr-section-subtitle {
  text-align: justify;
}
.cid-v5F7qa8Kj1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v5F7qa8Kj1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5F7qa8Kj1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5F7qa8Kj1 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v5F7qa8Kj1 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-v5F7qa8Kj1 .item-wrapper {
  position: relative;
}
.cid-v5F7qa8Kj1 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v5F7qa8Kj1 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v5F7qa8Kj1 .carousel-control,
.cid-v5F7qa8Kj1 .close {
  background: #1b1b1b;
}
.cid-v5F7qa8Kj1 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v5F7qa8Kj1 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v5F7qa8Kj1 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v5F7qa8Kj1 .carousel-control-next span {
  margin-left: 5px;
}
.cid-v5F7qa8Kj1 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v5F7qa8Kj1 .close::before {
  content: '\e91a';
}
.cid-v5F7qa8Kj1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v5F7qa8Kj1 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v5F7qa8Kj1 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v5F7qa8Kj1 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v5F7qa8Kj1 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v5F7qa8Kj1 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v5F7qa8Kj1 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v5F7qa8Kj1 .carousel-indicators li.active,
.cid-v5F7qa8Kj1 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v5F7qa8Kj1 .carousel-indicators li::after,
.cid-v5F7qa8Kj1 .carousel-indicators li::before {
  content: none;
}
.cid-v5F7qa8Kj1 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v5F7qa8Kj1 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v5F7qa8Kj1 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v5F7qa8Kj1 .carousel-indicators {
    display: none;
  }
}
.cid-v5F7qa8Kj1 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v5F7qa8Kj1 .carousel-inner > .active {
  display: block;
}
.cid-v5F7qa8Kj1 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v5F7qa8Kj1 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v5F7qa8Kj1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v5F7qa8Kj1 .carousel-control,
  .cid-v5F7qa8Kj1 .carousel-indicators,
  .cid-v5F7qa8Kj1 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v5F7qa8Kj1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v5F7qa8Kj1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v5F7qa8Kj1 .carousel-indicators .active,
.cid-v5F7qa8Kj1 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v5F7qa8Kj1 .carousel-indicators .active {
  background: #fff;
}
.cid-v5F7qa8Kj1 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v5F7qa8Kj1 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v5F7qa8Kj1 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v5F7qa8Kj1 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v5F7qa8Kj1 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v5F7qa8Kj1 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v5F7qa8Kj1 .carousel {
  width: 100%;
}
.cid-v5F7qa8Kj1 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v5F7qa8Kj1 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v5F7qa8Kj1 .modal.fade .modal-dialog,
.cid-v5F7qa8Kj1 .modal.in .modal-dialog {
  transform: none;
}
.cid-v5F7qa8Kj1 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v5F7qa8Kj1 H6 {
  text-align: center;
}
.cid-v5F7qa8Kj1 .mbr-section-title {
  text-align: justify;
}
.cid-v5F7qa8Kj1 .mbr-section-subtitle {
  text-align: justify;
}
.cid-v3MyA6MQc3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v3MyA6MQc3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3MyA6MQc3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3MyA6MQc3 .item {
  padding-bottom: 2rem;
}
.cid-v3MyA6MQc3 .item-wrapper {
  position: relative;
}
.cid-v3MyA6MQc3 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v3MyA6MQc3 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v3MyA6MQc3 .carousel-control,
.cid-v3MyA6MQc3 .close {
  background: #1b1b1b;
}
.cid-v3MyA6MQc3 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v3MyA6MQc3 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v3MyA6MQc3 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v3MyA6MQc3 .carousel-control-next span {
  margin-left: 5px;
}
.cid-v3MyA6MQc3 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v3MyA6MQc3 .close::before {
  content: '\e91a';
}
.cid-v3MyA6MQc3 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v3MyA6MQc3 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v3MyA6MQc3 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3MyA6MQc3 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v3MyA6MQc3 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v3MyA6MQc3 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v3MyA6MQc3 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v3MyA6MQc3 .carousel-indicators li.active,
.cid-v3MyA6MQc3 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v3MyA6MQc3 .carousel-indicators li::after,
.cid-v3MyA6MQc3 .carousel-indicators li::before {
  content: none;
}
.cid-v3MyA6MQc3 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v3MyA6MQc3 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v3MyA6MQc3 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v3MyA6MQc3 .carousel-indicators {
    display: none;
  }
}
.cid-v3MyA6MQc3 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v3MyA6MQc3 .carousel-inner > .active {
  display: block;
}
.cid-v3MyA6MQc3 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3MyA6MQc3 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v3MyA6MQc3 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v3MyA6MQc3 .carousel-control,
  .cid-v3MyA6MQc3 .carousel-indicators,
  .cid-v3MyA6MQc3 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v3MyA6MQc3 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v3MyA6MQc3 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v3MyA6MQc3 .carousel-indicators .active,
.cid-v3MyA6MQc3 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v3MyA6MQc3 .carousel-indicators .active {
  background: #fff;
}
.cid-v3MyA6MQc3 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v3MyA6MQc3 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v3MyA6MQc3 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v3MyA6MQc3 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v3MyA6MQc3 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v3MyA6MQc3 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v3MyA6MQc3 .carousel {
  width: 100%;
}
.cid-v3MyA6MQc3 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v3MyA6MQc3 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v3MyA6MQc3 .modal.fade .modal-dialog,
.cid-v3MyA6MQc3 .modal.in .modal-dialog {
  transform: none;
}
.cid-v3MyA6MQc3 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v3MyA6MQc3 H6 {
  text-align: center;
}
.cid-v3MyA6MQc3 .mbr-section-title {
  color: #000000;
  text-align: justify;
}
.cid-v3MyA6MQc3 .mbr-section-subtitle {
  color: #000000;
  text-align: justify;
}
.cid-v4ytOwSviq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v4ytOwSviq img,
.cid-v4ytOwSviq .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v4ytOwSviq .item:focus,
.cid-v4ytOwSviq span:focus {
  outline: none;
}
.cid-v4ytOwSviq .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v4ytOwSviq .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4ytOwSviq .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4ytOwSviq .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4ytOwSviq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4ytOwSviq .mbr-section-title {
  color: #232323;
  text-align: justify;
}
.cid-v4ytOwSviq .mbr-section-subtitle {
  text-align: justify;
}
.cid-v4yjwkhGKK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v4yjwkhGKK img,
.cid-v4yjwkhGKK .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v4yjwkhGKK .item:focus,
.cid-v4yjwkhGKK span:focus {
  outline: none;
}
.cid-v4yjwkhGKK .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v4yjwkhGKK .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4yjwkhGKK .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4yjwkhGKK .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4yjwkhGKK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4yjwkhGKK .mbr-section-title {
  color: #232323;
  text-align: justify;
}
.cid-v4yjwkhGKK .mbr-section-subtitle {
  text-align: justify;
}
.cid-v4eHdtJWNQ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v4eHdtJWNQ img,
.cid-v4eHdtJWNQ .item-img {
  width: 100%;
}
.cid-v4eHdtJWNQ .item:focus,
.cid-v4eHdtJWNQ span:focus {
  outline: none;
}
.cid-v4eHdtJWNQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v4eHdtJWNQ .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4eHdtJWNQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4eHdtJWNQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4eHdtJWNQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4eHdtJWNQ .mbr-section-title {
  color: #232323;
  text-align: justify;
}
.cid-v4eHdtJWNQ .mbr-section-subtitle {
  text-align: justify;
}
.cid-v4xZ0DGfTP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v4xZ0DGfTP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4xZ0DGfTP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4xZ0DGfTP .item {
  padding-bottom: 2rem;
}
.cid-v4xZ0DGfTP .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v4xZ0DGfTP .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v4xZ0DGfTP .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v4xZ0DGfTP .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v4xZ0DGfTP .carousel-control,
.cid-v4xZ0DGfTP .close {
  background: #1b1b1b;
}
.cid-v4xZ0DGfTP .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v4xZ0DGfTP .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v4xZ0DGfTP .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v4xZ0DGfTP .carousel-control-next span {
  margin-left: 5px;
}
.cid-v4xZ0DGfTP .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v4xZ0DGfTP .close::before {
  content: '\e91a';
}
.cid-v4xZ0DGfTP .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v4xZ0DGfTP .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v4xZ0DGfTP .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v4xZ0DGfTP .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v4xZ0DGfTP .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v4xZ0DGfTP .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v4xZ0DGfTP .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v4xZ0DGfTP .carousel-indicators li.active,
.cid-v4xZ0DGfTP .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v4xZ0DGfTP .carousel-indicators li::after,
.cid-v4xZ0DGfTP .carousel-indicators li::before {
  content: none;
}
.cid-v4xZ0DGfTP .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v4xZ0DGfTP .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v4xZ0DGfTP .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v4xZ0DGfTP .carousel-indicators {
    display: none;
  }
}
.cid-v4xZ0DGfTP .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v4xZ0DGfTP .carousel-inner > .active {
  display: block;
}
.cid-v4xZ0DGfTP .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v4xZ0DGfTP .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v4xZ0DGfTP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v4xZ0DGfTP .carousel-control,
  .cid-v4xZ0DGfTP .carousel-indicators,
  .cid-v4xZ0DGfTP .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v4xZ0DGfTP .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v4xZ0DGfTP .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v4xZ0DGfTP .carousel-indicators .active,
.cid-v4xZ0DGfTP .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v4xZ0DGfTP .carousel-indicators .active {
  background: #fff;
}
.cid-v4xZ0DGfTP .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v4xZ0DGfTP .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v4xZ0DGfTP .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v4xZ0DGfTP .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v4xZ0DGfTP .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v4xZ0DGfTP .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v4xZ0DGfTP .carousel {
  width: 100%;
}
.cid-v4xZ0DGfTP .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v4xZ0DGfTP .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v4xZ0DGfTP .modal.fade .modal-dialog,
.cid-v4xZ0DGfTP .modal.in .modal-dialog {
  transform: none;
}
.cid-v4xZ0DGfTP .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v4xZ0DGfTP H6 {
  text-align: center;
}
.cid-v4xZ0DGfTP .mbr-section-title {
  color: #000000;
  text-align: justify;
}
.cid-v4xZ0DGfTP .mbr-section-subtitle {
  color: #000000;
  text-align: justify;
}
.cid-v3MgGl9cVS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v3MgGl9cVS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3MgGl9cVS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3MgGl9cVS .item {
  padding-bottom: 2rem;
}
.cid-v3MgGl9cVS .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v3MgGl9cVS .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v3MgGl9cVS .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v3MgGl9cVS .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v3MgGl9cVS .carousel-control,
.cid-v3MgGl9cVS .close {
  background: #1b1b1b;
}
.cid-v3MgGl9cVS .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v3MgGl9cVS .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v3MgGl9cVS .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v3MgGl9cVS .carousel-control-next span {
  margin-left: 5px;
}
.cid-v3MgGl9cVS .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v3MgGl9cVS .close::before {
  content: '\e91a';
}
.cid-v3MgGl9cVS .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v3MgGl9cVS .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v3MgGl9cVS .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3MgGl9cVS .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v3MgGl9cVS .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v3MgGl9cVS .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v3MgGl9cVS .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v3MgGl9cVS .carousel-indicators li.active,
.cid-v3MgGl9cVS .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v3MgGl9cVS .carousel-indicators li::after,
.cid-v3MgGl9cVS .carousel-indicators li::before {
  content: none;
}
.cid-v3MgGl9cVS .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v3MgGl9cVS .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v3MgGl9cVS .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v3MgGl9cVS .carousel-indicators {
    display: none;
  }
}
.cid-v3MgGl9cVS .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v3MgGl9cVS .carousel-inner > .active {
  display: block;
}
.cid-v3MgGl9cVS .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3MgGl9cVS .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v3MgGl9cVS .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v3MgGl9cVS .carousel-control,
  .cid-v3MgGl9cVS .carousel-indicators,
  .cid-v3MgGl9cVS .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v3MgGl9cVS .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v3MgGl9cVS .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v3MgGl9cVS .carousel-indicators .active,
.cid-v3MgGl9cVS .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v3MgGl9cVS .carousel-indicators .active {
  background: #fff;
}
.cid-v3MgGl9cVS .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v3MgGl9cVS .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v3MgGl9cVS .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v3MgGl9cVS .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v3MgGl9cVS .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v3MgGl9cVS .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v3MgGl9cVS .carousel {
  width: 100%;
}
.cid-v3MgGl9cVS .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v3MgGl9cVS .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v3MgGl9cVS .modal.fade .modal-dialog,
.cid-v3MgGl9cVS .modal.in .modal-dialog {
  transform: none;
}
.cid-v3MgGl9cVS .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v3MgGl9cVS H6 {
  text-align: center;
}
.cid-v3MgGl9cVS .mbr-section-title {
  color: #000000;
  text-align: justify;
}
.cid-v3MgGl9cVS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3MzZINJmd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v3MzZINJmd img,
.cid-v3MzZINJmd .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v3MzZINJmd .item:focus,
.cid-v3MzZINJmd span:focus {
  outline: none;
}
.cid-v3MzZINJmd .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v3MzZINJmd .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v3MzZINJmd .item {
  padding: 0;
  margin: 0;
}
.cid-v3MzZINJmd .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3MzZINJmd .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3MzZINJmd .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3MzZINJmd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3MzZINJmd .mbr-section-title {
  color: #232323;
  text-align: justify;
}
.cid-v3MzZINJmd .mbr-section-subtitle {
  text-align: justify;
}
.cid-v4xYbihB9x {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v4xYbihB9x .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4xYbihB9x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4xYbihB9x .item {
  padding-bottom: 2rem;
}
.cid-v4xYbihB9x .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v4xYbihB9x .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v4xYbihB9x .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v4xYbihB9x .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v4xYbihB9x .carousel-control,
.cid-v4xYbihB9x .close {
  background: #1b1b1b;
}
.cid-v4xYbihB9x .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v4xYbihB9x .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v4xYbihB9x .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v4xYbihB9x .carousel-control-next span {
  margin-left: 5px;
}
.cid-v4xYbihB9x .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v4xYbihB9x .close::before {
  content: '\e91a';
}
.cid-v4xYbihB9x .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v4xYbihB9x .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v4xYbihB9x .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v4xYbihB9x .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v4xYbihB9x .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v4xYbihB9x .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v4xYbihB9x .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v4xYbihB9x .carousel-indicators li.active,
.cid-v4xYbihB9x .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v4xYbihB9x .carousel-indicators li::after,
.cid-v4xYbihB9x .carousel-indicators li::before {
  content: none;
}
.cid-v4xYbihB9x .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v4xYbihB9x .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v4xYbihB9x .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v4xYbihB9x .carousel-indicators {
    display: none;
  }
}
.cid-v4xYbihB9x .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v4xYbihB9x .carousel-inner > .active {
  display: block;
}
.cid-v4xYbihB9x .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v4xYbihB9x .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v4xYbihB9x .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v4xYbihB9x .carousel-control,
  .cid-v4xYbihB9x .carousel-indicators,
  .cid-v4xYbihB9x .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v4xYbihB9x .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v4xYbihB9x .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v4xYbihB9x .carousel-indicators .active,
.cid-v4xYbihB9x .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v4xYbihB9x .carousel-indicators .active {
  background: #fff;
}
.cid-v4xYbihB9x .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v4xYbihB9x .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v4xYbihB9x .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v4xYbihB9x .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v4xYbihB9x .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v4xYbihB9x .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v4xYbihB9x .carousel {
  width: 100%;
}
.cid-v4xYbihB9x .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v4xYbihB9x .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v4xYbihB9x .modal.fade .modal-dialog,
.cid-v4xYbihB9x .modal.in .modal-dialog {
  transform: none;
}
.cid-v4xYbihB9x .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v4xYbihB9x H6 {
  text-align: center;
}
.cid-v4xYbihB9x .mbr-section-title {
  color: #000000;
  text-align: justify;
}
.cid-v4xYbihB9x .mbr-section-subtitle {
  color: #000000;
  text-align: justify;
}
.cid-v3Mh6Dw2TB {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v3Mh6Dw2TB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Mh6Dw2TB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Mh6Dw2TB .item {
  padding-bottom: 2rem;
}
.cid-v3Mh6Dw2TB .item-wrapper {
  position: relative;
}
.cid-v3Mh6Dw2TB .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v3Mh6Dw2TB .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v3Mh6Dw2TB .carousel-control,
.cid-v3Mh6Dw2TB .close {
  background: #1b1b1b;
}
.cid-v3Mh6Dw2TB .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v3Mh6Dw2TB .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v3Mh6Dw2TB .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v3Mh6Dw2TB .carousel-control-next span {
  margin-left: 5px;
}
.cid-v3Mh6Dw2TB .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v3Mh6Dw2TB .close::before {
  content: '\e91a';
}
.cid-v3Mh6Dw2TB .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v3Mh6Dw2TB .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v3Mh6Dw2TB .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3Mh6Dw2TB .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v3Mh6Dw2TB .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v3Mh6Dw2TB .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v3Mh6Dw2TB .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v3Mh6Dw2TB .carousel-indicators li.active,
.cid-v3Mh6Dw2TB .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v3Mh6Dw2TB .carousel-indicators li::after,
.cid-v3Mh6Dw2TB .carousel-indicators li::before {
  content: none;
}
.cid-v3Mh6Dw2TB .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v3Mh6Dw2TB .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v3Mh6Dw2TB .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v3Mh6Dw2TB .carousel-indicators {
    display: none;
  }
}
.cid-v3Mh6Dw2TB .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v3Mh6Dw2TB .carousel-inner > .active {
  display: block;
}
.cid-v3Mh6Dw2TB .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3Mh6Dw2TB .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v3Mh6Dw2TB .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v3Mh6Dw2TB .carousel-control,
  .cid-v3Mh6Dw2TB .carousel-indicators,
  .cid-v3Mh6Dw2TB .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v3Mh6Dw2TB .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v3Mh6Dw2TB .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v3Mh6Dw2TB .carousel-indicators .active,
.cid-v3Mh6Dw2TB .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v3Mh6Dw2TB .carousel-indicators .active {
  background: #fff;
}
.cid-v3Mh6Dw2TB .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v3Mh6Dw2TB .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v3Mh6Dw2TB .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v3Mh6Dw2TB .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v3Mh6Dw2TB .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v3Mh6Dw2TB .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v3Mh6Dw2TB .carousel {
  width: 100%;
}
.cid-v3Mh6Dw2TB .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v3Mh6Dw2TB .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v3Mh6Dw2TB .modal.fade .modal-dialog,
.cid-v3Mh6Dw2TB .modal.in .modal-dialog {
  transform: none;
}
.cid-v3Mh6Dw2TB .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v3Mh6Dw2TB H6 {
  text-align: center;
}
.cid-v3Mh6Dw2TB .mbr-section-title {
  color: #000000;
  text-align: justify;
}
.cid-v3Mh6Dw2TB .mbr-section-subtitle {
  color: #000000;
  text-align: justify;
}
.cid-v7h1XNTCHE {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-v7h1XNTCHE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7h1XNTCHE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7h1XNTCHE .item {
  padding-bottom: 2rem;
}
.cid-v7h1XNTCHE .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v7h1XNTCHE .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v7h1XNTCHE .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v7h1XNTCHE .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v7h1XNTCHE .carousel-control,
.cid-v7h1XNTCHE .close {
  background: #1b1b1b;
}
.cid-v7h1XNTCHE .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v7h1XNTCHE .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v7h1XNTCHE .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v7h1XNTCHE .carousel-control-next span {
  margin-left: 5px;
}
.cid-v7h1XNTCHE .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v7h1XNTCHE .close::before {
  content: '\e91a';
}
.cid-v7h1XNTCHE .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v7h1XNTCHE .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v7h1XNTCHE .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7h1XNTCHE .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v7h1XNTCHE .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v7h1XNTCHE .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v7h1XNTCHE .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v7h1XNTCHE .carousel-indicators li.active,
.cid-v7h1XNTCHE .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v7h1XNTCHE .carousel-indicators li::after,
.cid-v7h1XNTCHE .carousel-indicators li::before {
  content: none;
}
.cid-v7h1XNTCHE .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v7h1XNTCHE .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v7h1XNTCHE .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v7h1XNTCHE .carousel-indicators {
    display: none;
  }
}
.cid-v7h1XNTCHE .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v7h1XNTCHE .carousel-inner > .active {
  display: block;
}
.cid-v7h1XNTCHE .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7h1XNTCHE .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7h1XNTCHE .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v7h1XNTCHE .carousel-control,
  .cid-v7h1XNTCHE .carousel-indicators,
  .cid-v7h1XNTCHE .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v7h1XNTCHE .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v7h1XNTCHE .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v7h1XNTCHE .carousel-indicators .active,
.cid-v7h1XNTCHE .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v7h1XNTCHE .carousel-indicators .active {
  background: #fff;
}
.cid-v7h1XNTCHE .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v7h1XNTCHE .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v7h1XNTCHE .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v7h1XNTCHE .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v7h1XNTCHE .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v7h1XNTCHE .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v7h1XNTCHE .carousel {
  width: 100%;
}
.cid-v7h1XNTCHE .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v7h1XNTCHE .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v7h1XNTCHE .modal.fade .modal-dialog,
.cid-v7h1XNTCHE .modal.in .modal-dialog {
  transform: none;
}
.cid-v7h1XNTCHE .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v7h1XNTCHE H6 {
  text-align: center;
}
.cid-v7h1XNTCHE .mbr-section-title {
  color: #000000;
  text-align: justify;
}
.cid-v7h1XNTCHE .mbr-section-subtitle {
  color: #000000;
  text-align: justify;
}
.cid-v5nf10HJjD {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v5nf10HJjD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5nf10HJjD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5nf10HJjD .mbr-section-title {
  text-align: justify;
}
.cid-v5nf10HJjD .mbr-section-subtitle {
  text-align: justify;
}
.cid-v5nefqVHEi {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-v5nefqVHEi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5nefqVHEi .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-v5nefqVHEi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v5nefqVHEi .row {
  flex-direction: row-reverse;
}
.cid-v5nefqVHEi img {
  width: 100%;
}
.cid-v4ybKnDBme {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v4ybKnDBme .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4ybKnDBme .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4ybKnDBme .item {
  padding-bottom: 2rem;
}
.cid-v4ybKnDBme .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v4ybKnDBme .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v4ybKnDBme .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v4ybKnDBme .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v4ybKnDBme .carousel-control,
.cid-v4ybKnDBme .close {
  background: #1b1b1b;
}
.cid-v4ybKnDBme .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v4ybKnDBme .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v4ybKnDBme .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v4ybKnDBme .carousel-control-next span {
  margin-left: 5px;
}
.cid-v4ybKnDBme .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v4ybKnDBme .close::before {
  content: '\e91a';
}
.cid-v4ybKnDBme .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v4ybKnDBme .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v4ybKnDBme .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v4ybKnDBme .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v4ybKnDBme .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v4ybKnDBme .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v4ybKnDBme .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v4ybKnDBme .carousel-indicators li.active,
.cid-v4ybKnDBme .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v4ybKnDBme .carousel-indicators li::after,
.cid-v4ybKnDBme .carousel-indicators li::before {
  content: none;
}
.cid-v4ybKnDBme .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v4ybKnDBme .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v4ybKnDBme .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v4ybKnDBme .carousel-indicators {
    display: none;
  }
}
.cid-v4ybKnDBme .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v4ybKnDBme .carousel-inner > .active {
  display: block;
}
.cid-v4ybKnDBme .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v4ybKnDBme .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v4ybKnDBme .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v4ybKnDBme .carousel-control,
  .cid-v4ybKnDBme .carousel-indicators,
  .cid-v4ybKnDBme .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v4ybKnDBme .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v4ybKnDBme .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v4ybKnDBme .carousel-indicators .active,
.cid-v4ybKnDBme .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v4ybKnDBme .carousel-indicators .active {
  background: #fff;
}
.cid-v4ybKnDBme .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v4ybKnDBme .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v4ybKnDBme .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v4ybKnDBme .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v4ybKnDBme .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v4ybKnDBme .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v4ybKnDBme .carousel {
  width: 100%;
}
.cid-v4ybKnDBme .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v4ybKnDBme .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v4ybKnDBme .modal.fade .modal-dialog,
.cid-v4ybKnDBme .modal.in .modal-dialog {
  transform: none;
}
.cid-v4ybKnDBme .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v4ybKnDBme H6 {
  text-align: center;
}
.cid-v4ybKnDBme .mbr-section-title {
  color: #000000;
  text-align: justify;
}
.cid-v4ybKnDBme .mbr-section-subtitle {
  color: #000000;
  text-align: justify;
}
.cid-v3MgNB53NB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v3MgNB53NB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3MgNB53NB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3MgNB53NB .item {
  padding-bottom: 2rem;
}
.cid-v3MgNB53NB .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v3MgNB53NB .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v3MgNB53NB .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v3MgNB53NB .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v3MgNB53NB .carousel-control,
.cid-v3MgNB53NB .close {
  background: #1b1b1b;
}
.cid-v3MgNB53NB .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v3MgNB53NB .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v3MgNB53NB .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v3MgNB53NB .carousel-control-next span {
  margin-left: 5px;
}
.cid-v3MgNB53NB .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v3MgNB53NB .close::before {
  content: '\e91a';
}
.cid-v3MgNB53NB .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v3MgNB53NB .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v3MgNB53NB .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3MgNB53NB .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v3MgNB53NB .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v3MgNB53NB .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v3MgNB53NB .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v3MgNB53NB .carousel-indicators li.active,
.cid-v3MgNB53NB .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v3MgNB53NB .carousel-indicators li::after,
.cid-v3MgNB53NB .carousel-indicators li::before {
  content: none;
}
.cid-v3MgNB53NB .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v3MgNB53NB .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v3MgNB53NB .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v3MgNB53NB .carousel-indicators {
    display: none;
  }
}
.cid-v3MgNB53NB .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v3MgNB53NB .carousel-inner > .active {
  display: block;
}
.cid-v3MgNB53NB .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3MgNB53NB .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v3MgNB53NB .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v3MgNB53NB .carousel-control,
  .cid-v3MgNB53NB .carousel-indicators,
  .cid-v3MgNB53NB .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v3MgNB53NB .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v3MgNB53NB .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v3MgNB53NB .carousel-indicators .active,
.cid-v3MgNB53NB .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v3MgNB53NB .carousel-indicators .active {
  background: #fff;
}
.cid-v3MgNB53NB .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v3MgNB53NB .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v3MgNB53NB .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v3MgNB53NB .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v3MgNB53NB .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v3MgNB53NB .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v3MgNB53NB .carousel {
  width: 100%;
}
.cid-v3MgNB53NB .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v3MgNB53NB .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v3MgNB53NB .modal.fade .modal-dialog,
.cid-v3MgNB53NB .modal.in .modal-dialog {
  transform: none;
}
.cid-v3MgNB53NB .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v3MgNB53NB H6 {
  text-align: center;
}
.cid-v3MgNB53NB .mbr-section-title {
  color: #000000;
  text-align: justify;
}
.cid-v3MgNB53NB .mbr-section-subtitle {
  color: #000000;
  text-align: justify;
}
.cid-v4yazLCdm7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v4yazLCdm7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4yazLCdm7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4yazLCdm7 .item {
  padding-bottom: 2rem;
}
.cid-v4yazLCdm7 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v4yazLCdm7 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v4yazLCdm7 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v4yazLCdm7 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v4yazLCdm7 .carousel-control,
.cid-v4yazLCdm7 .close {
  background: #1b1b1b;
}
.cid-v4yazLCdm7 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v4yazLCdm7 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v4yazLCdm7 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v4yazLCdm7 .carousel-control-next span {
  margin-left: 5px;
}
.cid-v4yazLCdm7 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v4yazLCdm7 .close::before {
  content: '\e91a';
}
.cid-v4yazLCdm7 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v4yazLCdm7 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v4yazLCdm7 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v4yazLCdm7 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v4yazLCdm7 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v4yazLCdm7 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v4yazLCdm7 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v4yazLCdm7 .carousel-indicators li.active,
.cid-v4yazLCdm7 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v4yazLCdm7 .carousel-indicators li::after,
.cid-v4yazLCdm7 .carousel-indicators li::before {
  content: none;
}
.cid-v4yazLCdm7 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v4yazLCdm7 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v4yazLCdm7 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v4yazLCdm7 .carousel-indicators {
    display: none;
  }
}
.cid-v4yazLCdm7 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v4yazLCdm7 .carousel-inner > .active {
  display: block;
}
.cid-v4yazLCdm7 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v4yazLCdm7 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v4yazLCdm7 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v4yazLCdm7 .carousel-control,
  .cid-v4yazLCdm7 .carousel-indicators,
  .cid-v4yazLCdm7 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v4yazLCdm7 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v4yazLCdm7 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v4yazLCdm7 .carousel-indicators .active,
.cid-v4yazLCdm7 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v4yazLCdm7 .carousel-indicators .active {
  background: #fff;
}
.cid-v4yazLCdm7 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v4yazLCdm7 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v4yazLCdm7 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v4yazLCdm7 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v4yazLCdm7 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v4yazLCdm7 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v4yazLCdm7 .carousel {
  width: 100%;
}
.cid-v4yazLCdm7 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v4yazLCdm7 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v4yazLCdm7 .modal.fade .modal-dialog,
.cid-v4yazLCdm7 .modal.in .modal-dialog {
  transform: none;
}
.cid-v4yazLCdm7 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v4yazLCdm7 H6 {
  text-align: center;
}
.cid-v4yazLCdm7 .mbr-section-title {
  color: #000000;
  text-align: justify;
}
.cid-v4yazLCdm7 .mbr-section-subtitle {
  color: #000000;
  text-align: justify;
}
.cid-v3MxyvFx7S {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v3MxyvFx7S .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3MxyvFx7S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3MxyvFx7S .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v3MxyvFx7S .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-v3MxyvFx7S .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v3MxyvFx7S .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v3MxyvFx7S .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v3MxyvFx7S .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v3MxyvFx7S .carousel-control,
.cid-v3MxyvFx7S .close {
  background: #1b1b1b;
}
.cid-v3MxyvFx7S .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v3MxyvFx7S .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v3MxyvFx7S .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v3MxyvFx7S .carousel-control-next span {
  margin-left: 5px;
}
.cid-v3MxyvFx7S .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v3MxyvFx7S .close::before {
  content: '\e91a';
}
.cid-v3MxyvFx7S .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v3MxyvFx7S .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v3MxyvFx7S .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3MxyvFx7S .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v3MxyvFx7S .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v3MxyvFx7S .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v3MxyvFx7S .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v3MxyvFx7S .carousel-indicators li.active,
.cid-v3MxyvFx7S .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v3MxyvFx7S .carousel-indicators li::after,
.cid-v3MxyvFx7S .carousel-indicators li::before {
  content: none;
}
.cid-v3MxyvFx7S .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v3MxyvFx7S .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v3MxyvFx7S .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v3MxyvFx7S .carousel-indicators {
    display: none;
  }
}
.cid-v3MxyvFx7S .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v3MxyvFx7S .carousel-inner > .active {
  display: block;
}
.cid-v3MxyvFx7S .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3MxyvFx7S .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v3MxyvFx7S .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v3MxyvFx7S .carousel-control,
  .cid-v3MxyvFx7S .carousel-indicators,
  .cid-v3MxyvFx7S .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v3MxyvFx7S .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v3MxyvFx7S .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v3MxyvFx7S .carousel-indicators .active,
.cid-v3MxyvFx7S .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v3MxyvFx7S .carousel-indicators .active {
  background: #fff;
}
.cid-v3MxyvFx7S .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v3MxyvFx7S .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v3MxyvFx7S .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v3MxyvFx7S .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v3MxyvFx7S .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v3MxyvFx7S .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v3MxyvFx7S .carousel {
  width: 100%;
}
.cid-v3MxyvFx7S .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v3MxyvFx7S .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v3MxyvFx7S .modal.fade .modal-dialog,
.cid-v3MxyvFx7S .modal.in .modal-dialog {
  transform: none;
}
.cid-v3MxyvFx7S .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v3MxyvFx7S H6 {
  text-align: center;
}
.cid-v3MxyvFx7S .mbr-section-title {
  color: #000000;
  text-align: justify;
}
.cid-v3MxyvFx7S .mbr-section-subtitle {
  color: #000000;
  text-align: justify;
}
.cid-v4yvhMirCs {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v4yvhMirCs .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4yvhMirCs .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-v4yvhMirCs .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v4yvhMirCs .row {
  flex-direction: row-reverse;
}
.cid-v4yvhMirCs img {
  width: 100%;
}
.cid-v3MAUiBY4o {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-v3MAUiBY4o img,
.cid-v3MAUiBY4o .item-img {
  width: 100%;
}
.cid-v3MAUiBY4o .item:focus,
.cid-v3MAUiBY4o span:focus {
  outline: none;
}
.cid-v3MAUiBY4o .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v3MAUiBY4o .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v3MAUiBY4o .item {
  padding: 0;
  margin: 0;
}
.cid-v3MAUiBY4o .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3MAUiBY4o .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3MAUiBY4o .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3MAUiBY4o .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3MAUiBY4o .mbr-section-title {
  color: #232323;
  text-align: justify;
}
.cid-v7hTBXsirD {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7hTBXsirD img,
.cid-v7hTBXsirD .item-img {
  width: 100%;
}
.cid-v7hTBXsirD .item:focus,
.cid-v7hTBXsirD span:focus {
  outline: none;
}
.cid-v7hTBXsirD .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v7hTBXsirD .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v7hTBXsirD .item {
  padding: 0;
  margin: 0;
}
.cid-v7hTBXsirD .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v7hTBXsirD .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v7hTBXsirD .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v7hTBXsirD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v7hTBXsirD .mbr-section-title {
  color: #232323;
  text-align: justify;
}
.cid-v7hTBXsirD .mbr-section-subtitle {
  text-align: justify;
}
.cid-v3GUNHSYdi {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/02-b-pieklo-tlo-1366x768.png");
}
.cid-v3GUNHSYdi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GUNHSYdi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GUNIsCJ3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-v3AM9Nz3IL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v3AM9Nz3IL nav.navbar {
  position: fixed;
}
.cid-v3AM9Nz3IL .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-v3AM9Nz3IL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3AM9Nz3IL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v3AM9Nz3IL .dropdown-item:hover,
.cid-v3AM9Nz3IL .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-v3AM9Nz3IL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v3AM9Nz3IL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v3AM9Nz3IL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v3AM9Nz3IL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v3AM9Nz3IL .nav-link {
  position: relative;
}
.cid-v3AM9Nz3IL .container {
  display: flex;
  margin: auto;
}
.cid-v3AM9Nz3IL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v3AM9Nz3IL .dropdown-menu,
.cid-v3AM9Nz3IL .navbar.opened {
  background: #ffffff !important;
}
.cid-v3AM9Nz3IL .nav-item:focus,
.cid-v3AM9Nz3IL .nav-link:focus {
  outline: none;
}
.cid-v3AM9Nz3IL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3AM9Nz3IL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3AM9Nz3IL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3AM9Nz3IL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3AM9Nz3IL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3AM9Nz3IL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3AM9Nz3IL .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-v3AM9Nz3IL .navbar.opened {
  transition: all 0.3s;
}
.cid-v3AM9Nz3IL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3AM9Nz3IL .navbar .navbar-logo img {
  width: auto;
}
.cid-v3AM9Nz3IL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v3AM9Nz3IL .navbar.collapsed {
  justify-content: center;
}
.cid-v3AM9Nz3IL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3AM9Nz3IL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v3AM9Nz3IL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3AM9Nz3IL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3AM9Nz3IL .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-v3AM9Nz3IL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3AM9Nz3IL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3AM9Nz3IL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3AM9Nz3IL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3AM9Nz3IL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3AM9Nz3IL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3AM9Nz3IL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3AM9Nz3IL .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-v3AM9Nz3IL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3AM9Nz3IL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3AM9Nz3IL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3AM9Nz3IL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3AM9Nz3IL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3AM9Nz3IL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3AM9Nz3IL .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3AM9Nz3IL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3AM9Nz3IL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v3AM9Nz3IL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v3AM9Nz3IL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3AM9Nz3IL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3AM9Nz3IL .dropdown-item.active,
.cid-v3AM9Nz3IL .dropdown-item:active {
  background-color: transparent;
}
.cid-v3AM9Nz3IL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3AM9Nz3IL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3AM9Nz3IL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3AM9Nz3IL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v3AM9Nz3IL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3AM9Nz3IL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3AM9Nz3IL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3AM9Nz3IL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3AM9Nz3IL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3AM9Nz3IL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v3AM9Nz3IL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3AM9Nz3IL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3AM9Nz3IL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3AM9Nz3IL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3AM9Nz3IL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3AM9Nz3IL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3AM9Nz3IL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3AM9Nz3IL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3AM9Nz3IL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3AM9Nz3IL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3AM9Nz3IL .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-v3AM9Nz3IL .navbar {
    height: 70px;
  }
  .cid-v3AM9Nz3IL .navbar.opened {
    height: auto;
  }
  .cid-v3AM9Nz3IL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3AM9OcXGR {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v3AM9OcXGR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3AM9OcXGR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3AM9OcXGR .mbr-section-title {
  color: #000000;
}
.cid-v3AM9ONbPM {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/the-flight-of-the-quirky-owl-still2-1900x1069.jpeg");
}
.cid-v3AM9ONbPM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3AM9ONbPM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GbZaPigh {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-v3GbZaPigh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GbZaPigh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GbZaPigh ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-v3GbZaPigh li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-v3GbZaPigh ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #22a5e5;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-v3G9PIPtDh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v3G9PIPtDh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3G9PIPtDh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3G9PIPtDh ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-v3G9PIPtDh li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-v3G9PIPtDh ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #22a5e5;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-v3G9PIPtDh .mbr-section-title {
  text-align: justify;
  color: #000000;
}
.cid-v3G9PIPtDh .list {
  color: #232323;
}
.cid-v3Ggaswl1Y {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-v3Ggaswl1Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Ggaswl1Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Ggaswl1Y ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-v3Ggaswl1Y li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-v3Ggaswl1Y ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #22a5e5;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-v3Ggaswl1Y .mbr-section-title {
  text-align: justify;
  color: #000000;
}
.cid-v3Ggaswl1Y .list {
  color: #232323;
}
.cid-v3GgMwruiI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v3GgMwruiI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GgMwruiI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GgMwruiI ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-v3GgMwruiI li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-v3GgMwruiI ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #22a5e5;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-v3GgMwruiI .mbr-section-title {
  text-align: justify;
  color: #000000;
}
.cid-v3GgMwruiI .list {
  color: #232323;
}
.cid-v3GgqCoFOe {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-v3GgqCoFOe .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GgqCoFOe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GgqCoFOe ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-v3GgqCoFOe li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-v3GgqCoFOe ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #22a5e5;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-v3GgqCoFOe .mbr-section-title {
  text-align: justify;
  color: #000000;
}
.cid-v3GgqCoFOe .list {
  color: #232323;
}
.cid-v3Ggt4ZjE3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v3Ggt4ZjE3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Ggt4ZjE3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Ggt4ZjE3 ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-v3Ggt4ZjE3 li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-v3Ggt4ZjE3 ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #22a5e5;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-v3Ggt4ZjE3 .mbr-section-title {
  text-align: justify;
  color: #000000;
}
.cid-v3Ggt4ZjE3 .list {
  color: #232323;
}
.cid-v3GahqGPWK {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-v3GahqGPWK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GahqGPWK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GahqGPWK ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-v3GahqGPWK li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-v3GahqGPWK ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #22a5e5;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-v3Gnwr7vdR {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-v3AM9Xgobt {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/the-flight-of-the-quirky-owl-book-1900x1069.jpeg");
}
.cid-v3AM9Xgobt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3AM9Xgobt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3AM9XJiHh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-v4eJaUzlgf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v4eJaUzlgf nav.navbar {
  position: fixed;
}
.cid-v4eJaUzlgf .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-v4eJaUzlgf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v4eJaUzlgf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v4eJaUzlgf .dropdown-item:hover,
.cid-v4eJaUzlgf .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-v4eJaUzlgf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v4eJaUzlgf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v4eJaUzlgf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v4eJaUzlgf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v4eJaUzlgf .nav-link {
  position: relative;
}
.cid-v4eJaUzlgf .container {
  display: flex;
  margin: auto;
}
.cid-v4eJaUzlgf .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v4eJaUzlgf .dropdown-menu,
.cid-v4eJaUzlgf .navbar.opened {
  background: #ffffff !important;
}
.cid-v4eJaUzlgf .nav-item:focus,
.cid-v4eJaUzlgf .nav-link:focus {
  outline: none;
}
.cid-v4eJaUzlgf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4eJaUzlgf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4eJaUzlgf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4eJaUzlgf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4eJaUzlgf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4eJaUzlgf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4eJaUzlgf .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-v4eJaUzlgf .navbar.opened {
  transition: all 0.3s;
}
.cid-v4eJaUzlgf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4eJaUzlgf .navbar .navbar-logo img {
  width: auto;
}
.cid-v4eJaUzlgf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v4eJaUzlgf .navbar.collapsed {
  justify-content: center;
}
.cid-v4eJaUzlgf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4eJaUzlgf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v4eJaUzlgf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4eJaUzlgf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4eJaUzlgf .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-v4eJaUzlgf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4eJaUzlgf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4eJaUzlgf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v4eJaUzlgf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4eJaUzlgf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4eJaUzlgf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4eJaUzlgf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4eJaUzlgf .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-v4eJaUzlgf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v4eJaUzlgf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v4eJaUzlgf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4eJaUzlgf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v4eJaUzlgf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4eJaUzlgf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v4eJaUzlgf .navbar.navbar-short {
  min-height: 60px;
}
.cid-v4eJaUzlgf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v4eJaUzlgf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v4eJaUzlgf .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4eJaUzlgf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4eJaUzlgf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4eJaUzlgf .dropdown-item.active,
.cid-v4eJaUzlgf .dropdown-item:active {
  background-color: transparent;
}
.cid-v4eJaUzlgf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4eJaUzlgf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4eJaUzlgf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4eJaUzlgf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v4eJaUzlgf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v4eJaUzlgf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v4eJaUzlgf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4eJaUzlgf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v4eJaUzlgf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4eJaUzlgf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v4eJaUzlgf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4eJaUzlgf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4eJaUzlgf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4eJaUzlgf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4eJaUzlgf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4eJaUzlgf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4eJaUzlgf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4eJaUzlgf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4eJaUzlgf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v4eJaUzlgf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4eJaUzlgf .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-v4eJaUzlgf .navbar {
    height: 70px;
  }
  .cid-v4eJaUzlgf .navbar.opened {
    height: auto;
  }
  .cid-v4eJaUzlgf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4eJaVuWt5 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/02-b-pieklo-tlo-1366x768.png");
}
.cid-v4eJaVuWt5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4eJaVuWt5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4eJaW0PlD {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v4eJaW0PlD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4eJaW0PlD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4eJaW0PlD .mbr-section-title {
  color: #000000;
}
.cid-v4IHbtUBhS {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v4IHbtUBhS img,
.cid-v4IHbtUBhS .item-img {
  width: 100%;
}
.cid-v4IHbtUBhS .item:focus,
.cid-v4IHbtUBhS span:focus {
  outline: none;
}
.cid-v4IHbtUBhS .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v4IHbtUBhS .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4IHbtUBhS .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4IHbtUBhS .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4IHbtUBhS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4IHbtUBhS .mbr-section-title {
  color: #232323;
  text-align: justify;
}
.cid-v4IHbtUBhS .mbr-section-subtitle {
  text-align: justify;
}
.cid-v4IBkrizI1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v4IBkrizI1 img,
.cid-v4IBkrizI1 .item-img {
  width: 100%;
}
.cid-v4IBkrizI1 .item:focus,
.cid-v4IBkrizI1 span:focus {
  outline: none;
}
.cid-v4IBkrizI1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v4IBkrizI1 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4IBkrizI1 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4IBkrizI1 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4IBkrizI1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4IBkrizI1 .mbr-section-title {
  color: #232323;
  text-align: justify;
}
.cid-v4IBkrizI1 .mbr-section-subtitle {
  text-align: justify;
}
.cid-v4IBkTdTab {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v4IBkTdTab img,
.cid-v4IBkTdTab .item-img {
  width: 100%;
}
.cid-v4IBkTdTab .item:focus,
.cid-v4IBkTdTab span:focus {
  outline: none;
}
.cid-v4IBkTdTab .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v4IBkTdTab .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4IBkTdTab .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4IBkTdTab .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4IBkTdTab .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4IBkTdTab .mbr-section-title {
  color: #232323;
  text-align: justify;
}
.cid-v4IBkTdTab .mbr-section-subtitle {
  text-align: justify;
}
.cid-v4IB9WdCz7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v4IB9WdCz7 img,
.cid-v4IB9WdCz7 .item-img {
  width: 100%;
}
.cid-v4IB9WdCz7 .item:focus,
.cid-v4IB9WdCz7 span:focus {
  outline: none;
}
.cid-v4IB9WdCz7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v4IB9WdCz7 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4IB9WdCz7 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4IB9WdCz7 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4IB9WdCz7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4IB9WdCz7 .mbr-section-title {
  color: #232323;
  text-align: justify;
}
.cid-v4IB9WdCz7 .mbr-section-subtitle {
  text-align: justify;
}
.cid-v4IHLMDS0L {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v4IHLMDS0L img,
.cid-v4IHLMDS0L .item-img {
  width: 100%;
}
.cid-v4IHLMDS0L .item:focus,
.cid-v4IHLMDS0L span:focus {
  outline: none;
}
.cid-v4IHLMDS0L .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v4IHLMDS0L .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4IHLMDS0L .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4IHLMDS0L .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4IHLMDS0L .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4IHLMDS0L .mbr-section-title {
  color: #232323;
  text-align: justify;
}
.cid-v4IHLMDS0L .mbr-section-subtitle {
  text-align: justify;
}
.cid-v4IWuoB03o {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v4IWuoB03o img,
.cid-v4IWuoB03o .item-img {
  width: 100%;
}
.cid-v4IWuoB03o .item:focus,
.cid-v4IWuoB03o span:focus {
  outline: none;
}
.cid-v4IWuoB03o .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v4IWuoB03o .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4IWuoB03o .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4IWuoB03o .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4IWuoB03o .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4IWuoB03o .mbr-section-title {
  color: #232323;
  text-align: justify;
}
.cid-v4IWuoB03o .mbr-section-subtitle {
  text-align: justify;
}
.cid-v5nfD5oMOG {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v5nfD5oMOG .mbr-section-subtitle {
  text-align: justify;
}
.cid-v5nfD5oMOG .mbr-text {
  text-align: justify;
}
.cid-v4IZ9q6Ld0 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v4IZ9q6Ld0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4IZ9q6Ld0 .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-v4IZ9q6Ld0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v4IZ9q6Ld0 .row {
  flex-direction: row-reverse;
}
.cid-v4IZ9q6Ld0 img {
  width: 100%;
}
.cid-v5nfyDZfah {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v5nfyDZfah .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5nfyDZfah .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-v5nfyDZfah .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v5nfyDZfah .row {
  flex-direction: row-reverse;
}
.cid-v5nfyDZfah img {
  width: 100%;
}
.cid-v4IXgLxsnx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v4IXgLxsnx img,
.cid-v4IXgLxsnx .item-img {
  width: 100%;
}
.cid-v4IXgLxsnx .item:focus,
.cid-v4IXgLxsnx span:focus {
  outline: none;
}
.cid-v4IXgLxsnx .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v4IXgLxsnx .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4IXgLxsnx .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4IXgLxsnx .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4IXgLxsnx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4IXgLxsnx .mbr-section-title {
  color: #232323;
  text-align: justify;
}
.cid-v4IXgLxsnx .mbr-section-subtitle {
  text-align: justify;
}
.cid-v4IITFeEfc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v4IITFeEfc img,
.cid-v4IITFeEfc .item-img {
  width: 100%;
}
.cid-v4IITFeEfc .item:focus,
.cid-v4IITFeEfc span:focus {
  outline: none;
}
.cid-v4IITFeEfc .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v4IITFeEfc .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4IITFeEfc .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4IITFeEfc .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4IITFeEfc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4IITFeEfc .mbr-section-title {
  color: #232323;
  text-align: justify;
}
.cid-v4IITFeEfc .mbr-section-subtitle {
  text-align: justify;
}
.cid-v4IHHIgcMi {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v4IHHIgcMi img,
.cid-v4IHHIgcMi .item-img {
  width: 100%;
}
.cid-v4IHHIgcMi .item:focus,
.cid-v4IHHIgcMi span:focus {
  outline: none;
}
.cid-v4IHHIgcMi .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v4IHHIgcMi .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4IHHIgcMi .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4IHHIgcMi .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4IHHIgcMi .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4IHHIgcMi .mbr-section-title {
  color: #232323;
  text-align: justify;
}
.cid-v4IHHIgcMi .mbr-section-subtitle {
  text-align: justify;
}
.cid-v4eJbh0iJD {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/02-b-pieklo-tlo-1366x768.png");
}
.cid-v4eJbh0iJD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4eJbh0iJD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4eJbhzLg5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
