body {
  font-family: IBM Plex Sans;
}
.display-1 {
  font-family: 'Oswald', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Kanit', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((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: #bbbbbb !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #353535 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary: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-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.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-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #cc632f !important;
  border-color: #cc632f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #86411f !important;
  border-color: #86411f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #86411f !important;
  border-color: #86411f !important;
}
.btn-info,
.btn-info:active {
  background-color: #353535 !important;
  border-color: #353535 !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: #0a0a0a !important;
  border-color: #0a0a0a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !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: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !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: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !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: #bbbbbb;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #909090 !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: #bbbbbb !important;
  border-color: #bbbbbb !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #cc632f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #86411f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #cc632f !important;
  border-color: #cc632f !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #353535;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #0a0a0a !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: #353535 !important;
  border-color: #353535 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !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: #40b0bf !important;
  border-color: #40b0bf !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: #ffffff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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: #bbbbbb !important;
}
.text-secondary {
  color: #cc632f !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #353535 !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #888888 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #793b1c !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #020202 !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: #cccccc !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: #bbbbbb;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #353535;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-gallery-filter li.active .btn {
  background-color: #bbbbbb;
  border-color: #bbbbbb;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #bbbbbb;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fbfbfb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #a8a8a8;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.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: #bbbbbb !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #bbbbbb;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #bbbbbb;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #bbbbbb;
}
.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: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.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: #bbbbbb !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #cc632f !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='%23bbbbbb' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-teRVayfyMt .modal-body .close {
  background: #1b1b1b;
}
.cid-teRVayfyMt .modal-body .close span {
  font-style: normal;
}
.cid-teRVayfyMt .carousel-inner > .active,
.cid-teRVayfyMt .carousel-inner > .next,
.cid-teRVayfyMt .carousel-inner > .prev {
  display: flex;
}
.cid-teRVayfyMt .carousel-control .icon-next,
.cid-teRVayfyMt .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 22px;
  line-height: 27px;
}
.cid-teRVayfyMt .carousel-control:hover {
  background-color: transparent;
  color: #fff;
  opacity: .5;
}
@media (max-width: 767px) {
  .cid-teRVayfyMt .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-teRVayfyMt .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-teRVayfyMt .boxed-slider > div {
  position: relative;
}
.cid-teRVayfyMt .container img {
  width: 100%;
  height: 530px;
  object-fit: cover;
}
.cid-teRVayfyMt .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
}
.cid-teRVayfyMt .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-teRVayfyMt .mbr-table-cell {
  padding: 0;
}
.cid-teRVayfyMt .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-teRVayfyMt .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-teRVayfyMt .mbr-overlay {
  z-index: 1;
}
.cid-teRVayfyMt .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
  height: 530px;
}
.cid-teRVayfyMt .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-teRVayfyMt .carousel-item.active.right,
.cid-teRVayfyMt .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-teRVayfyMt .carousel-item.active.left,
.cid-teRVayfyMt .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-teRVayfyMt .carousel-item.active,
.cid-teRVayfyMt .carousel-item.next.left,
.cid-teRVayfyMt .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-teRVayfyMt .mbr-slider .carousel-control {
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 22px;
  transition: all .25s ease;
  opacity: 1;
  z-index: 11;
}
.cid-teRVayfyMt .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-teRVayfyMt .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-teRVayfyMt .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 22px;
}
@media (max-width: 767px) {
  .cid-teRVayfyMt .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
    display: none;
  }
}
.cid-teRVayfyMt .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem;
}
@media (max-width: 991px) {
  .cid-teRVayfyMt .mbr-slider .carousel-indicators {
    margin-bottom: .5rem;
  }
}
.cid-teRVayfyMt .mbr-slider .carousel-indicators li {
  max-width: 10px;
  width: 110px;
  height: 10px;
  max-height: 10px;
  margin: 0 5px;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .3;
  transition: all .25s ease;
  box-sizing: border-box;
}
.cid-teRVayfyMt .mbr-slider .carousel-indicators li.active,
.cid-teRVayfyMt .mbr-slider .carousel-indicators li:hover {
  opacity: 1;
  background-color: #fff;
}
.cid-teRVayfyMt .mbr-slider .carousel-indicators li::after,
.cid-teRVayfyMt .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-teRVayfyMt .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-teRVayfyMt .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-teRVayfyMt .mbr-slider > .container img {
  width: 100%;
}
.cid-teRVayfyMt .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  transform: translateY(-50%);
}
.cid-teRVayfyMt .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-teRVayfyMt .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-teRVayfyMt .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-teRVayfyMt .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-teRVayfyMt .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-teRVayfyMt .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-teRVayfyMt .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-teRVayfyMt .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-teRVayfyMt .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-teRVayfyMt .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-teRVayfyMt .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-teRVayfyMt .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-teRVayfyMt h2 {
  margin-bottom: 0;
  font-weight: 700;
}
.cid-teRVayfyMt .mbr-text {
  margin-bottom: 0;
  margin-top: 30px;
  font-weight: 500;
}
.cid-teRVayfyMt .mbr-section-btn {
  margin-top: 100px;
}
@media (max-width: 991px) {
  .cid-teRVayfyMt .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-teRVayfyMt .mbr-section-btn .btn {
  height: 60px;
  padding: 0 40px;
  font-weight: 700;
}
.cid-teRVayfyMt .mbr-iconfont {
  transition: all 0.25s ease;
}
.cid-teRVayfyMt .carousel-control-next .mbr-iconfont::before {
  content: "\e909";
}
.cid-teRVayfyMt .carousel-control-next .mbr-iconfont:hover {
  opacity: .5;
}
.cid-teRVayfyMt .carousel-control-prev .mbr-iconfont::before {
  content: "\e90a";
}
.cid-teRVayfyMt .carousel-control-prev .mbr-iconfont:hover {
  opacity: .5;
}
.cid-tcMvkENodL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tcMvkENodL h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
  margin-bottom: 15rem;
}
.cid-tcMvkENodL h1 span {
  background-image: url("../../../assets/images/africa-5135407-1920-1920x1182.jpg");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-tcMvkENodL .icons-wrap {
  background: #ffffff;
  display: flex;
  justify-content: center;
  box-shadow: 1px 35px 60px 1px rgba(0, 0, 0, 0.1);
}
.cid-tcMvkENodL .mbr-iconfont {
  font-size: 1.8rem;
  color: #bbbbbb !important;
  padding-top: 0.4rem;
  padding-right: 1rem;
}
.cid-tcMvkENodL .icon-wrap {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
}
.cid-tcMvkENodL h2 {
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tcMvkENodL .icons-wrap {
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin: auto;
  }
  .cid-tcMvkENodL h1 {
    margin-bottom: 8rem;
  }
}
.cid-tcMvkENodL .mbr-section-title {
  color: #fafafa;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcBiKDybWM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tcBiKDybWM img,
.cid-tcBiKDybWM .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tcBiKDybWM .item:focus,
.cid-tcBiKDybWM span:focus {
  outline: none;
}
.cid-tcBiKDybWM .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tcBiKDybWM .item-wrapper {
  position: relative;
  border-radius: 10px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tcBiKDybWM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tcBiKDybWM .mbr-section-title {
  color: #232323;
  padding-bottom: 50px;
}
.cid-tcBiKDybWM .item-title {
  margin: 20px;
  color: #ffffff;
  text-align: center;
}
.cid-tcBiKDybWM .item-title P {
  text-align: center;
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s6rWP0o8SD {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20181213-181250-2000x1500.jpg");
}
.cid-s6rWP0o8SD .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-s6rWP0o8SD .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-s6rWP0o8SD .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-s6rWP0o8SD .card-wrapper {
    padding: 4rem;
  }
}
.cid-s6rWP0o8SD .mbr-text,
.cid-s6rWP0o8SD .mbr-section-btn {
  color: #333333;
}
.cid-s6rWP0o8SD .card-title,
.cid-s6rWP0o8SD .card-box {
  text-align: center;
  color: #232323;
}
.cid-s6rWP0o8SD .mbr-text,
.cid-s6rWP0o8SD .link-wrap {
  text-align: left;
}
.cid-s6s0q6dHJn {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6s0q6dHJn ul {
  list-style: none;
  margin: 0;
  padding-left: 1.6rem;
}
.cid-s6s0q6dHJn li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-s6s0q6dHJn ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #bbbbbb;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-s6s0q6dHJn H3 {
  color: #353535;
}
.cid-s6s0q6dHJn .list {
  text-align: left;
}
.cid-s6s2oiGRjH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6s2oiGRjH .mbr-section-subtitle {
  color: #353535;
}
.cid-s6s6ad8krX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/dsc00400-2000x1333.jpg");
}
.cid-s6s6ad8krX .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-s6s6ad8krX .plan-body {
  padding-bottom: 2rem;
}
.cid-s6s6ad8krX .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s6s6ad8krX .price {
  color: #bbbbbb;
}
.cid-s6s6ad8krX .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-s6s6ad8krX .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-s6s6ad8krX .plan .list-group-item::after {
  position: absolute;
  bottom: 1px;
  left: 25%;
  width: 50%;
  height: 1px;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.cid-s6s6ad8krX .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-s6s6ad8krX .plan {
    margin-bottom: 2rem;
  }
}
.cid-s6s6ad8krX UL {
  text-align: center;
}
.cid-s6s6ad8krX .plan-title {
  color: #353535;
}
.cid-s6s9VTn3Tu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6s9VTn3Tu .mbr-section-subtitle {
  color: #353535;
}
.cid-s6sauYnlNc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6sauYnlNc .mbr-section-subtitle {
  color: #353535;
}
.cid-s6scA1gIJI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6scA1gIJI .mbr-section-subtitle {
  color: #353535;
}
.cid-s6scAZzEgV {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-s6scAZzEgV .mbr-section-subtitle {
  color: #353535;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s6sgwTDYkE {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/dsc00391-2-2000x1333.jpeg");
}
.cid-s6sgwTDYkE .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-s6sgwTDYkE .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-s6sgwTDYkE .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-s6sgwTDYkE .card-wrapper {
    padding: 4rem;
  }
}
.cid-s6sgwTDYkE .mbr-text,
.cid-s6sgwTDYkE .mbr-section-btn {
  color: #333333;
}
.cid-s6sgwTDYkE .card-title,
.cid-s6sgwTDYkE .card-box {
  text-align: center;
  color: #000000;
}
.cid-s6sliB5TFH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6sliB5TFH .mbr-section-subtitle {
  color: #353535;
}
.cid-s6smC42JIl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s6smC42JIl .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6smC42JIl .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6smC42JIl .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6sngbuqXs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6sngbuqXs .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6sngbuqXs .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6sngbuqXs .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6snL7oDEd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s6snL7oDEd .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6snL7oDEd .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6snL7oDEd .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6snPDFPId {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6snPDFPId .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6snPDFPId .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6snPDFPId .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6snMDOmRx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s6snMDOmRx .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6snMDOmRx .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6snMDOmRx .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6snO4sOKL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6snO4sOKL .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6snO4sOKL .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6snO4sOKL .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6soTGtIu1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s6soTGtIu1 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6soTGtIu1 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6soTGtIu1 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6soXhoDpz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6soXhoDpz .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6soXhoDpz .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6soXhoDpz .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6soZusFbj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s6soZusFbj .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6soZusFbj .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6soZusFbj .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6spZwXQso {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6sqBoSupE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s6sqBoSupE .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6sqBoSupE .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6sqBoSupE .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6sqD0Pu3j {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6sqD0Pu3j .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6sqD0Pu3j .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6sqD0Pu3j .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6sqCgR4DH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s6sqCgR4DH .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6sqCgR4DH .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6sqCgR4DH .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6sqAkRMJq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6sqAkRMJq .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6sqAkRMJq .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6sqAkRMJq .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6sqzmHDD8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s6sqzmHDD8 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6sqzmHDD8 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6sqzmHDD8 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6sqsCdFt5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6sqsCdFt5 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6sqsCdFt5 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6sqsCdFt5 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6srGK6rHA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s6v2bimbcJ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/dsc-711-2000x1330.jpg");
}
.cid-s6v2bimbcJ .mbr-text,
.cid-s6v2bimbcJ .mbr-section-btn {
  color: #ffffff;
}
.cid-s6v2bimbcJ .mbr-section-title {
  color: #ffffff;
}
.cid-s6v4YTlWxl {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s6vawdOcN2 {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/dsc-200-2000x1330.jpg");
}
.cid-s6vawdOcN2 .mbr-text,
.cid-s6vawdOcN2 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-s6vawdOcN2 .mbr-section-title {
  color: #ffffff;
}
.cid-s6vjSwtylQ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6vjSwtylQ .mbr-section-subtitle {
  color: #000000;
}
.cid-s6vl3FDutt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6vm5zWGk3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6vo6tcyP0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s6vo6tcyP0 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6vo6tcyP0 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6vo6tcyP0 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6vxCvYbAc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6vxCvYbAc .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6vxCvYbAc .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6vxCvYbAc .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6vxJM66IP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s6vxJM66IP .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6vxJM66IP .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6vxJM66IP .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6vxKWDSI8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6vxKWDSI8 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6vxKWDSI8 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6vxKWDSI8 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6vxLXNU3d {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s6vxLXNU3d .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6vxLXNU3d .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6vxLXNU3d .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6vz37eOLo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6vz37eOLo .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6vz37eOLo .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6vz37eOLo .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6vz57sYk7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s6vz57sYk7 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6vz57sYk7 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6vz57sYk7 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6vnEIgrC3 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-s6B80KQXyW {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/lake-tanganyika2-1536x528.jpg");
}
.cid-s6B80KQXyW .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-s6B80KQXyW form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-s6B80KQXyW form .mbr-section-btn .btn {
  display: inline-flex;
}
.cid-s6B80KQXyW .mbr-section-title {
  color: #000000;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s6Bp1t6cSl {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/img-20160604-164829-2000x1125.jpg");
}
.cid-s6Bp1t6cSl .mbr-text,
.cid-s6Bp1t6cSl .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-s6Bp1t6cSl .mbr-section-title {
  color: #ffffff;
}
.cid-s6Bp1xU0FB {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6Bp1xU0FB .mbr-section-subtitle {
  color: #000000;
}
.cid-s6Bp1AcHsM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6Bp1BWefJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6Bp1DB2rt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s6Bp1DB2rt .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6Bp1DB2rt .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6Bp1DB2rt .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6Bp1GHrDl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6Bp1GHrDl .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6Bp1GHrDl .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6Bp1GHrDl .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6Bp1JhDur {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s6Bp1JhDur .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6Bp1JhDur .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6Bp1JhDur .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6Bp1LJwvq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6Bp1LJwvq .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6Bp1LJwvq .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6Bp1LJwvq .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6Bp1ORsIB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s6Bp1ORsIB .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6Bp1ORsIB .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6Bp1ORsIB .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6Bp1RHOta {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6Bp1RHOta .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6Bp1RHOta .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6Bp1RHOta .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6Bp1U3wn6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s6Bp1U3wn6 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6Bp1U3wn6 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6Bp1U3wn6 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6Bp1WtIfy {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-s6Bp1Yr58U {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/img-20160604-164155-2000x2000.jpg");
}
.cid-s6Bp1Yr58U .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-s6Bp1Yr58U form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-s6Bp1Yr58U form .mbr-section-btn .btn {
  display: inline-flex;
}
.cid-s6Bp1Yr58U .mbr-section-title {
  color: #000000;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s6BAOgbtnz {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/mnemba-island-1920x1080.jpg");
}
.cid-s6BAOgbtnz .mbr-text,
.cid-s6BAOgbtnz .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-s6BAOgbtnz .mbr-section-title {
  color: #ffffff;
}
.cid-s6BAOiJbpN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6BAOiJbpN .mbr-section-subtitle {
  color: #000000;
}
.cid-s6BAOk5B0M {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6BAOljhpK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6BAOmuczV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s6BAOmuczV .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6BAOmuczV .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6BAOmuczV .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6BAOpE7wf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6BAOpE7wf .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6BAOpE7wf .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6BAOpE7wf .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6BAOs07tD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s6BAOs07tD .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6BAOs07tD .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6BAOs07tD .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6BAOujkL1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6BAOujkL1 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6BAOujkL1 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6BAOujkL1 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6BAOwzRJH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s6BAOwzRJH .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6BAOwzRJH .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6BAOwzRJH .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6BAOyVIan {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6BAOyVIan .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6BAOyVIan .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6BAOyVIan .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6BAOBHve8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s6BAOBHve8 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6BAOBHve8 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6BAOBHve8 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6BAODQVYD {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-s6BAOF449p {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mnemba-island-1920x1080.jpg");
}
.cid-s6BAOF449p .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-s6BAOF449p form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-s6BAOF449p form .mbr-section-btn .btn {
  display: inline-flex;
}
.cid-s6BAOF449p .mbr-section-title {
  color: #000000;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s6BT0RJC2m {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/africa-5135407-1920-1920x1182.jpg");
}
.cid-s6BT0RJC2m .mbr-text,
.cid-s6BT0RJC2m .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-s6BT0RJC2m .mbr-section-title {
  color: #ffffff;
}
.cid-s6BT0Wbc6E {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6BT0Wbc6E .mbr-section-subtitle {
  color: #000000;
}
.cid-s6BT0Y9Yk3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6BT106ICV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6BT12envh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s6BT12envh .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6BT12envh .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6BT12envh .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6BT16C3z5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6BT16C3z5 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6BT16C3z5 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6BT16C3z5 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6BT1aV9aP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s6BT1aV9aP .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6BT1aV9aP .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6BT1aV9aP .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6BT1fDTsU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6BT1fDTsU .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6BT1fDTsU .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6BT1fDTsU .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6BT1jOhlp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s6BT1jOhlp .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6BT1jOhlp .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6BT1jOhlp .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6BT1nz1zn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6BT1nz1zn .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6BT1nz1zn .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6BT1nz1zn .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6BT1rLDb2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s6BT1rLDb2 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6BT1rLDb2 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6BT1rLDb2 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6BT1vDTD8 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-s6BT1xXbar {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/africa-5135407-1920-1920x1182.jpg");
}
.cid-s6BT1xXbar .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-s6BT1xXbar form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-s6BT1xXbar form .mbr-section-btn .btn {
  display: inline-flex;
}
.cid-s6BT1xXbar .mbr-section-title {
  color: #000000;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s6Y2ejWUln {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/mantaresort-705x529.jpg");
}
.cid-s6Y2ejWUln .mbr-text,
.cid-s6Y2ejWUln .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-s6Y2ejWUln .mbr-section-title {
  color: #ffffff;
}
.cid-s6Y2enpzuT {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6Y2enpzuT .mbr-section-subtitle {
  color: #000000;
}
.cid-s6Y2eq9M2q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6Y2erJzWm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6Y2etNT6A {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s6Y2etNT6A .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6Y2etNT6A .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6Y2etNT6A .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6Y2ewKcnx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6Y2ewKcnx .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6Y2ewKcnx .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6Y2ewKcnx .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6Y2ezTg6o {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s6Y2ezTg6o .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6Y2ezTg6o .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6Y2ezTg6o .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6Y2eCe7Li {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6Y2eCe7Li .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6Y2eCe7Li .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6Y2eCe7Li .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6Y2eEWuJx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s6Y2eEWuJx .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6Y2eEWuJx .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6Y2eEWuJx .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6Y2eHVL61 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s6Y2eHVL61 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6Y2eHVL61 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6Y2eHVL61 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6Y2eKM35t {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s6Y2eKM35t .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s6Y2eKM35t .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s6Y2eKM35t .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s6Y2eN4p9V {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-s6Y2eP4t8k {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mantaresort-705x529.jpg");
}
.cid-s6Y2eP4t8k .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-s6Y2eP4t8k form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-s6Y2eP4t8k form .mbr-section-btn .btn {
  display: inline-flex;
}
.cid-s6Y2eP4t8k .mbr-section-title {
  color: #000000;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s76wrfKRQH {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/dsc-472-2000x1330.jpg");
}
.cid-s76wrfKRQH .mbr-text,
.cid-s76wrfKRQH .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-s76wrfKRQH .mbr-section-title {
  color: #ffffff;
}
.cid-s76wrhimgX {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-s76wrhimgX .mbr-section-subtitle {
  color: #000000;
}
.cid-s76wrAKqe9 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/dsc-472-2000x1330.jpg");
}
.cid-s76wrAKqe9 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-s76wrAKqe9 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-s76wrAKqe9 form .mbr-section-btn .btn {
  display: inline-flex;
}
.cid-s76wrAKqe9 .mbr-section-title {
  color: #000000;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s76zsgyS5x {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/dsc00419-2000x1333.jpeg");
}
.cid-s76zsgyS5x .mbr-text,
.cid-s76zsgyS5x .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-s76zsgyS5x .mbr-section-title {
  color: #ffffff;
}
.cid-s76zsjk2In {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s76zsjk2In .mbr-section-subtitle {
  color: #000000;
}
.cid-s76zskO6p6 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/dsc-472-2000x1330.jpg");
}
.cid-s76zskO6p6 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-s76zskO6p6 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-s76zskO6p6 form .mbr-section-btn .btn {
  display: inline-flex;
}
.cid-s76zskO6p6 .mbr-section-title {
  color: #000000;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s76CgkoBMg {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/dsc00858-2000x1500.jpg");
}
.cid-s76CgkoBMg .mbr-text,
.cid-s76CgkoBMg .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-s76CgkoBMg .mbr-section-title {
  color: #ffffff;
}
.cid-s76CgmoAuB {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s76CgmoAuB .mbr-section-subtitle {
  color: #000000;
}
.cid-s76Cgnt2jQ {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/dsc00858-2000x1500.jpg");
}
.cid-s76Cgnt2jQ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-s76Cgnt2jQ form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-s76Cgnt2jQ form .mbr-section-btn .btn {
  display: inline-flex;
}
.cid-s76Cgnt2jQ .mbr-section-title {
  color: #000000;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s76K5v9VDl {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/img20180703090742-2000x1125.jpg");
}
.cid-s76K5v9VDl .mbr-text,
.cid-s76K5v9VDl .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-s76K5v9VDl .mbr-section-title {
  color: #ffffff;
}
.cid-s76K5wXxFc {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s76K5wXxFc .mbr-section-subtitle {
  color: #000000;
}
.cid-s76K5y3DQ5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s76K5AkPYo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s76K5AkPYo .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s76K5AkPYo .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s76K5AkPYo .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s76K5CoHMn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s76K5CoHMn .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s76K5CoHMn .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s76K5CoHMn .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s76K5ECsMf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s76K5ECsMf .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s76K5ECsMf .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s76K5ECsMf .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s76K5GvDJG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s76K5GvDJG .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s76K5GvDJG .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s76K5GvDJG .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s76K5ImpZA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s76K5ImpZA .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s76K5ImpZA .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s76K5ImpZA .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s76K5PsTE3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s76K5PsTE3 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s76K5PsTE3 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s76K5PsTE3 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s76NMFRJFJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s76NMFRJFJ .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s76NMFRJFJ .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s76NMFRJFJ .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s76K5RA1yd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s76K5RA1yd .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s76K5RA1yd .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s76K5RA1yd .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s76K5RA1yd .card-title {
  color: #000000;
}
.cid-s76K5TvznI {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-s76K5UBLVe {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/img20180703090742-2000x1125.jpg");
}
.cid-s76K5UBLVe .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-s76K5UBLVe form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-s76K5UBLVe form .mbr-section-btn .btn {
  display: inline-flex;
}
.cid-s76K5UBLVe .mbr-section-title {
  color: #000000;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s76PRoTj7O {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/img20180527111656-2000x1125.jpg");
}
.cid-s76PRoTj7O .mbr-text,
.cid-s76PRoTj7O .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-s76PRoTj7O .mbr-section-title {
  color: #ffffff;
}
.cid-s76PRscdkN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s76PRscdkN .mbr-section-subtitle {
  color: #000000;
}
.cid-s76PRtYCMk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s76PRvXBRE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s76PRvXBRE .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s76PRvXBRE .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s76PRvXBRE .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s76PRzdRSH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s76PRzdRSH .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s76PRzdRSH .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s76PRzdRSH .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s76PRCjj79 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s76PRCjj79 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s76PRCjj79 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s76PRCjj79 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s76PRFpA2I {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s76PRFpA2I .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s76PRFpA2I .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s76PRFpA2I .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s76PRImbJN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s76PRImbJN .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s76PRImbJN .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s76PRImbJN .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s76PRLsiHS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s76PRLsiHS .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s76PRLsiHS .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s76PRLsiHS .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s76PRO9VJc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s76PRO9VJc .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s76PRO9VJc .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s76PRO9VJc .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s76PRQXofb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s76PRQXofb .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s76PRQXofb .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s76PRQXofb .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s76PRQXofb .card-title {
  color: #000000;
}
.cid-s76PRTz3qi {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-s76PRV7IQ5 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/img20180527111656-2000x1125.jpg");
}
.cid-s76PRV7IQ5 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-s76PRV7IQ5 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-s76PRV7IQ5 form .mbr-section-btn .btn {
  display: inline-flex;
}
.cid-s76PRV7IQ5 .mbr-section-title {
  color: #000000;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s76RgvEmVC {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/img20181225075526-2000x1500.jpg");
}
.cid-s76RgvEmVC .mbr-text,
.cid-s76RgvEmVC .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-s76RgvEmVC .mbr-section-title {
  color: #ffffff;
}
.cid-s76RgyqCoN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s76RgyqCoN .mbr-section-subtitle {
  color: #000000;
}
.cid-s76RgzVEs7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s76RgBpQ3D {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s76RgBpQ3D .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s76RgBpQ3D .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s76RgBpQ3D .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s76RgDUs3Y {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s76RgDUs3Y .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s76RgDUs3Y .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s76RgDUs3Y .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s76RgGBKmC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s76RgGBKmC .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s76RgGBKmC .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s76RgGBKmC .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s76RgIS4V9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s76RgIS4V9 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s76RgIS4V9 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s76RgIS4V9 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s76RgLjUVQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s76RgLjUVQ .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s76RgLjUVQ .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s76RgLjUVQ .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s76RgNBRp7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s76RgNBRp7 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s76RgNBRp7 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s76RgNBRp7 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s76RgQ92cQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s76RgQ92cQ .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s76RgQ92cQ .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s76RgQ92cQ .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s76RgSoi65 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s76RgSoi65 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s76RgSoi65 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s76RgSoi65 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s76RgSoi65 .card-title {
  color: #000000;
}
.cid-s76RgUy6vX {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-s76RgVS7Fh {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/img20181225075526-2000x1500.jpg");
}
.cid-s76RgVS7Fh .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-s76RgVS7Fh form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-s76RgVS7Fh form .mbr-section-btn .btn {
  display: inline-flex;
}
.cid-s76RgVS7Fh .mbr-section-title {
  color: #000000;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s7fvqDF4yz {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/img20180531094724-2000x1125.jpeg");
}
.cid-s7fvqDF4yz .mbr-text,
.cid-s7fvqDF4yz .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-s7fvqDF4yz .mbr-section-title {
  color: #ffffff;
}
.cid-s7fvqFy9jv {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7fvqFy9jv .mbr-section-subtitle {
  color: #000000;
}
.cid-s7fvqGVQpW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7fvqIwXs8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7fvqIwXs8 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7fvqIwXs8 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7fvqIwXs8 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7fvqLcCmn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7fvqLcCmn .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7fvqLcCmn .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7fvqLcCmn .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7fvqNHQrH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7fvqNHQrH .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7fvqNHQrH .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7fvqNHQrH .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7fvqQhG2d {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7fvqQhG2d .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7fvqQhG2d .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7fvqQhG2d .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7fvqSyxhm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7fvqSyxhm .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7fvqSyxhm .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7fvqSyxhm .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7fvqUQAfG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7fvqUQAfG .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7fvqUQAfG .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7fvqUQAfG .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7fvqWRWXC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7fvqWRWXC .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7fvqWRWXC .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7fvqWRWXC .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7fvqYZtlJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7fvqYZtlJ .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7fvqYZtlJ .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7fvqYZtlJ .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7fvqYZtlJ .card-title {
  color: #000000;
}
.cid-s7fvr15wvI {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-s7fvr2jnR2 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/img20180531094724-2000x1125.jpg");
}
.cid-s7fvr2jnR2 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-s7fvr2jnR2 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-s7fvr2jnR2 form .mbr-section-btn .btn {
  display: inline-flex;
}
.cid-s7fvr2jnR2 .mbr-section-title {
  color: #000000;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s7fFOPoDJD {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/20181213-180718-2000x1500.jpeg");
}
.cid-s7fFOPoDJD .mbr-text,
.cid-s7fFOPoDJD .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-s7fFOPoDJD .mbr-section-title {
  color: #ffffff;
}
.cid-s7fFOSg09M {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7fFOSg09M .mbr-section-subtitle {
  color: #000000;
}
.cid-s7fFOU6ph3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7fFOVzMh9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7fFOX9l1J {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7fFOX9l1J .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7fFOX9l1J .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7fFOX9l1J .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7fFP0fjcj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7fFP0fjcj .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7fFP0fjcj .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7fFP0fjcj .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7fFP3lZ7l {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7fFP3lZ7l .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7fFP3lZ7l .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7fFP3lZ7l .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7fFP6hWcp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7fFP6hWcp .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7fFP6hWcp .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7fFP6hWcp .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7fFPa3ltz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7fFPa3ltz .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7fFPa3ltz .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7fFPa3ltz .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7fFPdtKyf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7fFPdtKyf .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7fFPdtKyf .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7fFPdtKyf .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7fFPh7O1Q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7fFPh7O1Q .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7fFPh7O1Q .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7fFPh7O1Q .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7fFPkMu5r {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-s7fFPnC6xf {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/20181214-141006-2000x1255.jpg");
}
.cid-s7fFPnC6xf .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-s7fFPnC6xf form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-s7fFPnC6xf form .mbr-section-btn .btn {
  display: inline-flex;
}
.cid-s7fFPnC6xf .mbr-section-title {
  color: #000000;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s7fOkZg8h7 {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/dsc-2413-2000x1395.jpg");
}
.cid-s7fOkZg8h7 .mbr-text,
.cid-s7fOkZg8h7 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-s7fOkZg8h7 .mbr-section-title {
  color: #ffffff;
}
.cid-s7fOl2MS5c {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7fOl2MS5c .mbr-section-subtitle {
  color: #000000;
}
.cid-s7fOl4PkcK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7fOl6GbjO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7fOl8y5Yc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7fOl8y5Yc .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7fOl8y5Yc .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7fOl8y5Yc .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7fOlc0u6n {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7fOlc0u6n .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7fOlc0u6n .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7fOlc0u6n .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7fOlfF8zK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7fOlfF8zK .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7fOlfF8zK .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7fOlfF8zK .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7fOlj28UM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7fOlj28UM .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7fOlj28UM .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7fOlj28UM .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7fOlmMnmA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7fOlmMnmA .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7fOlmMnmA .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7fOlmMnmA .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7fOlqkWFR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7fOlqkWFR .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7fOlqkWFR .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7fOlqkWFR .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7fOltuHzi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7fOltuHzi .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7fOltuHzi .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7fOltuHzi .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7fOlwIIab {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-s7fOlyTZPz {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/dsc-2413-2000x1395.jpg");
}
.cid-s7fOlyTZPz .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-s7fOlyTZPz form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-s7fOlyTZPz form .mbr-section-btn .btn {
  display: inline-flex;
}
.cid-s7fOlyTZPz .mbr-section-title {
  color: #000000;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s7g9xGx6pB {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/20181215-72711-2000x1500.jpg");
}
.cid-s7g9xGx6pB .mbr-text,
.cid-s7g9xGx6pB .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-s7g9xGx6pB .mbr-section-title {
  color: #ffffff;
}
.cid-s7g9xJnwGM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7g9xJnwGM .mbr-section-subtitle {
  color: #000000;
}
.cid-s7g9xLbPk1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7g9xMRGrQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7g9xOl5Ls {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7g9xOl5Ls .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7g9xOl5Ls .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7g9xOl5Ls .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7g9xS9rIP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7g9xS9rIP .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7g9xS9rIP .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7g9xS9rIP .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7g9xVVUPy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7g9xVVUPy .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7g9xVVUPy .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7g9xVVUPy .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7g9xYuDLR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7g9xYuDLR .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7g9xYuDLR .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7g9xYuDLR .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7g9y1cwzy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7g9y1cwzy .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7g9y1cwzy .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7g9y1cwzy .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7g9y4055h {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7g9y4055h .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7g9y4055h .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7g9y4055h .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7geKVnKnD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7geKVnKnD .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7geKVnKnD .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7geKVnKnD .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7geKVnKnD .card-title {
  color: #000000;
}
.cid-s7geMQ7wkf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7geMQ7wkf .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7geMQ7wkf .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7geMQ7wkf .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7geMQ7wkf .card-title {
  color: #000000;
}
.cid-s7g9y6aj1T {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7g9y6aj1T .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7g9y6aj1T .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7g9y6aj1T .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7g9y8ixii {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-s7g9y9xYKN {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/20181215-72711-2000x1500.jpg");
}
.cid-s7g9y9xYKN .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-s7g9y9xYKN form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-s7g9y9xYKN form .mbr-section-btn .btn {
  display: inline-flex;
}
.cid-s7g9y9xYKN .mbr-section-title {
  color: #000000;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s7ghTePfRD {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/dsc-595-2000x1330.jpg");
}
.cid-s7ghTePfRD .mbr-text,
.cid-s7ghTePfRD .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-s7ghTePfRD .mbr-section-title {
  color: #ffffff;
}
.cid-s7ghTik0Ba {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7ghTik0Ba .mbr-section-subtitle {
  color: #000000;
}
.cid-s7ghTkibjB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7ghTmTWmr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7ghTpbcFO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7ghTpbcFO .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7ghTpbcFO .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7ghTpbcFO .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7ghTsmxYJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7ghTsmxYJ .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7ghTsmxYJ .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7ghTsmxYJ .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7ghTvPPY8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7ghTvPPY8 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7ghTvPPY8 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7ghTvPPY8 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7ghTzGlgs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7ghTzGlgs .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7ghTzGlgs .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7ghTzGlgs .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7ghTDBf2M {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7ghTDBf2M .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7ghTDBf2M .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7ghTDBf2M .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7ghTOfmYo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7ghTOfmYo .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7ghTOfmYo .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7ghTOfmYo .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7ghTOfmYo .card-title {
  color: #000000;
}
.cid-s7ghTSpvnX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7ghTSpvnX .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7ghTSpvnX .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7ghTSpvnX .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7ghTVSNhJ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-s7ghTXTw3T {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/dsc-2413-2000x1395.jpg");
}
.cid-s7ghTXTw3T .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-s7ghTXTw3T form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-s7ghTXTw3T form .mbr-section-btn .btn {
  display: inline-flex;
}
.cid-s7ghTXTw3T .mbr-section-title {
  color: #000000;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s7h2kohp1y {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/img-20180528-172523-2000x1500.jpg");
}
.cid-s7h2kohp1y .mbr-text,
.cid-s7h2kohp1y .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-s7h2kohp1y .mbr-section-title {
  color: #ffffff;
}
.cid-s7h2ks5Mjb {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7h2ks5Mjb .mbr-section-subtitle {
  color: #000000;
}
.cid-s7h2ktRLgN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7h3E8fXcM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7h2kvW8gS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7h2kvW8gS .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7h2kvW8gS .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7h2kvW8gS .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7h2kzH1ys {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7h2kzH1ys .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7h2kzH1ys .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7h2kzH1ys .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7h2kDaVfP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7h2kDaVfP .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7h2kDaVfP .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7h2kDaVfP .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7h2kGWB8a {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7h2kGWB8a .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7h2kGWB8a .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7h2kGWB8a .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7h2kKMSRX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7h2kKMSRX .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7h2kKMSRX .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7h2kKMSRX .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7h2kOe1yg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7h2kOe1yg .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7h2kOe1yg .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7h2kOe1yg .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7h520emqH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7h520emqH .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7h520emqH .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7h520emqH .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7h53NnryG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7h53NnryG .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7h53NnryG .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7h53NnryG .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7h2kRTpY1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7h2kRTpY1 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7h2kRTpY1 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7h2kRTpY1 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7h6bOSRwD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7h6bOSRwD .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7h6bOSRwD .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7h6bOSRwD .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7h2kVjSWD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7h2kVjSWD .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7h2kVjSWD .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7h2kVjSWD .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7h2kVjSWD .card-title {
  color: #000000;
}
.cid-s7h2kYAebl {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-s7h2l0UxnA {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/img-20180528-172523-2000x1500.jpg");
}
.cid-s7h2l0UxnA .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-s7h2l0UxnA form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-s7h2l0UxnA form .mbr-section-btn .btn {
  display: inline-flex;
}
.cid-s7h2l0UxnA .mbr-section-title {
  color: #000000;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s7h0LJNACK {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/mbr-770x513.jpg");
}
.cid-s7h0LJNACK .mbr-text,
.cid-s7h0LJNACK .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-s7h0LJNACK .mbr-section-title {
  color: #ffffff;
}
.cid-s7h0LLM0jn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7h0LLM0jn .mbr-section-subtitle {
  color: #000000;
}
.cid-s7h0LN0mGU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7h0LO808x {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7h0LPlYyx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7h0LPlYyx .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7h0LPlYyx .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7h0LPlYyx .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7h0LRorwn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7h0LRorwn .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7h0LRorwn .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7h0LRorwn .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7h0LTmO8K {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7h0LTmO8K .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7h0LTmO8K .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7h0LTmO8K .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7h0LVGa4F {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7h0LVGa4F .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7h0LVGa4F .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7h0LVGa4F .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7h0LXCfHR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7h0LXCfHR .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7h0LXCfHR .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7h0LXCfHR .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7h0LZQjOb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7h0LZQjOb .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7h0LZQjOb .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7h0LZQjOb .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7h0LZQjOb .card-title {
  color: #000000;
}
.cid-s7hcg1002S {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7hcg1002S .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7hcg1002S .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7hcg1002S .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7hchdZREj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7hchdZREj .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7hchdZREj .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7hchdZREj .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7hcimsWMk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-s7hcimsWMk .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7hcimsWMk .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7hcimsWMk .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7h0M1O7g6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7h0M1O7g6 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-s7h0M1O7g6 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7h0M1O7g6 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s7h0M3HGsV {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-s7h0M4R12w {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mnemba-island-1920x1080.jpg");
}
.cid-s7h0M4R12w .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-s7h0M4R12w form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-s7h0M4R12w form .mbr-section-btn .btn {
  display: inline-flex;
}
.cid-s7h0M4R12w .mbr-section-title {
  color: #000000;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s7lF0qGpRd {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/img-20180621-150916-2000x1125.jpg");
}
.cid-s7lF0qGpRd .mbr-text,
.cid-s7lF0qGpRd .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-s7lF0qGpRd .mbr-section-title {
  color: #ffffff;
}
.cid-s7lF0ucyUW {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7lF0ucyUW .mbr-section-subtitle {
  color: #000000;
}
.cid-s7lF0w8mhe {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/img-20180621-150916-2000x1125.jpg");
}
.cid-s7lF0w8mhe .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-s7lF0w8mhe form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-s7lF0w8mhe form .mbr-section-btn .btn {
  display: inline-flex;
}
.cid-s7lF0w8mhe .mbr-section-title {
  color: #000000;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s7m7CnN9wM {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/mafia-island-1-900x600.jpeg");
}
.cid-s7m7CnN9wM .mbr-text,
.cid-s7m7CnN9wM .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-s7m7CnN9wM .mbr-section-title {
  color: #ffffff;
}
.cid-s7m7CpRv5D {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7m7Cr5hrT {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mafia-island-900x600.jpeg");
}
.cid-s7m7Cr5hrT .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-s7m7Cr5hrT form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-s7m7Cr5hrT form .mbr-section-btn .btn {
  display: inline-flex;
}
.cid-s7m7Cr5hrT .mbr-section-title {
  color: #000000;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s7mw2Lk4VU {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/img20180531082809-2000x1125.jpg");
}
.cid-s7mw2Lk4VU .mbr-text,
.cid-s7mw2Lk4VU .mbr-section-btn {
  color: #333333;
}
.cid-s7mw2Lk4VU .card-title,
.cid-s7mw2Lk4VU .card-box {
  color: #ffffff;
}
.cid-s7mw2Lk4VU .mbr-text,
.cid-s7mw2Lk4VU .link-wrap {
  color: #ffffff;
}
.cid-s7mol2VmTP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7mol2VmTP .mbr-section-subtitle {
  color: #353535;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s7mAjPU2DM {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/img20180531082809-2000x1125.jpg");
}
.cid-s7mAjPU2DM .mbr-text,
.cid-s7mAjPU2DM .mbr-section-btn {
  color: #333333;
}
.cid-s7mAjPU2DM .card-title,
.cid-s7mAjPU2DM .card-box {
  color: #ffffff;
}
.cid-s7mAjPU2DM .mbr-text,
.cid-s7mAjPU2DM .link-wrap {
  color: #ffffff;
}
.cid-s7mB3yEwDs {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7mB3yEwDs .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #bbbbbb;
  margin-left: 1rem;
}
.cid-s7mB3yEwDs .panel-group {
  border: none;
}
.cid-s7mB3yEwDs .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .cid-s7mB3yEwDs .panel-body,
  .cid-s7mB3yEwDs .card-header {
    padding: 1rem 0;
  }
}
@media (min-width: 768px) {
  .cid-s7mB3yEwDs .panel-body,
  .cid-s7mB3yEwDs .card-header {
    padding: 1rem 0;
  }
}
.cid-s7mB3yEwDs .panel-title-edit {
  color: #000000;
}
.cid-s7mB3yEwDs .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-s7mBXyMvd9 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-s7mBXyMvd9 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #bbbbbb;
  margin-left: 1rem;
}
.cid-s7mBXyMvd9 .panel-group {
  border: none;
}
.cid-s7mBXyMvd9 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .cid-s7mBXyMvd9 .panel-body,
  .cid-s7mBXyMvd9 .card-header {
    padding: 1rem 0;
  }
}
@media (min-width: 768px) {
  .cid-s7mBXyMvd9 .panel-body,
  .cid-s7mBXyMvd9 .card-header {
    padding: 1rem 0;
  }
}
.cid-s7mBXyMvd9 .panel-title-edit {
  color: #000000;
}
.cid-s7mBXyMvd9 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s7mDBWmV6n {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/20181216-122931-2000x1500.jpg");
}
.cid-s7mDBWmV6n .mbr-text,
.cid-s7mDBWmV6n .mbr-section-btn {
  color: #333333;
}
.cid-s7mDBWmV6n .card-title,
.cid-s7mDBWmV6n .card-box {
  color: #ffffff;
}
.cid-s7mDBWmV6n .mbr-text,
.cid-s7mDBWmV6n .link-wrap {
  color: #ffffff;
}
.cid-s7rzmczdEW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7rzmczdEW .item:focus,
.cid-s7rzmczdEW span:focus {
  outline: none;
}
.cid-s7rzmczdEW .item {
  cursor: pointer;
}
.cid-s7rzmczdEW .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .cid-s7rzmczdEW .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-s7rzmczdEW .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-s7rzmczdEW .item-title {
  text-align: center;
}
.cid-s7rAgvyJuB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7rAgvyJuB .item:focus,
.cid-s7rAgvyJuB span:focus {
  outline: none;
}
.cid-s7rAgvyJuB .item {
  cursor: pointer;
}
.cid-s7rAgvyJuB .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .cid-s7rAgvyJuB .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-s7rAgvyJuB .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-s7rAgvyJuB .item-title {
  text-align: center;
}
.cid-s7rNIFLCXP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7rNIFLCXP .item:focus,
.cid-s7rNIFLCXP span:focus {
  outline: none;
}
.cid-s7rNIFLCXP .item {
  cursor: pointer;
}
.cid-s7rNIFLCXP .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .cid-s7rNIFLCXP .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-s7rNIFLCXP .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-s7rNIFLCXP .item-title {
  text-align: center;
}
.cid-s7rNJM63qf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7rNJM63qf .item:focus,
.cid-s7rNJM63qf span:focus {
  outline: none;
}
.cid-s7rNJM63qf .item {
  cursor: pointer;
}
.cid-s7rNJM63qf .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .cid-s7rNJM63qf .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-s7rNJM63qf .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-s7rNJM63qf .item-title {
  text-align: center;
}
.cid-s7rNKDdw1C {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7rNKDdw1C .item:focus,
.cid-s7rNKDdw1C span:focus {
  outline: none;
}
.cid-s7rNKDdw1C .item {
  cursor: pointer;
}
.cid-s7rNKDdw1C .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .cid-s7rNKDdw1C .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-s7rNKDdw1C .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-s7rNKDdw1C .item-title {
  text-align: center;
}
.cid-s7rNOZvMjo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7rNOZvMjo .item:focus,
.cid-s7rNOZvMjo span:focus {
  outline: none;
}
.cid-s7rNOZvMjo .item {
  cursor: pointer;
}
.cid-s7rNOZvMjo .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .cid-s7rNOZvMjo .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-s7rNOZvMjo .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-s7rNOZvMjo .item-title {
  text-align: center;
}
.cid-s7s6WQe4GQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7s6WQe4GQ .item:focus,
.cid-s7s6WQe4GQ span:focus {
  outline: none;
}
.cid-s7s6WQe4GQ .item {
  cursor: pointer;
}
.cid-s7s6WQe4GQ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .cid-s7s6WQe4GQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-s7s6WQe4GQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-s7s6WQe4GQ .item-title {
  text-align: center;
}
.cid-s7s6TEb31a {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7s6TEb31a .item:focus,
.cid-s7s6TEb31a span:focus {
  outline: none;
}
.cid-s7s6TEb31a .item {
  cursor: pointer;
}
.cid-s7s6TEb31a .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .cid-s7s6TEb31a .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-s7s6TEb31a .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-s7s6TEb31a .item-title {
  text-align: center;
}
.cid-s7sbc7wAoV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7sbc7wAoV .item:focus,
.cid-s7sbc7wAoV span:focus {
  outline: none;
}
.cid-s7sbc7wAoV .item {
  cursor: pointer;
}
.cid-s7sbc7wAoV .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .cid-s7sbc7wAoV .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-s7sbc7wAoV .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-s7sbc7wAoV .item-title {
  text-align: center;
}
.cid-s7sbpLLM6x {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7sbpLLM6x .item:focus,
.cid-s7sbpLLM6x span:focus {
  outline: none;
}
.cid-s7sbpLLM6x .item {
  cursor: pointer;
}
.cid-s7sbpLLM6x .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .cid-s7sbpLLM6x .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-s7sbpLLM6x .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-s7sbpLLM6x .item-title {
  text-align: center;
}
.cid-s7sftd0SBn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7sftd0SBn .item:focus,
.cid-s7sftd0SBn span:focus {
  outline: none;
}
.cid-s7sftd0SBn .item {
  cursor: pointer;
}
.cid-s7sftd0SBn .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .cid-s7sftd0SBn .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-s7sftd0SBn .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-s7sftd0SBn .item-title {
  text-align: center;
}
.cid-s7sfupY2Mc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7sfupY2Mc .item:focus,
.cid-s7sfupY2Mc span:focus {
  outline: none;
}
.cid-s7sfupY2Mc .item {
  cursor: pointer;
}
.cid-s7sfupY2Mc .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .cid-s7sfupY2Mc .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-s7sfupY2Mc .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-s7sfupY2Mc .item-title {
  text-align: center;
}
.cid-s7sfvksI4J {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7sfvksI4J .item:focus,
.cid-s7sfvksI4J span:focus {
  outline: none;
}
.cid-s7sfvksI4J .item {
  cursor: pointer;
}
.cid-s7sfvksI4J .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .cid-s7sfvksI4J .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-s7sfvksI4J .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-s7sfvksI4J .item-title {
  text-align: center;
}
.cid-s7shN8IZZj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7shN8IZZj .item:focus,
.cid-s7shN8IZZj span:focus {
  outline: none;
}
.cid-s7shN8IZZj .item {
  cursor: pointer;
}
.cid-s7shN8IZZj .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .cid-s7shN8IZZj .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-s7shN8IZZj .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-s7shN8IZZj .item-title {
  text-align: center;
}
.cid-s7shOhQcf9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7shOhQcf9 .item:focus,
.cid-s7shOhQcf9 span:focus {
  outline: none;
}
.cid-s7shOhQcf9 .item {
  cursor: pointer;
}
.cid-s7shOhQcf9 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .cid-s7shOhQcf9 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-s7shOhQcf9 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-s7shOhQcf9 .item-title {
  text-align: center;
}
.cid-s7sip9DkvE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7sip9DkvE .item:focus,
.cid-s7sip9DkvE span:focus {
  outline: none;
}
.cid-s7sip9DkvE .item {
  cursor: pointer;
}
.cid-s7sip9DkvE .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .cid-s7sip9DkvE .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-s7sip9DkvE .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-s7sip9DkvE .item-title {
  text-align: center;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s7CKmKG3BZ {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-s7CKmKG3BZ .row {
    flex-direction: column-reverse;
  }
  .cid-s7CKmKG3BZ .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-s7CKmKG3BZ .google-map {
  height: 100%;
  position: relative;
}
.cid-s7CKmKG3BZ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-s7CKmKG3BZ .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-s7CKmKG3BZ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-s7CKmKG3BZ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-s7CKmKG3BZ .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-s7CKmKG3BZ .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
.cid-s7CKmKG3BZ .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-s7CKmKG3BZ .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-s7CKmKG3BZ .card-wrapper {
    padding: 2rem;
  }
}
.cid-s7CKmKG3BZ .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #bbbbbb;
}
.cid-s7CKmKG3BZ H3 {
  color: #353535;
}
.cid-s7CKmKG3BZ P {
  color: #000000;
}
.cid-s7CGNVxpW8 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-s7CGNVxpW8 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-s7CGNVxpW8 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-s7CGNVxpW8 form .mbr-section-btn .btn {
  display: inline-flex;
}
.cid-s7CGNVxpW8 .mbr-section-title {
  color: #353535;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s7DV9CUCe1 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7DV9CUCe1 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-s7DV9CUCe1 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-s7DV9CUCe1 .item-wrapper {
  height: 100%;
}
.cid-s7DV9CUCe1 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s7DV9CUCe1 .carousel-control,
.cid-s7DV9CUCe1 .close {
  background: #1b1b1b;
}
.cid-s7DV9CUCe1 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s7DV9CUCe1 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-s7DV9CUCe1 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s7DV9CUCe1 .carousel-control-next span {
  margin-left: 5px;
}
.cid-s7DV9CUCe1 .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-s7DV9CUCe1 .close::before {
  content: '\e91a';
}
.cid-s7DV9CUCe1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s7DV9CUCe1 .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-s7DV9CUCe1 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s7DV9CUCe1 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-s7DV9CUCe1 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-s7DV9CUCe1 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-s7DV9CUCe1 .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-s7DV9CUCe1 .carousel-indicators li.active,
.cid-s7DV9CUCe1 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-s7DV9CUCe1 .carousel-indicators li::after,
.cid-s7DV9CUCe1 .carousel-indicators li::before {
  content: none;
}
.cid-s7DV9CUCe1 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-s7DV9CUCe1 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-s7DV9CUCe1 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s7DV9CUCe1 .carousel-indicators {
    display: none;
  }
}
.cid-s7DV9CUCe1 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-s7DV9CUCe1 .carousel-inner > .active {
  display: block;
}
.cid-s7DV9CUCe1 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s7DV9CUCe1 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s7DV9CUCe1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s7DV9CUCe1 .carousel-control,
  .cid-s7DV9CUCe1 .carousel-indicators,
  .cid-s7DV9CUCe1 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s7DV9CUCe1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s7DV9CUCe1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s7DV9CUCe1 .carousel-indicators .active,
.cid-s7DV9CUCe1 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-s7DV9CUCe1 .carousel-indicators .active {
  background: #fff;
}
.cid-s7DV9CUCe1 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s7DV9CUCe1 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s7DV9CUCe1 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s7DV9CUCe1 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s7DV9CUCe1 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s7DV9CUCe1 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s7DV9CUCe1 .carousel {
  width: 100%;
}
.cid-s7DV9CUCe1 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s7DV9CUCe1 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-s7DV9CUCe1 .modal.fade .modal-dialog,
.cid-s7DV9CUCe1 .modal.in .modal-dialog {
  transform: none;
}
.cid-s7DV9CUCe1 H3 {
  color: #353535;
  text-align: left;
}
.cid-s7DYljVOvK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7DYljVOvK .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-s7DYljVOvK .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-s7DYljVOvK .item-wrapper {
  height: 100%;
}
.cid-s7DYljVOvK .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s7DYljVOvK .carousel-control,
.cid-s7DYljVOvK .close {
  background: #1b1b1b;
}
.cid-s7DYljVOvK .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s7DYljVOvK .carousel-control-prev span {
  margin-right: 5px;
}
.cid-s7DYljVOvK .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s7DYljVOvK .carousel-control-next span {
  margin-left: 5px;
}
.cid-s7DYljVOvK .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-s7DYljVOvK .close::before {
  content: '\e91a';
}
.cid-s7DYljVOvK .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s7DYljVOvK .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-s7DYljVOvK .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s7DYljVOvK .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-s7DYljVOvK .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-s7DYljVOvK .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-s7DYljVOvK .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-s7DYljVOvK .carousel-indicators li.active,
.cid-s7DYljVOvK .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-s7DYljVOvK .carousel-indicators li::after,
.cid-s7DYljVOvK .carousel-indicators li::before {
  content: none;
}
.cid-s7DYljVOvK .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-s7DYljVOvK .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-s7DYljVOvK .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s7DYljVOvK .carousel-indicators {
    display: none;
  }
}
.cid-s7DYljVOvK .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-s7DYljVOvK .carousel-inner > .active {
  display: block;
}
.cid-s7DYljVOvK .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s7DYljVOvK .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s7DYljVOvK .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s7DYljVOvK .carousel-control,
  .cid-s7DYljVOvK .carousel-indicators,
  .cid-s7DYljVOvK .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s7DYljVOvK .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s7DYljVOvK .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s7DYljVOvK .carousel-indicators .active,
.cid-s7DYljVOvK .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-s7DYljVOvK .carousel-indicators .active {
  background: #fff;
}
.cid-s7DYljVOvK .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s7DYljVOvK .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s7DYljVOvK .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s7DYljVOvK .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s7DYljVOvK .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s7DYljVOvK .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s7DYljVOvK .carousel {
  width: 100%;
}
.cid-s7DYljVOvK .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s7DYljVOvK .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-s7DYljVOvK .modal.fade .modal-dialog,
.cid-s7DYljVOvK .modal.in .modal-dialog {
  transform: none;
}
.cid-s7E0p58ZLD {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-s7E0p58ZLD .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-s7E0p58ZLD .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-s7E0p58ZLD .item-wrapper {
  height: 100%;
}
.cid-s7E0p58ZLD .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s7E0p58ZLD .carousel-control,
.cid-s7E0p58ZLD .close {
  background: #1b1b1b;
}
.cid-s7E0p58ZLD .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s7E0p58ZLD .carousel-control-prev span {
  margin-right: 5px;
}
.cid-s7E0p58ZLD .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s7E0p58ZLD .carousel-control-next span {
  margin-left: 5px;
}
.cid-s7E0p58ZLD .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-s7E0p58ZLD .close::before {
  content: '\e91a';
}
.cid-s7E0p58ZLD .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s7E0p58ZLD .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-s7E0p58ZLD .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s7E0p58ZLD .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-s7E0p58ZLD .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-s7E0p58ZLD .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-s7E0p58ZLD .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-s7E0p58ZLD .carousel-indicators li.active,
.cid-s7E0p58ZLD .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-s7E0p58ZLD .carousel-indicators li::after,
.cid-s7E0p58ZLD .carousel-indicators li::before {
  content: none;
}
.cid-s7E0p58ZLD .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-s7E0p58ZLD .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-s7E0p58ZLD .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s7E0p58ZLD .carousel-indicators {
    display: none;
  }
}
.cid-s7E0p58ZLD .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-s7E0p58ZLD .carousel-inner > .active {
  display: block;
}
.cid-s7E0p58ZLD .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s7E0p58ZLD .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s7E0p58ZLD .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s7E0p58ZLD .carousel-control,
  .cid-s7E0p58ZLD .carousel-indicators,
  .cid-s7E0p58ZLD .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s7E0p58ZLD .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s7E0p58ZLD .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s7E0p58ZLD .carousel-indicators .active,
.cid-s7E0p58ZLD .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-s7E0p58ZLD .carousel-indicators .active {
  background: #fff;
}
.cid-s7E0p58ZLD .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s7E0p58ZLD .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s7E0p58ZLD .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s7E0p58ZLD .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s7E0p58ZLD .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s7E0p58ZLD .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s7E0p58ZLD .carousel {
  width: 100%;
}
.cid-s7E0p58ZLD .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s7E0p58ZLD .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-s7E0p58ZLD .modal.fade .modal-dialog,
.cid-s7E0p58ZLD .modal.in .modal-dialog {
  transform: none;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s7E8XB7CGF {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-s7E8XB7CGF .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-s7E8XB7CGF .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-s7E8XB7CGF .item-wrapper {
  height: 100%;
}
.cid-s7E8XB7CGF .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s7E8XB7CGF .carousel-control,
.cid-s7E8XB7CGF .close {
  background: #1b1b1b;
}
.cid-s7E8XB7CGF .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s7E8XB7CGF .carousel-control-prev span {
  margin-right: 5px;
}
.cid-s7E8XB7CGF .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s7E8XB7CGF .carousel-control-next span {
  margin-left: 5px;
}
.cid-s7E8XB7CGF .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-s7E8XB7CGF .close::before {
  content: '\e91a';
}
.cid-s7E8XB7CGF .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s7E8XB7CGF .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-s7E8XB7CGF .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s7E8XB7CGF .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-s7E8XB7CGF .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-s7E8XB7CGF .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-s7E8XB7CGF .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-s7E8XB7CGF .carousel-indicators li.active,
.cid-s7E8XB7CGF .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-s7E8XB7CGF .carousel-indicators li::after,
.cid-s7E8XB7CGF .carousel-indicators li::before {
  content: none;
}
.cid-s7E8XB7CGF .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-s7E8XB7CGF .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-s7E8XB7CGF .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s7E8XB7CGF .carousel-indicators {
    display: none;
  }
}
.cid-s7E8XB7CGF .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-s7E8XB7CGF .carousel-inner > .active {
  display: block;
}
.cid-s7E8XB7CGF .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s7E8XB7CGF .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s7E8XB7CGF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s7E8XB7CGF .carousel-control,
  .cid-s7E8XB7CGF .carousel-indicators,
  .cid-s7E8XB7CGF .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s7E8XB7CGF .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s7E8XB7CGF .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s7E8XB7CGF .carousel-indicators .active,
.cid-s7E8XB7CGF .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-s7E8XB7CGF .carousel-indicators .active {
  background: #fff;
}
.cid-s7E8XB7CGF .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s7E8XB7CGF .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s7E8XB7CGF .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s7E8XB7CGF .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s7E8XB7CGF .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s7E8XB7CGF .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s7E8XB7CGF .carousel {
  width: 100%;
}
.cid-s7E8XB7CGF .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s7E8XB7CGF .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-s7E8XB7CGF .modal.fade .modal-dialog,
.cid-s7E8XB7CGF .modal.in .modal-dialog {
  transform: none;
}
.cid-s7E8XB7CGF H3 {
  color: #353535;
  text-align: left;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s7M7jmx5un {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/dsc-684-2000x1330.jpg");
}
.cid-s7M7jmx5un .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.8;
}
.cid-s7M7jmx5un form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-s7M7jmx5un form .mbr-section-btn .btn {
  display: inline-flex;
}
.cid-s7M7jmx5un .mbr-section-title {
  color: #353535;
}
.cid-s7M7jmx5un .mbr-section-subtitle {
  text-align: left;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-s7m0Be2sdR {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/peponi-1024x765.jpg");
}
.cid-s7m0Be2sdR .mbr-text,
.cid-s7m0Be2sdR .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-s7m0Be2sdR .mbr-section-title {
  color: #ffffff;
}
.cid-s7m0BhfVF1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7m0BELHxU {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/peponi-1024x765.jpg");
}
.cid-s7m0BELHxU .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-s7m0BELHxU form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-s7m0BELHxU form .mbr-section-btn .btn {
  display: inline-flex;
}
.cid-s7m0BELHxU .mbr-section-title {
  color: #000000;
}
.cid-tcj3jEoLaH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcj3jEoLaH nav.navbar {
  position: fixed;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .dropdown-menu {
  padding: 0;
}
.cid-tcj3jEoLaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .dropdown-item:hover,
.cid-tcj3jEoLaH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcj3jEoLaH .nav-link {
  position: relative;
}
.cid-tcj3jEoLaH .container {
  display: flex;
  margin: auto;
}
.cid-tcj3jEoLaH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcj3jEoLaH .navbar-caption {
  padding-right: 4rem;
}
.cid-tcj3jEoLaH .dropdown-menu,
.cid-tcj3jEoLaH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcj3jEoLaH .nav-item:focus,
.cid-tcj3jEoLaH .nav-link:focus {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcj3jEoLaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcj3jEoLaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcj3jEoLaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcj3jEoLaH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcj3jEoLaH .navbar.opened {
  transition: all .3s;
}
.cid-tcj3jEoLaH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcj3jEoLaH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcj3jEoLaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcj3jEoLaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcj3jEoLaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcj3jEoLaH .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: 55%;
}
.cid-tcj3jEoLaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcj3jEoLaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcj3jEoLaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcj3jEoLaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcj3jEoLaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcj3jEoLaH .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: 55%;
  }
  .cid-tcj3jEoLaH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcj3jEoLaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcj3jEoLaH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcj3jEoLaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcj3jEoLaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcj3jEoLaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcj3jEoLaH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcj3jEoLaH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcj3jEoLaH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcj3jEoLaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcj3jEoLaH .dropdown-item.active,
.cid-tcj3jEoLaH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcj3jEoLaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcj3jEoLaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcj3jEoLaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcj3jEoLaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcj3jEoLaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcj3jEoLaH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcj3jEoLaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcj3jEoLaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcj3jEoLaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcj3jEoLaH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcj3jEoLaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcj3jEoLaH .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-tcj3jEoLaH .navbar {
    height: 77px;
  }
  .cid-tcj3jEoLaH .navbar.opened {
    height: auto;
  }
  .cid-tcj3jEoLaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcj3BgbL52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcj3BgbL52 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcj3BgbL52 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcj3BgbL52 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcj3BgbL52 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcj3BgbL52 .mbr-text {
  color: #ffffff;
}
.cid-tcj3BgbL52 .mbr-iconfont {
  color: black;
}
.cid-tcBpfrhgfd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcBpfrhgfd nav.navbar {
  position: fixed;
}
.cid-tcBpfrhgfd .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-tcBpfrhgfd .dropdown-menu {
  padding: 0;
}
.cid-tcBpfrhgfd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcBpfrhgfd .dropdown-item:hover,
.cid-tcBpfrhgfd .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcBpfrhgfd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcBpfrhgfd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcBpfrhgfd .nav-link {
  position: relative;
}
.cid-tcBpfrhgfd .container {
  display: flex;
  margin: auto;
}
.cid-tcBpfrhgfd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcBpfrhgfd .navbar-caption {
  padding-right: 4rem;
}
.cid-tcBpfrhgfd .dropdown-menu,
.cid-tcBpfrhgfd .navbar.opened {
  background: #ffffff !important;
}
.cid-tcBpfrhgfd .nav-item:focus,
.cid-tcBpfrhgfd .nav-link:focus {
  outline: none;
}
.cid-tcBpfrhgfd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcBpfrhgfd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcBpfrhgfd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcBpfrhgfd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcBpfrhgfd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcBpfrhgfd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcBpfrhgfd .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcBpfrhgfd .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcBpfrhgfd .navbar.opened {
  transition: all .3s;
}
.cid-tcBpfrhgfd .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcBpfrhgfd .navbar .navbar-logo img {
  width: auto;
}
.cid-tcBpfrhgfd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcBpfrhgfd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcBpfrhgfd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcBpfrhgfd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcBpfrhgfd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcBpfrhgfd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcBpfrhgfd .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: 55%;
}
.cid-tcBpfrhgfd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcBpfrhgfd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcBpfrhgfd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcBpfrhgfd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcBpfrhgfd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcBpfrhgfd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcBpfrhgfd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcBpfrhgfd .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: 55%;
  }
  .cid-tcBpfrhgfd .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcBpfrhgfd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcBpfrhgfd .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcBpfrhgfd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcBpfrhgfd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcBpfrhgfd .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcBpfrhgfd .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcBpfrhgfd .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcBpfrhgfd .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcBpfrhgfd .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcBpfrhgfd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcBpfrhgfd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcBpfrhgfd .dropdown-item.active,
.cid-tcBpfrhgfd .dropdown-item:active {
  background-color: transparent;
}
.cid-tcBpfrhgfd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcBpfrhgfd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcBpfrhgfd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcBpfrhgfd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcBpfrhgfd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcBpfrhgfd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcBpfrhgfd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcBpfrhgfd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcBpfrhgfd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcBpfrhgfd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcBpfrhgfd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcBpfrhgfd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcBpfrhgfd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcBpfrhgfd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcBpfrhgfd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcBpfrhgfd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcBpfrhgfd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcBpfrhgfd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcBpfrhgfd .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcBpfrhgfd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcBpfrhgfd .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-tcBpfrhgfd .navbar {
    height: 77px;
  }
  .cid-tcBpfrhgfd .navbar.opened {
    height: auto;
  }
  .cid-tcBpfrhgfd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcBpfuzxb5 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/img-20180528-172523-2000x1500.jpg");
}
.cid-tcBpfuzxb5 .mbr-overlay {
  background: #ffffff;
  opacity: 0.9;
}
.cid-tcBpfuzxb5 img,
.cid-tcBpfuzxb5 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tcBpfuzxb5 .item:focus,
.cid-tcBpfuzxb5 span:focus {
  outline: none;
}
.cid-tcBpfuzxb5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tcBpfuzxb5 .item-wrapper {
  position: relative;
  border-radius: 10px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tcBpfuzxb5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tcBpfuzxb5 .mbr-section-title {
  color: #232323;
  padding-bottom: 50px;
}
.cid-tcBpfuzxb5 .item-title {
  margin: 20px;
  color: #ffffff;
  text-align: center;
}
.cid-tcBpfuzxb5 .item-title P {
  text-align: center;
}
.cid-tcBpfBfBgP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcBpfBfBgP .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcBpfBfBgP .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcBpfBfBgP .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcBpfBfBgP .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcBpfBfBgP .list {
    margin-bottom: 0rem;
  }
}
.cid-tcBpfBfBgP .mbr-text {
  color: #ffffff;
}
.cid-tcBpfBfBgP .mbr-iconfont {
  color: black;
}
.cid-tcButlkgld {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcButlkgld nav.navbar {
  position: fixed;
}
.cid-tcButlkgld .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-tcButlkgld .dropdown-menu {
  padding: 0;
}
.cid-tcButlkgld .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcButlkgld .dropdown-item:hover,
.cid-tcButlkgld .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcButlkgld .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcButlkgld .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcButlkgld .nav-link {
  position: relative;
}
.cid-tcButlkgld .container {
  display: flex;
  margin: auto;
}
.cid-tcButlkgld .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcButlkgld .navbar-caption {
  padding-right: 4rem;
}
.cid-tcButlkgld .dropdown-menu,
.cid-tcButlkgld .navbar.opened {
  background: #ffffff !important;
}
.cid-tcButlkgld .nav-item:focus,
.cid-tcButlkgld .nav-link:focus {
  outline: none;
}
.cid-tcButlkgld .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcButlkgld .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcButlkgld .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcButlkgld .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcButlkgld .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcButlkgld .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcButlkgld .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcButlkgld .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcButlkgld .navbar.opened {
  transition: all .3s;
}
.cid-tcButlkgld .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcButlkgld .navbar .navbar-logo img {
  width: auto;
}
.cid-tcButlkgld .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcButlkgld .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcButlkgld .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcButlkgld .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcButlkgld .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcButlkgld .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcButlkgld .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: 55%;
}
.cid-tcButlkgld .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcButlkgld .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcButlkgld .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcButlkgld .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcButlkgld .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcButlkgld .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcButlkgld .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcButlkgld .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: 55%;
  }
  .cid-tcButlkgld .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcButlkgld .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcButlkgld .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcButlkgld .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcButlkgld .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcButlkgld .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcButlkgld .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcButlkgld .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcButlkgld .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcButlkgld .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcButlkgld .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcButlkgld .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcButlkgld .dropdown-item.active,
.cid-tcButlkgld .dropdown-item:active {
  background-color: transparent;
}
.cid-tcButlkgld .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcButlkgld .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcButlkgld .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcButlkgld .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcButlkgld .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcButlkgld .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcButlkgld ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcButlkgld .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcButlkgld button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcButlkgld button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcButlkgld button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcButlkgld button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcButlkgld button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcButlkgld button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcButlkgld nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcButlkgld nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcButlkgld nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcButlkgld nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcButlkgld .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcButlkgld a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcButlkgld .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-tcButlkgld .navbar {
    height: 77px;
  }
  .cid-tcButlkgld .navbar.opened {
    height: auto;
  }
  .cid-tcButlkgld .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcButqyW2B {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/dsc-2413-2000x1395.jpg");
}
.cid-tcButqyW2B .mbr-overlay {
  background: #ffffff;
  opacity: 0.8;
}
.cid-tcButqyW2B img,
.cid-tcButqyW2B .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tcButqyW2B .item:focus,
.cid-tcButqyW2B span:focus {
  outline: none;
}
.cid-tcButqyW2B .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tcButqyW2B .item-wrapper {
  position: relative;
  border-radius: 10px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tcButqyW2B .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tcButqyW2B .mbr-section-title {
  color: #232323;
  padding-bottom: 50px;
}
.cid-tcButqyW2B .item-title {
  margin: 20px;
  color: #ffffff;
  text-align: center;
}
.cid-tcButqyW2B .item-title P {
  text-align: center;
}
.cid-tcButu4Vu1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcButu4Vu1 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcButu4Vu1 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcButu4Vu1 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcButu4Vu1 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcButu4Vu1 .list {
    margin-bottom: 0rem;
  }
}
.cid-tcButu4Vu1 .mbr-text {
  color: #ffffff;
}
.cid-tcButu4Vu1 .mbr-iconfont {
  color: black;
}
.cid-tcBBIdL0Df {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcBBIdL0Df nav.navbar {
  position: fixed;
}
.cid-tcBBIdL0Df .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-tcBBIdL0Df .dropdown-menu {
  padding: 0;
}
.cid-tcBBIdL0Df .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcBBIdL0Df .dropdown-item:hover,
.cid-tcBBIdL0Df .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tcBBIdL0Df .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tcBBIdL0Df .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcBBIdL0Df .nav-link {
  position: relative;
}
.cid-tcBBIdL0Df .container {
  display: flex;
  margin: auto;
}
.cid-tcBBIdL0Df .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tcBBIdL0Df .navbar-caption {
  padding-right: 4rem;
}
.cid-tcBBIdL0Df .dropdown-menu,
.cid-tcBBIdL0Df .navbar.opened {
  background: #ffffff !important;
}
.cid-tcBBIdL0Df .nav-item:focus,
.cid-tcBBIdL0Df .nav-link:focus {
  outline: none;
}
.cid-tcBBIdL0Df .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcBBIdL0Df .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcBBIdL0Df .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tcBBIdL0Df .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcBBIdL0Df .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcBBIdL0Df .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcBBIdL0Df .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcBBIdL0Df .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcBBIdL0Df .navbar.opened {
  transition: all .3s;
}
.cid-tcBBIdL0Df .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tcBBIdL0Df .navbar .navbar-logo img {
  width: auto;
}
.cid-tcBBIdL0Df .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcBBIdL0Df .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcBBIdL0Df .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcBBIdL0Df .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tcBBIdL0Df .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcBBIdL0Df .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcBBIdL0Df .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: 55%;
}
.cid-tcBBIdL0Df .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcBBIdL0Df .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tcBBIdL0Df .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tcBBIdL0Df .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcBBIdL0Df .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcBBIdL0Df .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcBBIdL0Df .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcBBIdL0Df .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: 55%;
  }
  .cid-tcBBIdL0Df .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tcBBIdL0Df .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcBBIdL0Df .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcBBIdL0Df .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcBBIdL0Df .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcBBIdL0Df .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tcBBIdL0Df .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcBBIdL0Df .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tcBBIdL0Df .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tcBBIdL0Df .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tcBBIdL0Df .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcBBIdL0Df .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcBBIdL0Df .dropdown-item.active,
.cid-tcBBIdL0Df .dropdown-item:active {
  background-color: transparent;
}
.cid-tcBBIdL0Df .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcBBIdL0Df .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcBBIdL0Df .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcBBIdL0Df .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcBBIdL0Df .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcBBIdL0Df .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcBBIdL0Df ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcBBIdL0Df .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcBBIdL0Df button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tcBBIdL0Df button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tcBBIdL0Df button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcBBIdL0Df button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcBBIdL0Df button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcBBIdL0Df button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcBBIdL0Df nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcBBIdL0Df nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcBBIdL0Df nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcBBIdL0Df nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcBBIdL0Df .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tcBBIdL0Df a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcBBIdL0Df .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-tcBBIdL0Df .navbar {
    height: 77px;
  }
  .cid-tcBBIdL0Df .navbar.opened {
    height: auto;
  }
  .cid-tcBBIdL0Df .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcBBIiuzcy {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/dsc-2413-2000x1395.jpg");
}
.cid-tcBBIiuzcy .mbr-overlay {
  background: #ffffff;
  opacity: 0.8;
}
.cid-tcBBIiuzcy img,
.cid-tcBBIiuzcy .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tcBBIiuzcy .item:focus,
.cid-tcBBIiuzcy span:focus {
  outline: none;
}
.cid-tcBBIiuzcy .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tcBBIiuzcy .item-wrapper {
  position: relative;
  border-radius: 10px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tcBBIiuzcy .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tcBBIiuzcy .mbr-section-title {
  color: #232323;
  padding-bottom: 50px;
}
.cid-tcBBIiuzcy .item-title {
  margin: 20px;
  color: #ffffff;
  text-align: center;
}
.cid-tcBBIiuzcy .item-title P {
  text-align: center;
}
.cid-tcBBImjHBL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tcBBImjHBL .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tcBBImjHBL .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tcBBImjHBL .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcBBImjHBL .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcBBImjHBL .list {
    margin-bottom: 0rem;
  }
}
.cid-tcBBImjHBL .mbr-text {
  color: #ffffff;
}
.cid-tcBBImjHBL .mbr-iconfont {
  color: black;
}
.cid-teS20dzI0B {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-teS20dzI0B nav.navbar {
  position: fixed;
}
.cid-teS20dzI0B .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-teS20dzI0B .dropdown-menu {
  padding: 0;
}
.cid-teS20dzI0B .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-teS20dzI0B .dropdown-item:hover,
.cid-teS20dzI0B .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-teS20dzI0B .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-teS20dzI0B .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-teS20dzI0B .nav-link {
  position: relative;
}
.cid-teS20dzI0B .container {
  display: flex;
  margin: auto;
}
.cid-teS20dzI0B .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-teS20dzI0B .navbar-caption {
  padding-right: 4rem;
}
.cid-teS20dzI0B .dropdown-menu,
.cid-teS20dzI0B .navbar.opened {
  background: #ffffff !important;
}
.cid-teS20dzI0B .nav-item:focus,
.cid-teS20dzI0B .nav-link:focus {
  outline: none;
}
.cid-teS20dzI0B .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-teS20dzI0B .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-teS20dzI0B .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-teS20dzI0B .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-teS20dzI0B .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-teS20dzI0B .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-teS20dzI0B .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-teS20dzI0B .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-teS20dzI0B .navbar.opened {
  transition: all .3s;
}
.cid-teS20dzI0B .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-teS20dzI0B .navbar .navbar-logo img {
  width: auto;
}
.cid-teS20dzI0B .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-teS20dzI0B .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-teS20dzI0B .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-teS20dzI0B .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-teS20dzI0B .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-teS20dzI0B .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-teS20dzI0B .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: 55%;
}
.cid-teS20dzI0B .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-teS20dzI0B .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-teS20dzI0B .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-teS20dzI0B .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-teS20dzI0B .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-teS20dzI0B .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-teS20dzI0B .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-teS20dzI0B .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: 55%;
  }
  .cid-teS20dzI0B .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-teS20dzI0B .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-teS20dzI0B .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-teS20dzI0B .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-teS20dzI0B .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-teS20dzI0B .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-teS20dzI0B .navbar.navbar-short {
  min-height: 60px;
}
.cid-teS20dzI0B .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-teS20dzI0B .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-teS20dzI0B .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-teS20dzI0B .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-teS20dzI0B .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-teS20dzI0B .dropdown-item.active,
.cid-teS20dzI0B .dropdown-item:active {
  background-color: transparent;
}
.cid-teS20dzI0B .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-teS20dzI0B .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-teS20dzI0B .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-teS20dzI0B .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-teS20dzI0B .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-teS20dzI0B .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-teS20dzI0B ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-teS20dzI0B .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-teS20dzI0B button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-teS20dzI0B button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-teS20dzI0B button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-teS20dzI0B button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-teS20dzI0B button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-teS20dzI0B button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-teS20dzI0B nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-teS20dzI0B nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-teS20dzI0B nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-teS20dzI0B nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-teS20dzI0B .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-teS20dzI0B a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-teS20dzI0B .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-teS20dzI0B .navbar {
    height: 77px;
  }
  .cid-teS20dzI0B .navbar.opened {
    height: auto;
  }
  .cid-teS20dzI0B .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tjHtBPbaXM {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-teS2o0SMsV {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mnemba-island-1920x1080.jpg");
}
.cid-teS2o0SMsV .card {
  margin-top: 4rem;
}
.cid-teS2o0SMsV .card:first-child {
  margin-top: 0;
}
.cid-teS2o0SMsV .card-wrapper {
  display: flex;
  flex-direction: column;
}
.cid-teS2o0SMsV .card-head {
  display: flex;
}
@media (max-width: 767px) {
  .cid-teS2o0SMsV .card-head {
    flex-direction: column;
  }
}
.cid-teS2o0SMsV .image-wrapper {
  max-width: 150px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
}
.cid-teS2o0SMsV .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-teS2o0SMsV svg {
  position: absolute;
  top: -25px;
  left: -20px;
  width: 63px;
  height: 60px;
  transform: rotate(275deg);
}
@media (max-width: 767px) {
  .cid-teS2o0SMsV svg {
    top: -35px;
    left: 120px;
    transform: rotate(0deg);
  }
}
.cid-teS2o0SMsV svg path {
  fill: #bbbbbb;
}
.cid-teS2o0SMsV .card-text-head {
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-teS2o0SMsV .card-text-head {
    padding: 1rem 0;
  }
}
.cid-teS2o0SMsV .card-title {
  color: #000000;
}
.cid-teS2o0SMsV .mbr-text {
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.cid-teS2o0SMsV .card-text {
  padding: 1rem;
}
@media (max-width: 767px) {
  .cid-teS2o0SMsV .card-text {
    padding: 0;
  }
}
.cid-teS20gxhzK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-teS20gxhzK .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-teS20gxhzK .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-teS20gxhzK .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-teS20gxhzK .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-teS20gxhzK .list {
    margin-bottom: 0rem;
  }
}
.cid-teS20gxhzK .mbr-text {
  color: #ffffff;
}
.cid-teS20gxhzK .mbr-iconfont {
  color: black;
}
.cid-tkCkhYlxJW {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/dsc-2413-2000x1395.jpg");
}
.cid-tkCkhYlxJW .mbr-text,
.cid-tkCkhYlxJW .mbr-section-btn {
  color: #333333;
}
.cid-tkCkhYlxJW .card-title,
.cid-tkCkhYlxJW .card-box {
  color: #ffffff;
}
.cid-tkCkhYlxJW .mbr-text,
.cid-tkCkhYlxJW .link-wrap {
  color: #ffffff;
}
.cid-tkCki4IXaz {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tkCki4IXaz .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #bbbbbb;
  margin-left: 1rem;
}
.cid-tkCki4IXaz .panel-group {
  border: none;
}
.cid-tkCki4IXaz .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .cid-tkCki4IXaz .panel-body,
  .cid-tkCki4IXaz .card-header {
    padding: 1rem 0;
  }
}
@media (min-width: 768px) {
  .cid-tkCki4IXaz .panel-body,
  .cid-tkCki4IXaz .card-header {
    padding: 1rem 0;
  }
}
.cid-tkCki4IXaz .panel-title-edit {
  color: #000000;
}
.cid-tkCki4IXaz .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tkCki8eT7J {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tkCki8eT7J .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #bbbbbb;
  margin-left: 1rem;
}
.cid-tkCki8eT7J .panel-group {
  border: none;
}
.cid-tkCki8eT7J .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .cid-tkCki8eT7J .panel-body,
  .cid-tkCki8eT7J .card-header {
    padding: 1rem 0;
  }
}
@media (min-width: 768px) {
  .cid-tkCki8eT7J .panel-body,
  .cid-tkCki8eT7J .card-header {
    padding: 1rem 0;
  }
}
.cid-tkCki8eT7J .panel-title-edit {
  color: #000000;
}
.cid-tkCki8eT7J .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tkCkibfIne {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tkCkibfIne nav.navbar {
  position: fixed;
}
.cid-tkCkibfIne .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-tkCkibfIne .dropdown-menu {
  padding: 0;
}
.cid-tkCkibfIne .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tkCkibfIne .dropdown-item:hover,
.cid-tkCkibfIne .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tkCkibfIne .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tkCkibfIne .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tkCkibfIne .nav-link {
  position: relative;
}
.cid-tkCkibfIne .container {
  display: flex;
  margin: auto;
}
.cid-tkCkibfIne .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tkCkibfIne .navbar-caption {
  padding-right: 4rem;
}
.cid-tkCkibfIne .dropdown-menu,
.cid-tkCkibfIne .navbar.opened {
  background: #ffffff !important;
}
.cid-tkCkibfIne .nav-item:focus,
.cid-tkCkibfIne .nav-link:focus {
  outline: none;
}
.cid-tkCkibfIne .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tkCkibfIne .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tkCkibfIne .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tkCkibfIne .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tkCkibfIne .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tkCkibfIne .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tkCkibfIne .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tkCkibfIne .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tkCkibfIne .navbar.opened {
  transition: all .3s;
}
.cid-tkCkibfIne .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tkCkibfIne .navbar .navbar-logo img {
  width: auto;
}
.cid-tkCkibfIne .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tkCkibfIne .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tkCkibfIne .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tkCkibfIne .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tkCkibfIne .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tkCkibfIne .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tkCkibfIne .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: 55%;
}
.cid-tkCkibfIne .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tkCkibfIne .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tkCkibfIne .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tkCkibfIne .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tkCkibfIne .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tkCkibfIne .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tkCkibfIne .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tkCkibfIne .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: 55%;
  }
  .cid-tkCkibfIne .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tkCkibfIne .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tkCkibfIne .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tkCkibfIne .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tkCkibfIne .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tkCkibfIne .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tkCkibfIne .navbar.navbar-short {
  min-height: 60px;
}
.cid-tkCkibfIne .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tkCkibfIne .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tkCkibfIne .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tkCkibfIne .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tkCkibfIne .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tkCkibfIne .dropdown-item.active,
.cid-tkCkibfIne .dropdown-item:active {
  background-color: transparent;
}
.cid-tkCkibfIne .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tkCkibfIne .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tkCkibfIne .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tkCkibfIne .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tkCkibfIne .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tkCkibfIne .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tkCkibfIne ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tkCkibfIne .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tkCkibfIne button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tkCkibfIne button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tkCkibfIne button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tkCkibfIne button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tkCkibfIne button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tkCkibfIne button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tkCkibfIne nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tkCkibfIne nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tkCkibfIne nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tkCkibfIne nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tkCkibfIne .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tkCkibfIne a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tkCkibfIne .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-tkCkibfIne .navbar {
    height: 77px;
  }
  .cid-tkCkibfIne .navbar.opened {
    height: auto;
  }
  .cid-tkCkibfIne .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tkCkigo5Ei {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tkCkigo5Ei .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tkCkigo5Ei .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tkCkigo5Ei .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tkCkigo5Ei .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tkCkigo5Ei .list {
    margin-bottom: 0rem;
  }
}
.cid-tkCkigo5Ei .mbr-text {
  color: #ffffff;
}
.cid-tkCkigo5Ei .mbr-iconfont {
  color: black;
}
.cid-tkCEzyaxUh {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/mantaresort-705x529.jpg");
}
.cid-tkCEzyaxUh .mbr-text,
.cid-tkCEzyaxUh .mbr-section-btn {
  color: #333333;
}
.cid-tkCEzyaxUh .card-title,
.cid-tkCEzyaxUh .card-box {
  color: #ffffff;
}
.cid-tkCEzyaxUh .mbr-text,
.cid-tkCEzyaxUh .link-wrap {
  color: #ffffff;
}
.cid-tkCEAaR7GN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tkCEAaR7GN .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #bbbbbb;
  margin-left: 1rem;
}
.cid-tkCEAaR7GN .panel-group {
  border: none;
}
.cid-tkCEAaR7GN .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .cid-tkCEAaR7GN .panel-body,
  .cid-tkCEAaR7GN .card-header {
    padding: 1rem 0;
  }
}
@media (min-width: 768px) {
  .cid-tkCEAaR7GN .panel-body,
  .cid-tkCEAaR7GN .card-header {
    padding: 1rem 0;
  }
}
.cid-tkCEAaR7GN .panel-title-edit {
  color: #000000;
}
.cid-tkCEAaR7GN .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tkCEAlNnK8 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tkCEAlNnK8 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #bbbbbb;
  margin-left: 1rem;
}
.cid-tkCEAlNnK8 .panel-group {
  border: none;
}
.cid-tkCEAlNnK8 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .cid-tkCEAlNnK8 .panel-body,
  .cid-tkCEAlNnK8 .card-header {
    padding: 1rem 0;
  }
}
@media (min-width: 768px) {
  .cid-tkCEAlNnK8 .panel-body,
  .cid-tkCEAlNnK8 .card-header {
    padding: 1rem 0;
  }
}
.cid-tkCEAlNnK8 .panel-title-edit {
  color: #000000;
}
.cid-tkCEAlNnK8 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tkCEAq0fs3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tkCEAq0fs3 nav.navbar {
  position: fixed;
}
.cid-tkCEAq0fs3 .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-tkCEAq0fs3 .dropdown-menu {
  padding: 0;
}
.cid-tkCEAq0fs3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tkCEAq0fs3 .dropdown-item:hover,
.cid-tkCEAq0fs3 .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tkCEAq0fs3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tkCEAq0fs3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tkCEAq0fs3 .nav-link {
  position: relative;
}
.cid-tkCEAq0fs3 .container {
  display: flex;
  margin: auto;
}
.cid-tkCEAq0fs3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tkCEAq0fs3 .navbar-caption {
  padding-right: 4rem;
}
.cid-tkCEAq0fs3 .dropdown-menu,
.cid-tkCEAq0fs3 .navbar.opened {
  background: #ffffff !important;
}
.cid-tkCEAq0fs3 .nav-item:focus,
.cid-tkCEAq0fs3 .nav-link:focus {
  outline: none;
}
.cid-tkCEAq0fs3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tkCEAq0fs3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tkCEAq0fs3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tkCEAq0fs3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tkCEAq0fs3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tkCEAq0fs3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tkCEAq0fs3 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tkCEAq0fs3 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tkCEAq0fs3 .navbar.opened {
  transition: all .3s;
}
.cid-tkCEAq0fs3 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tkCEAq0fs3 .navbar .navbar-logo img {
  width: auto;
}
.cid-tkCEAq0fs3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tkCEAq0fs3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tkCEAq0fs3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tkCEAq0fs3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tkCEAq0fs3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tkCEAq0fs3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tkCEAq0fs3 .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: 55%;
}
.cid-tkCEAq0fs3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tkCEAq0fs3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tkCEAq0fs3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tkCEAq0fs3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tkCEAq0fs3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tkCEAq0fs3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tkCEAq0fs3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tkCEAq0fs3 .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: 55%;
  }
  .cid-tkCEAq0fs3 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tkCEAq0fs3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tkCEAq0fs3 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tkCEAq0fs3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tkCEAq0fs3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tkCEAq0fs3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tkCEAq0fs3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tkCEAq0fs3 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tkCEAq0fs3 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tkCEAq0fs3 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tkCEAq0fs3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tkCEAq0fs3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tkCEAq0fs3 .dropdown-item.active,
.cid-tkCEAq0fs3 .dropdown-item:active {
  background-color: transparent;
}
.cid-tkCEAq0fs3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tkCEAq0fs3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tkCEAq0fs3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tkCEAq0fs3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tkCEAq0fs3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tkCEAq0fs3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tkCEAq0fs3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tkCEAq0fs3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tkCEAq0fs3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tkCEAq0fs3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tkCEAq0fs3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tkCEAq0fs3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tkCEAq0fs3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tkCEAq0fs3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tkCEAq0fs3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tkCEAq0fs3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tkCEAq0fs3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tkCEAq0fs3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tkCEAq0fs3 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tkCEAq0fs3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tkCEAq0fs3 .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-tkCEAq0fs3 .navbar {
    height: 77px;
  }
  .cid-tkCEAq0fs3 .navbar.opened {
    height: auto;
  }
  .cid-tkCEAq0fs3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tkCEAGZ8Hq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tkCEAGZ8Hq .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tkCEAGZ8Hq .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tkCEAGZ8Hq .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tkCEAGZ8Hq .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tkCEAGZ8Hq .list {
    margin-bottom: 0rem;
  }
}
.cid-tkCEAGZ8Hq .mbr-text {
  color: #ffffff;
}
.cid-tkCEAGZ8Hq .mbr-iconfont {
  color: black;
}
