body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !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: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #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: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !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: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !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: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #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: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !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: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !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: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-s7VNqukT3L {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s7VNqukT3L nav.navbar {
  position: fixed;
}
.cid-s7VNqukT3L .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-s7VNqukT3L .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-s7VNqukT3L .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s7VNqukT3L .dropdown-item:hover,
.cid-s7VNqukT3L .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-s7VNqukT3L .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-s7VNqukT3L .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-s7VNqukT3L .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s7VNqukT3L .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s7VNqukT3L .nav-link {
  position: relative;
}
.cid-s7VNqukT3L .container {
  display: flex;
  margin: auto;
}
.cid-s7VNqukT3L .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s7VNqukT3L .dropdown-menu,
.cid-s7VNqukT3L .navbar.opened {
  background: #ffffff !important;
}
.cid-s7VNqukT3L .nav-item:focus,
.cid-s7VNqukT3L .nav-link:focus {
  outline: none;
}
.cid-s7VNqukT3L .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s7VNqukT3L .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s7VNqukT3L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-s7VNqukT3L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s7VNqukT3L .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s7VNqukT3L .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s7VNqukT3L .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-s7VNqukT3L .navbar.opened {
  transition: all .3s;
}
.cid-s7VNqukT3L .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s7VNqukT3L .navbar .navbar-logo img {
  width: auto;
}
.cid-s7VNqukT3L .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s7VNqukT3L .navbar.collapsed {
  justify-content: center;
}
.cid-s7VNqukT3L .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s7VNqukT3L .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s7VNqukT3L .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-s7VNqukT3L .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s7VNqukT3L .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s7VNqukT3L .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-s7VNqukT3L .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s7VNqukT3L .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s7VNqukT3L .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s7VNqukT3L .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s7VNqukT3L .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s7VNqukT3L .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s7VNqukT3L .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s7VNqukT3L .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-s7VNqukT3L .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-s7VNqukT3L .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s7VNqukT3L .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s7VNqukT3L .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s7VNqukT3L .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s7VNqukT3L .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s7VNqukT3L .navbar.navbar-short {
  min-height: 60px;
}
.cid-s7VNqukT3L .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-s7VNqukT3L .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-s7VNqukT3L .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s7VNqukT3L .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s7VNqukT3L .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s7VNqukT3L .dropdown-item.active,
.cid-s7VNqukT3L .dropdown-item:active {
  background-color: transparent;
}
.cid-s7VNqukT3L .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s7VNqukT3L .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s7VNqukT3L .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s7VNqukT3L .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-s7VNqukT3L .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s7VNqukT3L .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s7VNqukT3L ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s7VNqukT3L .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s7VNqukT3L button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s7VNqukT3L button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-s7VNqukT3L button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s7VNqukT3L button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s7VNqukT3L button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s7VNqukT3L button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s7VNqukT3L nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s7VNqukT3L nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s7VNqukT3L nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s7VNqukT3L nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s7VNqukT3L .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-s7VNqukT3L a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s7VNqukT3L .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-s7VNqukT3L .navbar {
    height: 70px;
  }
  .cid-s7VNqukT3L .navbar.opened {
    height: auto;
  }
  .cid-s7VNqukT3L .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s99Liiaukb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-s99Liiaukb .carousel {
  height: 800px;
}
.cid-s99Liiaukb .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-s99Liiaukb .carousel-item,
.cid-s99Liiaukb .carousel-inner {
  height: 100%;
}
.cid-s99Liiaukb .carousel-caption {
  bottom: 40px;
}
.cid-s99Liiaukb .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-s99Liiaukb .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-s99Liiaukb .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-s99Liiaukb .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-s99Liiaukb .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-s99Liiaukb .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-s99Liiaukb .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-s99Liiaukb .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-s99Liiaukb .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s99Liiaukb .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-s99Liiaukb .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-s99Liiaukb .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-s99Liiaukb .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-s99Liiaukb .carousel-indicators li.active,
.cid-s99Liiaukb .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-s99Liiaukb .carousel-indicators li::after,
.cid-s99Liiaukb .carousel-indicators li::before {
  content: none;
}
.cid-s99Liiaukb .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-s99Liiaukb .carousel-indicators {
    display: none !important;
  }
}
.cid-sVZODBh3aI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVZODBh3aI .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sVZODBh3aI .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sVZODBh3aI .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sVZODBh3aI .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sVZODBh3aI .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sVZODBh3aI .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sVZODBh3aI .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sVZOEUPuhp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVZOEUPuhp .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sVZOEUPuhp .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sVZOEUPuhp .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sVZOEUPuhp .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sVZOEUPuhp .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sVZOEUPuhp .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sVZOEUPuhp .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sVZOEUPuhp .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sObeCPNENL {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sObeCPNENL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sObeCPNENL .row {
  flex-direction: row-reverse;
}
.cid-sObeCPNENL img {
  width: 100%;
}
.cid-s7W6PbPSPl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s7W6PbPSPl .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s7W6PbPSPl .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s7W6PbPSPl .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s7W6PbPSPl .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s7W6PbPSPl .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s7W6PbPSPl .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-s7W6PbPSPl .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-s7W6PbPSPl .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-s7W6PbPSPl .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-t5I9foIvTO {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t5I9gJ1VCQ {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t5I9gJ1VCQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t5I9gJ1VCQ .row {
  flex-direction: row-reverse;
}
.cid-t5I9gJ1VCQ img {
  width: 100%;
}
.cid-t9p2duGh12 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t9p2duGh12 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t9p2duGh12 .row {
  flex-direction: row-reverse;
}
.cid-t9p2duGh12 img {
  width: 100%;
}
.cid-s7W8uq6Th2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/pic01-1920x1280.jpg");
}
.cid-s7W8uq6Th2 .mbr-section-title {
  color: #ffffff;
}
#custom-html-16 {
  /* Type valid CSS here */
}
#custom-html-16 div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-16 p {
  font-size: 60px;
  color: #777;
}
.cid-s7W9HPQInL {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-s7W9HPQInL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-s7W9HPQInL .row {
  flex-direction: row-reverse;
}
.cid-s7W9HPQInL img {
  width: 100%;
}
.cid-s7W9VBtpEb {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s7W9VBtpEb .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-s7W9VBtpEb .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-s7W9VBtpEb .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-s7W9VBtpEb .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-s7W9VBtpEb .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
#custom-html-s {
  /* Type valid CSS here */
}
#custom-html-s div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-s p {
  font-size: 60px;
  color: #777;
}
.cid-s7WcpE6gjM {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-s7WcpE6gjM .content {
    text-align: center;
  }
  .cid-s7WcpE6gjM .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-s7WcpE6gjM .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-s7WcpE6gjM .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-s7WcpE6gjM .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-s7WcpE6gjM .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-s7WcpE6gjM .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-s7WcpE6gjM .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-s7WcpE6gjM .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-s7WcpE6gjM .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-s7WcpE6gjM .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-s7WcpE6gjM .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-s7WcpE6gjM .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-s7WcpE6gjM H5 {
  color: #000000;
}
.cid-s7WcpE6gjM P {
  color: #000000;
}
.cid-s7WcpE6gjM .mbr-text {
  font-style: normal;
  font-size: 0.9em;
  line-height: 1.7;
}
.cid-sGsuWL3K8D {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sGsuWL3K8D nav.navbar {
  position: fixed;
}
.cid-sGsuWL3K8D .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-sGsuWL3K8D .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sGsuWL3K8D .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sGsuWL3K8D .dropdown-item:hover,
.cid-sGsuWL3K8D .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sGsuWL3K8D .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sGsuWL3K8D .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sGsuWL3K8D .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sGsuWL3K8D .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sGsuWL3K8D .nav-link {
  position: relative;
}
.cid-sGsuWL3K8D .container {
  display: flex;
  margin: auto;
}
.cid-sGsuWL3K8D .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sGsuWL3K8D .dropdown-menu,
.cid-sGsuWL3K8D .navbar.opened {
  background: #ffffff !important;
}
.cid-sGsuWL3K8D .nav-item:focus,
.cid-sGsuWL3K8D .nav-link:focus {
  outline: none;
}
.cid-sGsuWL3K8D .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sGsuWL3K8D .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sGsuWL3K8D .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-sGsuWL3K8D .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sGsuWL3K8D .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGsuWL3K8D .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGsuWL3K8D .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sGsuWL3K8D .navbar.opened {
  transition: all .3s;
}
.cid-sGsuWL3K8D .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sGsuWL3K8D .navbar .navbar-logo img {
  width: auto;
}
.cid-sGsuWL3K8D .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGsuWL3K8D .navbar.collapsed {
  justify-content: center;
}
.cid-sGsuWL3K8D .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sGsuWL3K8D .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sGsuWL3K8D .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-sGsuWL3K8D .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGsuWL3K8D .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sGsuWL3K8D .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sGsuWL3K8D .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGsuWL3K8D .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sGsuWL3K8D .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sGsuWL3K8D .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sGsuWL3K8D .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGsuWL3K8D .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGsuWL3K8D .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sGsuWL3K8D .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sGsuWL3K8D .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sGsuWL3K8D .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGsuWL3K8D .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sGsuWL3K8D .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sGsuWL3K8D .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sGsuWL3K8D .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sGsuWL3K8D .navbar.navbar-short {
  min-height: 60px;
}
.cid-sGsuWL3K8D .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sGsuWL3K8D .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sGsuWL3K8D .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGsuWL3K8D .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGsuWL3K8D .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGsuWL3K8D .dropdown-item.active,
.cid-sGsuWL3K8D .dropdown-item:active {
  background-color: transparent;
}
.cid-sGsuWL3K8D .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sGsuWL3K8D .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGsuWL3K8D .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGsuWL3K8D .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sGsuWL3K8D .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGsuWL3K8D .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGsuWL3K8D ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sGsuWL3K8D .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sGsuWL3K8D button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sGsuWL3K8D button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sGsuWL3K8D button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sGsuWL3K8D button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sGsuWL3K8D button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sGsuWL3K8D button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sGsuWL3K8D nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGsuWL3K8D nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sGsuWL3K8D nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sGsuWL3K8D nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGsuWL3K8D .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sGsuWL3K8D a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sGsuWL3K8D .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-sGsuWL3K8D .navbar {
    height: 70px;
  }
  .cid-sGsuWL3K8D .navbar.opened {
    height: auto;
  }
  .cid-sGsuWL3K8D .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-1i {
  /* Type valid CSS here */
}
#custom-html-1i div {
  padding: 10px 0;
  color: #777;
  text-align: center;
}
.cid-sGsTZ64sBv {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/157042972-485104999572420-8605281550855223406-o.jpg");
}
.cid-sGsTZ64sBv .mbr-text,
.cid-sGsTZ64sBv .mbr-section-btn {
  color: #232323;
}
.cid-sGsTZ64sBv .card-title,
.cid-sGsTZ64sBv .card-box {
  color: #ffffff;
}
.cid-sGsTZ64sBv .mbr-text,
.cid-sGsTZ64sBv .link-wrap {
  color: #ffffff;
}
.cid-sGsuWNqWxT {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sGsuWNqWxT .content {
    text-align: center;
  }
  .cid-sGsuWNqWxT .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sGsuWNqWxT .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sGsuWNqWxT .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sGsuWNqWxT .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sGsuWNqWxT .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sGsuWNqWxT .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-sGsuWNqWxT .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-sGsuWNqWxT .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sGsuWNqWxT .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sGsuWNqWxT .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sGsuWNqWxT .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sGsuWNqWxT .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sGsuWNqWxT H5 {
  color: #000000;
}
.cid-sGsuWNqWxT P {
  color: #000000;
}
.cid-sGsuWNqWxT .mbr-text {
  font-style: normal;
  font-size: 0.9em;
  line-height: 1.7;
}
.cid-tenxHAw8qr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tenxHAw8qr nav.navbar {
  position: fixed;
}
.cid-tenxHAw8qr .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-tenxHAw8qr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tenxHAw8qr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tenxHAw8qr .dropdown-item:hover,
.cid-tenxHAw8qr .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tenxHAw8qr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tenxHAw8qr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tenxHAw8qr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tenxHAw8qr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tenxHAw8qr .nav-link {
  position: relative;
}
.cid-tenxHAw8qr .container {
  display: flex;
  margin: auto;
}
.cid-tenxHAw8qr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tenxHAw8qr .dropdown-menu,
.cid-tenxHAw8qr .navbar.opened {
  background: #ffffff !important;
}
.cid-tenxHAw8qr .nav-item:focus,
.cid-tenxHAw8qr .nav-link:focus {
  outline: none;
}
.cid-tenxHAw8qr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tenxHAw8qr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tenxHAw8qr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-tenxHAw8qr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tenxHAw8qr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tenxHAw8qr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tenxHAw8qr .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tenxHAw8qr .navbar.opened {
  transition: all .3s;
}
.cid-tenxHAw8qr .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tenxHAw8qr .navbar .navbar-logo img {
  width: auto;
}
.cid-tenxHAw8qr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tenxHAw8qr .navbar.collapsed {
  justify-content: center;
}
.cid-tenxHAw8qr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tenxHAw8qr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tenxHAw8qr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-tenxHAw8qr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tenxHAw8qr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tenxHAw8qr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tenxHAw8qr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tenxHAw8qr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tenxHAw8qr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tenxHAw8qr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tenxHAw8qr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tenxHAw8qr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tenxHAw8qr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tenxHAw8qr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tenxHAw8qr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tenxHAw8qr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tenxHAw8qr .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tenxHAw8qr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tenxHAw8qr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tenxHAw8qr .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tenxHAw8qr .navbar.navbar-short {
  min-height: 60px;
}
.cid-tenxHAw8qr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tenxHAw8qr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tenxHAw8qr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tenxHAw8qr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tenxHAw8qr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tenxHAw8qr .dropdown-item.active,
.cid-tenxHAw8qr .dropdown-item:active {
  background-color: transparent;
}
.cid-tenxHAw8qr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tenxHAw8qr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tenxHAw8qr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tenxHAw8qr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tenxHAw8qr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tenxHAw8qr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tenxHAw8qr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tenxHAw8qr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tenxHAw8qr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tenxHAw8qr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tenxHAw8qr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tenxHAw8qr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tenxHAw8qr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tenxHAw8qr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tenxHAw8qr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tenxHAw8qr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tenxHAw8qr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tenxHAw8qr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tenxHAw8qr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tenxHAw8qr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tenxHAw8qr .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-tenxHAw8qr .navbar {
    height: 70px;
  }
  .cid-tenxHAw8qr .navbar.opened {
    height: auto;
  }
  .cid-tenxHAw8qr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tenxXEygHY {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tenxXEygHY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tenxXEygHY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tenyrhUgNX {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tenyrhUgNX .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tenObPoQ6D {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/fabio-1-1920x1010.jpg");
}
.cid-teWteKG6gf {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-teWteKG6gf .content {
    text-align: center;
  }
  .cid-teWteKG6gf .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-teWteKG6gf .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-teWteKG6gf .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-teWteKG6gf .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-teWteKG6gf .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-teWteKG6gf .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-teWteKG6gf .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-teWteKG6gf .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-teWteKG6gf .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-teWteKG6gf .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-teWteKG6gf .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-teWteKG6gf .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-teWteKG6gf H5 {
  color: #000000;
}
.cid-teWteKG6gf P {
  color: #000000;
}
.cid-teWteKG6gf .mbr-text {
  font-style: normal;
  font-size: 0.9em;
  line-height: 1.7;
}
.cid-tenJWuGRSL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tenJWuGRSL nav.navbar {
  position: fixed;
}
.cid-tenJWuGRSL .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-tenJWuGRSL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tenJWuGRSL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tenJWuGRSL .dropdown-item:hover,
.cid-tenJWuGRSL .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tenJWuGRSL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tenJWuGRSL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tenJWuGRSL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tenJWuGRSL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tenJWuGRSL .nav-link {
  position: relative;
}
.cid-tenJWuGRSL .container {
  display: flex;
  margin: auto;
}
.cid-tenJWuGRSL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tenJWuGRSL .dropdown-menu,
.cid-tenJWuGRSL .navbar.opened {
  background: #ffffff !important;
}
.cid-tenJWuGRSL .nav-item:focus,
.cid-tenJWuGRSL .nav-link:focus {
  outline: none;
}
.cid-tenJWuGRSL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tenJWuGRSL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tenJWuGRSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-tenJWuGRSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tenJWuGRSL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tenJWuGRSL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tenJWuGRSL .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tenJWuGRSL .navbar.opened {
  transition: all .3s;
}
.cid-tenJWuGRSL .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tenJWuGRSL .navbar .navbar-logo img {
  width: auto;
}
.cid-tenJWuGRSL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tenJWuGRSL .navbar.collapsed {
  justify-content: center;
}
.cid-tenJWuGRSL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tenJWuGRSL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tenJWuGRSL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-tenJWuGRSL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tenJWuGRSL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tenJWuGRSL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tenJWuGRSL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tenJWuGRSL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tenJWuGRSL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tenJWuGRSL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tenJWuGRSL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tenJWuGRSL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tenJWuGRSL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tenJWuGRSL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tenJWuGRSL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tenJWuGRSL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tenJWuGRSL .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tenJWuGRSL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tenJWuGRSL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tenJWuGRSL .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tenJWuGRSL .navbar.navbar-short {
  min-height: 60px;
}
.cid-tenJWuGRSL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tenJWuGRSL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tenJWuGRSL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tenJWuGRSL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tenJWuGRSL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tenJWuGRSL .dropdown-item.active,
.cid-tenJWuGRSL .dropdown-item:active {
  background-color: transparent;
}
.cid-tenJWuGRSL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tenJWuGRSL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tenJWuGRSL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tenJWuGRSL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tenJWuGRSL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tenJWuGRSL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tenJWuGRSL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tenJWuGRSL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tenJWuGRSL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tenJWuGRSL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tenJWuGRSL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tenJWuGRSL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tenJWuGRSL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tenJWuGRSL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tenJWuGRSL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tenJWuGRSL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tenJWuGRSL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tenJWuGRSL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tenJWuGRSL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tenJWuGRSL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tenJWuGRSL .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-tenJWuGRSL .navbar {
    height: 70px;
  }
  .cid-tenJWuGRSL .navbar.opened {
    height: auto;
  }
  .cid-tenJWuGRSL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tenJWvrPew {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tenJWvrPew .mbr-fallback-image.disabled {
  display: none;
}
.cid-tenJWvrPew .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tenMwgZtvz {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tenMwgZtvz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tenMwgZtvz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tenMwgZtvz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tenMwgZtvz .row {
  flex-direction: row-reverse;
}
.cid-tenMwgZtvz img {
  width: 100%;
}
.cid-tenMHAkWY0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tenMHAkWY0 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tenN0D7t8I {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tenN0D7t8I .mbr-text {
  text-align: center;
}
.cid-tenJWvLPWB {
  padding-top: 75px;
  padding-bottom: 135px;
  background-color: #ffffff;
}
.cid-tenJWvLPWB .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tenJWw33gJ {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/157042972-485104999572420-8605281550855223406-o.jpg");
}
.cid-tenJWw33gJ .mbr-text,
.cid-tenJWw33gJ .mbr-section-btn {
  color: #232323;
}
.cid-tenJWw33gJ .card-title,
.cid-tenJWw33gJ .card-box {
  color: #ffffff;
}
.cid-tenJWw33gJ .mbr-text,
.cid-tenJWw33gJ .link-wrap {
  color: #ffffff;
}
.cid-teWtjVD67W {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-teWtjVD67W .content {
    text-align: center;
  }
  .cid-teWtjVD67W .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-teWtjVD67W .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-teWtjVD67W .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-teWtjVD67W .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-teWtjVD67W .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-teWtjVD67W .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-teWtjVD67W .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-teWtjVD67W .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-teWtjVD67W .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-teWtjVD67W .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-teWtjVD67W .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-teWtjVD67W .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-teWtjVD67W H5 {
  color: #000000;
}
.cid-teWtjVD67W P {
  color: #000000;
}
.cid-teWtjVD67W .mbr-text {
  font-style: normal;
  font-size: 0.9em;
  line-height: 1.7;
}
.cid-teWnioHZdd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-teWnioHZdd nav.navbar {
  position: fixed;
}
.cid-teWnioHZdd .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-teWnioHZdd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-teWnioHZdd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-teWnioHZdd .dropdown-item:hover,
.cid-teWnioHZdd .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-teWnioHZdd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-teWnioHZdd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-teWnioHZdd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-teWnioHZdd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-teWnioHZdd .nav-link {
  position: relative;
}
.cid-teWnioHZdd .container {
  display: flex;
  margin: auto;
}
.cid-teWnioHZdd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-teWnioHZdd .dropdown-menu,
.cid-teWnioHZdd .navbar.opened {
  background: #ffffff !important;
}
.cid-teWnioHZdd .nav-item:focus,
.cid-teWnioHZdd .nav-link:focus {
  outline: none;
}
.cid-teWnioHZdd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-teWnioHZdd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-teWnioHZdd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-teWnioHZdd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-teWnioHZdd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-teWnioHZdd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-teWnioHZdd .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-teWnioHZdd .navbar.opened {
  transition: all .3s;
}
.cid-teWnioHZdd .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-teWnioHZdd .navbar .navbar-logo img {
  width: auto;
}
.cid-teWnioHZdd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-teWnioHZdd .navbar.collapsed {
  justify-content: center;
}
.cid-teWnioHZdd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-teWnioHZdd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-teWnioHZdd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-teWnioHZdd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-teWnioHZdd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-teWnioHZdd .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-teWnioHZdd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-teWnioHZdd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-teWnioHZdd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-teWnioHZdd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-teWnioHZdd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-teWnioHZdd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-teWnioHZdd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-teWnioHZdd .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-teWnioHZdd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-teWnioHZdd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-teWnioHZdd .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-teWnioHZdd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-teWnioHZdd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-teWnioHZdd .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-teWnioHZdd .navbar.navbar-short {
  min-height: 60px;
}
.cid-teWnioHZdd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-teWnioHZdd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-teWnioHZdd .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-teWnioHZdd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-teWnioHZdd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-teWnioHZdd .dropdown-item.active,
.cid-teWnioHZdd .dropdown-item:active {
  background-color: transparent;
}
.cid-teWnioHZdd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-teWnioHZdd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-teWnioHZdd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-teWnioHZdd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-teWnioHZdd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-teWnioHZdd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-teWnioHZdd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-teWnioHZdd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-teWnioHZdd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-teWnioHZdd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-teWnioHZdd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-teWnioHZdd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-teWnioHZdd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-teWnioHZdd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-teWnioHZdd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-teWnioHZdd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-teWnioHZdd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-teWnioHZdd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-teWnioHZdd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-teWnioHZdd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-teWnioHZdd .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-teWnioHZdd .navbar {
    height: 70px;
  }
  .cid-teWnioHZdd .navbar.opened {
    height: auto;
  }
  .cid-teWnioHZdd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-teWaMpmDrK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-menu-1080x1920.jpg");
}
.cid-teWaMpmDrK .mbr-fallback-image.disabled {
  display: none;
}
.cid-teWaMpmDrK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-teWaMpmDrK .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-teWaMpmDrK .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #ffffff;
  transition: all 0.3s;
  color: #ffffff;
}
.cid-teWaMpmDrK .social-row .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-teWaMpmDrK .mbr-text,
.cid-teWaMpmDrK .mbr-section-btn,
.cid-teWaMpmDrK .social-row {
  color: #ffffff;
}
.cid-teWaMpmDrK .mbr-section-title {
  color: #ffffff;
}
#custom-html-59 {
  /* Type valid CSS here */
}
#custom-html-59 div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-59 p {
  font-size: 60px;
  color: #777;
}
.cid-teWqJ9D5dn {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-teWqK0Rh1y {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-teWqK0Rh1y .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-teWqK0Rh1y .row {
  flex-direction: row-reverse;
}
.cid-teWqK0Rh1y img {
  width: 100%;
}
.cid-teWqKCFL80 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-teWqKCFL80 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-teWqKCFL80 .row {
  flex-direction: row-reverse;
}
.cid-teWqKCFL80 img {
  width: 100%;
}
.cid-teWp96zS6n {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-teWp96zS6n .content {
    text-align: center;
  }
  .cid-teWp96zS6n .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-teWp96zS6n .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-teWp96zS6n .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-teWp96zS6n .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-teWp96zS6n .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-teWp96zS6n .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-teWp96zS6n .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-teWp96zS6n .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-teWp96zS6n .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-teWp96zS6n .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-teWp96zS6n .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-teWp96zS6n .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-teWp96zS6n H5 {
  color: #000000;
}
.cid-teWp96zS6n P {
  color: #000000;
}
.cid-teWp96zS6n .mbr-text {
  font-style: normal;
  font-size: 0.9em;
  line-height: 1.7;
}
.cid-teW0mJaMsw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-teW0mJaMsw nav.navbar {
  position: fixed;
}
.cid-teW0mJaMsw .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-teW0mJaMsw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-teW0mJaMsw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-teW0mJaMsw .dropdown-item:hover,
.cid-teW0mJaMsw .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-teW0mJaMsw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-teW0mJaMsw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-teW0mJaMsw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-teW0mJaMsw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-teW0mJaMsw .nav-link {
  position: relative;
}
.cid-teW0mJaMsw .container {
  display: flex;
  margin: auto;
}
.cid-teW0mJaMsw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-teW0mJaMsw .dropdown-menu,
.cid-teW0mJaMsw .navbar.opened {
  background: #ffffff !important;
}
.cid-teW0mJaMsw .nav-item:focus,
.cid-teW0mJaMsw .nav-link:focus {
  outline: none;
}
.cid-teW0mJaMsw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-teW0mJaMsw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-teW0mJaMsw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-teW0mJaMsw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-teW0mJaMsw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-teW0mJaMsw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-teW0mJaMsw .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-teW0mJaMsw .navbar.opened {
  transition: all .3s;
}
.cid-teW0mJaMsw .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-teW0mJaMsw .navbar .navbar-logo img {
  width: auto;
}
.cid-teW0mJaMsw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-teW0mJaMsw .navbar.collapsed {
  justify-content: center;
}
.cid-teW0mJaMsw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-teW0mJaMsw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-teW0mJaMsw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-teW0mJaMsw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-teW0mJaMsw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-teW0mJaMsw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-teW0mJaMsw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-teW0mJaMsw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-teW0mJaMsw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-teW0mJaMsw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-teW0mJaMsw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-teW0mJaMsw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-teW0mJaMsw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-teW0mJaMsw .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-teW0mJaMsw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-teW0mJaMsw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-teW0mJaMsw .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-teW0mJaMsw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-teW0mJaMsw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-teW0mJaMsw .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-teW0mJaMsw .navbar.navbar-short {
  min-height: 60px;
}
.cid-teW0mJaMsw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-teW0mJaMsw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-teW0mJaMsw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-teW0mJaMsw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-teW0mJaMsw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-teW0mJaMsw .dropdown-item.active,
.cid-teW0mJaMsw .dropdown-item:active {
  background-color: transparent;
}
.cid-teW0mJaMsw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-teW0mJaMsw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-teW0mJaMsw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-teW0mJaMsw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-teW0mJaMsw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-teW0mJaMsw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-teW0mJaMsw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-teW0mJaMsw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-teW0mJaMsw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-teW0mJaMsw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-teW0mJaMsw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-teW0mJaMsw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-teW0mJaMsw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-teW0mJaMsw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-teW0mJaMsw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-teW0mJaMsw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-teW0mJaMsw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-teW0mJaMsw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-teW0mJaMsw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-teW0mJaMsw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-teW0mJaMsw .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-teW0mJaMsw .navbar {
    height: 70px;
  }
  .cid-teW0mJaMsw .navbar.opened {
    height: auto;
  }
  .cid-teW0mJaMsw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-teW0mKnCMO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-teW0mKnCMO .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-teW0mKnCMO .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-teW0mKnCMO .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-teW0mKnCMO .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-teW0mKnCMO .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-teW0mKnCMO .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-teW0mKnCMO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-teW0mKGNsB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-teW0mKGNsB .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-teW0mKGNsB .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-teW0mKGNsB .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-teW0mKGNsB .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-teW0mKGNsB .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-teW0mKGNsB .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-teW0mKGNsB .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-teW0mKGNsB .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-teW0mNVNu7 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-teW0mNVNu7 .content {
    text-align: center;
  }
  .cid-teW0mNVNu7 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-teW0mNVNu7 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-teW0mNVNu7 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-teW0mNVNu7 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-teW0mNVNu7 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-teW0mNVNu7 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-teW0mNVNu7 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-teW0mNVNu7 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-teW0mNVNu7 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-teW0mNVNu7 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-teW0mNVNu7 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-teW0mNVNu7 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-teW0mNVNu7 H5 {
  color: #000000;
}
.cid-teW0mNVNu7 P {
  color: #000000;
}
.cid-teW0mNVNu7 .mbr-text {
  font-style: normal;
  font-size: 0.9em;
  line-height: 1.7;
}
.cid-teWjJNfn1x {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-teWjJNfn1x nav.navbar {
  position: fixed;
}
.cid-teWjJNfn1x .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-teWjJNfn1x .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-teWjJNfn1x .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-teWjJNfn1x .dropdown-item:hover,
.cid-teWjJNfn1x .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-teWjJNfn1x .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-teWjJNfn1x .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-teWjJNfn1x .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-teWjJNfn1x .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-teWjJNfn1x .nav-link {
  position: relative;
}
.cid-teWjJNfn1x .container {
  display: flex;
  margin: auto;
}
.cid-teWjJNfn1x .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-teWjJNfn1x .dropdown-menu,
.cid-teWjJNfn1x .navbar.opened {
  background: #ffffff !important;
}
.cid-teWjJNfn1x .nav-item:focus,
.cid-teWjJNfn1x .nav-link:focus {
  outline: none;
}
.cid-teWjJNfn1x .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-teWjJNfn1x .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-teWjJNfn1x .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-teWjJNfn1x .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-teWjJNfn1x .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-teWjJNfn1x .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-teWjJNfn1x .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-teWjJNfn1x .navbar.opened {
  transition: all .3s;
}
.cid-teWjJNfn1x .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-teWjJNfn1x .navbar .navbar-logo img {
  width: auto;
}
.cid-teWjJNfn1x .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-teWjJNfn1x .navbar.collapsed {
  justify-content: center;
}
.cid-teWjJNfn1x .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-teWjJNfn1x .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-teWjJNfn1x .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-teWjJNfn1x .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-teWjJNfn1x .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-teWjJNfn1x .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-teWjJNfn1x .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-teWjJNfn1x .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-teWjJNfn1x .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-teWjJNfn1x .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-teWjJNfn1x .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-teWjJNfn1x .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-teWjJNfn1x .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-teWjJNfn1x .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-teWjJNfn1x .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-teWjJNfn1x .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-teWjJNfn1x .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-teWjJNfn1x .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-teWjJNfn1x .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-teWjJNfn1x .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-teWjJNfn1x .navbar.navbar-short {
  min-height: 60px;
}
.cid-teWjJNfn1x .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-teWjJNfn1x .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-teWjJNfn1x .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-teWjJNfn1x .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-teWjJNfn1x .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-teWjJNfn1x .dropdown-item.active,
.cid-teWjJNfn1x .dropdown-item:active {
  background-color: transparent;
}
.cid-teWjJNfn1x .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-teWjJNfn1x .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-teWjJNfn1x .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-teWjJNfn1x .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-teWjJNfn1x .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-teWjJNfn1x .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-teWjJNfn1x ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-teWjJNfn1x .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-teWjJNfn1x button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-teWjJNfn1x button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-teWjJNfn1x button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-teWjJNfn1x button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-teWjJNfn1x button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-teWjJNfn1x button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-teWjJNfn1x nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-teWjJNfn1x nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-teWjJNfn1x nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-teWjJNfn1x nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-teWjJNfn1x .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-teWjJNfn1x a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-teWjJNfn1x .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-teWjJNfn1x .navbar {
    height: 70px;
  }
  .cid-teWjJNfn1x .navbar.opened {
    height: auto;
  }
  .cid-teWjJNfn1x .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-teWjJPcEhQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-teWjJPcEhQ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-teWjJPcEhQ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-teWjJPcEhQ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-teWjJPcEhQ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-teWjJPcEhQ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-teWjJPcEhQ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-teWjJPcEhQ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-teWjJPcEhQ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-teWjJPcEhQ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-teWjJRZyca {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-teWjJRZyca .content {
    text-align: center;
  }
  .cid-teWjJRZyca .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-teWjJRZyca .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-teWjJRZyca .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-teWjJRZyca .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-teWjJRZyca .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-teWjJRZyca .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-teWjJRZyca .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-teWjJRZyca .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-teWjJRZyca .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-teWjJRZyca .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-teWjJRZyca .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-teWjJRZyca .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-teWjJRZyca H5 {
  color: #000000;
}
.cid-teWjJRZyca P {
  color: #000000;
}
.cid-teWjJRZyca .mbr-text {
  font-style: normal;
  font-size: 0.9em;
  line-height: 1.7;
}
.cid-teWsbRCemN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-teWsbRCemN nav.navbar {
  position: fixed;
}
.cid-teWsbRCemN .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-teWsbRCemN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-teWsbRCemN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-teWsbRCemN .dropdown-item:hover,
.cid-teWsbRCemN .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-teWsbRCemN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-teWsbRCemN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-teWsbRCemN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-teWsbRCemN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-teWsbRCemN .nav-link {
  position: relative;
}
.cid-teWsbRCemN .container {
  display: flex;
  margin: auto;
}
.cid-teWsbRCemN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-teWsbRCemN .dropdown-menu,
.cid-teWsbRCemN .navbar.opened {
  background: #ffffff !important;
}
.cid-teWsbRCemN .nav-item:focus,
.cid-teWsbRCemN .nav-link:focus {
  outline: none;
}
.cid-teWsbRCemN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-teWsbRCemN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-teWsbRCemN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-teWsbRCemN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-teWsbRCemN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-teWsbRCemN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-teWsbRCemN .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-teWsbRCemN .navbar.opened {
  transition: all .3s;
}
.cid-teWsbRCemN .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-teWsbRCemN .navbar .navbar-logo img {
  width: auto;
}
.cid-teWsbRCemN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-teWsbRCemN .navbar.collapsed {
  justify-content: center;
}
.cid-teWsbRCemN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-teWsbRCemN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-teWsbRCemN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-teWsbRCemN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-teWsbRCemN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-teWsbRCemN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-teWsbRCemN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-teWsbRCemN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-teWsbRCemN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-teWsbRCemN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-teWsbRCemN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-teWsbRCemN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-teWsbRCemN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-teWsbRCemN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-teWsbRCemN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-teWsbRCemN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-teWsbRCemN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-teWsbRCemN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-teWsbRCemN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-teWsbRCemN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-teWsbRCemN .navbar.navbar-short {
  min-height: 60px;
}
.cid-teWsbRCemN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-teWsbRCemN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-teWsbRCemN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-teWsbRCemN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-teWsbRCemN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-teWsbRCemN .dropdown-item.active,
.cid-teWsbRCemN .dropdown-item:active {
  background-color: transparent;
}
.cid-teWsbRCemN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-teWsbRCemN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-teWsbRCemN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-teWsbRCemN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-teWsbRCemN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-teWsbRCemN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-teWsbRCemN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-teWsbRCemN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-teWsbRCemN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-teWsbRCemN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-teWsbRCemN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-teWsbRCemN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-teWsbRCemN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-teWsbRCemN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-teWsbRCemN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-teWsbRCemN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-teWsbRCemN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-teWsbRCemN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-teWsbRCemN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-teWsbRCemN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-teWsbRCemN .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-teWsbRCemN .navbar {
    height: 70px;
  }
  .cid-teWsbRCemN .navbar.opened {
    height: auto;
  }
  .cid-teWsbRCemN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-teWsbVAPSx {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-teWsbVAPSx .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-teWsbVAPSx .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-teWsbVAPSx .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-teWsbVAPSx .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-teWsbVAPSx .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
#custom-html-4q {
  /* Type valid CSS here */
}
#custom-html-4q div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-4q p {
  font-size: 60px;
  color: #777;
}
.cid-teWsbWiIA8 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-teWsbWiIA8 .content {
    text-align: center;
  }
  .cid-teWsbWiIA8 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-teWsbWiIA8 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-teWsbWiIA8 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-teWsbWiIA8 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-teWsbWiIA8 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-teWsbWiIA8 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-teWsbWiIA8 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-teWsbWiIA8 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-teWsbWiIA8 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-teWsbWiIA8 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-teWsbWiIA8 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-teWsbWiIA8 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-teWsbWiIA8 H5 {
  color: #000000;
}
.cid-teWsbWiIA8 P {
  color: #000000;
}
.cid-teWsbWiIA8 .mbr-text {
  font-style: normal;
  font-size: 0.9em;
  line-height: 1.7;
}
.cid-s9akm1NUIh {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/pic01-1920x1280.jpg");
}
.cid-s9akm1NUIh .mbr-section-title {
  color: #ffffff;
}
#custom-html-17 {
  /* Type valid CSS here */
}
#custom-html-17 div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-17 p {
  font-size: 60px;
  color: #777;
}
.cid-s9aklYVJjh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s9aklYVJjh nav.navbar {
  position: fixed;
}
.cid-s9aklYVJjh .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-s9aklYVJjh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-s9aklYVJjh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s9aklYVJjh .dropdown-item:hover,
.cid-s9aklYVJjh .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-s9aklYVJjh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-s9aklYVJjh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-s9aklYVJjh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s9aklYVJjh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s9aklYVJjh .nav-link {
  position: relative;
}
.cid-s9aklYVJjh .container {
  display: flex;
  margin: auto;
}
.cid-s9aklYVJjh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s9aklYVJjh .dropdown-menu,
.cid-s9aklYVJjh .navbar.opened {
  background: #ffffff !important;
}
.cid-s9aklYVJjh .nav-item:focus,
.cid-s9aklYVJjh .nav-link:focus {
  outline: none;
}
.cid-s9aklYVJjh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s9aklYVJjh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s9aklYVJjh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-s9aklYVJjh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s9aklYVJjh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s9aklYVJjh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s9aklYVJjh .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-s9aklYVJjh .navbar.opened {
  transition: all .3s;
}
.cid-s9aklYVJjh .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s9aklYVJjh .navbar .navbar-logo img {
  width: auto;
}
.cid-s9aklYVJjh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s9aklYVJjh .navbar.collapsed {
  justify-content: center;
}
.cid-s9aklYVJjh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s9aklYVJjh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s9aklYVJjh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-s9aklYVJjh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s9aklYVJjh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s9aklYVJjh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-s9aklYVJjh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s9aklYVJjh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s9aklYVJjh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s9aklYVJjh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s9aklYVJjh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s9aklYVJjh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s9aklYVJjh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s9aklYVJjh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-s9aklYVJjh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-s9aklYVJjh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s9aklYVJjh .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s9aklYVJjh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s9aklYVJjh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s9aklYVJjh .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s9aklYVJjh .navbar.navbar-short {
  min-height: 60px;
}
.cid-s9aklYVJjh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-s9aklYVJjh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-s9aklYVJjh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s9aklYVJjh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s9aklYVJjh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s9aklYVJjh .dropdown-item.active,
.cid-s9aklYVJjh .dropdown-item:active {
  background-color: transparent;
}
.cid-s9aklYVJjh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s9aklYVJjh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s9aklYVJjh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s9aklYVJjh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-s9aklYVJjh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s9aklYVJjh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s9aklYVJjh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s9aklYVJjh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s9aklYVJjh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s9aklYVJjh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-s9aklYVJjh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s9aklYVJjh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s9aklYVJjh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s9aklYVJjh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s9aklYVJjh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9aklYVJjh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s9aklYVJjh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s9aklYVJjh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9aklYVJjh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-s9aklYVJjh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s9aklYVJjh .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-s9aklYVJjh .navbar {
    height: 70px;
  }
  .cid-s9aklYVJjh .navbar.opened {
    height: auto;
  }
  .cid-s9aklYVJjh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t5IagZWKPy {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t5IaiIEuNu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t5IaiIEuNu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t5IaiIEuNu .row {
  flex-direction: row-reverse;
}
.cid-t5IaiIEuNu img {
  width: 100%;
}
.cid-t9p3uVg1p4 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t9p3uVg1p4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t9p3uVg1p4 .row {
  flex-direction: row-reverse;
}
.cid-t9p3uVg1p4 img {
  width: 100%;
}
.cid-s9akm0Booe {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s9akm0Booe .mbr-section-subtitle {
  text-align: left;
}
.cid-sObfkfdqli {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sObfkfdqli .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sObfkfdqli .row {
  flex-direction: row-reverse;
}
.cid-sObfkfdqli img {
  width: 100%;
}
.cid-s9akm0Zcby {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s9akm0Zcby .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s9akm0Zcby .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s9akm0Zcby .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s9akm0Zcby .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s9akm0Zcby .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s9akm0Zcby .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-s9akm0Zcby .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-s9akm0Zcby .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-s9akm0Zcby .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s9akm1u3kn {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-s9akm1u3kn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-s9akm1u3kn .row {
  flex-direction: row-reverse;
}
.cid-s9akm1u3kn img {
  width: 100%;
}
.cid-s9akm27EzI {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s9akm27EzI .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-s9akm27EzI .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-s9akm27EzI .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-s9akm27EzI .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-s9akm27EzI .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
#custom-html-11 {
  /* Type valid CSS here */
}
#custom-html-11 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-11 p {
  font-size: 60px;
  color: #777;
}
.cid-s9akm2M925 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-s9akm2M925 .content {
    text-align: center;
  }
  .cid-s9akm2M925 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-s9akm2M925 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-s9akm2M925 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-s9akm2M925 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-s9akm2M925 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-s9akm2M925 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-s9akm2M925 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-s9akm2M925 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-s9akm2M925 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-s9akm2M925 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-s9akm2M925 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-s9akm2M925 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-s9akm2M925 H5 {
  color: #000000;
}
.cid-s9akm2M925 P {
  color: #000000;
}
.cid-s9akm2M925 .mbr-text {
  font-style: normal;
  font-size: 0.9em;
  line-height: 1.7;
}
.cid-teVMel4Iln {
  background-image: url("../../../assets/images/background-1080x1920.jpg");
}
.cid-teVMel4Iln .mbr-fallback-image.disabled {
  display: none;
}
.cid-teVMel4Iln .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-teVMel4Iln .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-teVMel4Iln .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #ffffff;
  transition: all 0.3s;
  color: #ffffff;
}
.cid-teVMel4Iln .social-row .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-teVMel4Iln .mbr-text,
.cid-teVMel4Iln .mbr-section-btn,
.cid-teVMel4Iln .social-row {
  color: #ffffff;
}
.cid-teWFTYhxuc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-teWFTYhxuc nav.navbar {
  position: fixed;
}
.cid-teWFTYhxuc .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-teWFTYhxuc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-teWFTYhxuc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-teWFTYhxuc .dropdown-item:hover,
.cid-teWFTYhxuc .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-teWFTYhxuc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-teWFTYhxuc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-teWFTYhxuc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-teWFTYhxuc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-teWFTYhxuc .nav-link {
  position: relative;
}
.cid-teWFTYhxuc .container {
  display: flex;
  margin: auto;
}
.cid-teWFTYhxuc .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-teWFTYhxuc .dropdown-menu,
.cid-teWFTYhxuc .navbar.opened {
  background: #ffffff !important;
}
.cid-teWFTYhxuc .nav-item:focus,
.cid-teWFTYhxuc .nav-link:focus {
  outline: none;
}
.cid-teWFTYhxuc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-teWFTYhxuc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-teWFTYhxuc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-teWFTYhxuc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-teWFTYhxuc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-teWFTYhxuc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-teWFTYhxuc .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-teWFTYhxuc .navbar.opened {
  transition: all .3s;
}
.cid-teWFTYhxuc .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-teWFTYhxuc .navbar .navbar-logo img {
  width: auto;
}
.cid-teWFTYhxuc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-teWFTYhxuc .navbar.collapsed {
  justify-content: center;
}
.cid-teWFTYhxuc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-teWFTYhxuc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-teWFTYhxuc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-teWFTYhxuc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-teWFTYhxuc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-teWFTYhxuc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-teWFTYhxuc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-teWFTYhxuc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-teWFTYhxuc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-teWFTYhxuc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-teWFTYhxuc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-teWFTYhxuc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-teWFTYhxuc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-teWFTYhxuc .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-teWFTYhxuc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-teWFTYhxuc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-teWFTYhxuc .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-teWFTYhxuc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-teWFTYhxuc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-teWFTYhxuc .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-teWFTYhxuc .navbar.navbar-short {
  min-height: 60px;
}
.cid-teWFTYhxuc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-teWFTYhxuc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-teWFTYhxuc .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-teWFTYhxuc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-teWFTYhxuc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-teWFTYhxuc .dropdown-item.active,
.cid-teWFTYhxuc .dropdown-item:active {
  background-color: transparent;
}
.cid-teWFTYhxuc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-teWFTYhxuc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-teWFTYhxuc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-teWFTYhxuc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-teWFTYhxuc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-teWFTYhxuc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-teWFTYhxuc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-teWFTYhxuc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-teWFTYhxuc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-teWFTYhxuc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-teWFTYhxuc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-teWFTYhxuc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-teWFTYhxuc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-teWFTYhxuc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-teWFTYhxuc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-teWFTYhxuc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-teWFTYhxuc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-teWFTYhxuc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-teWFTYhxuc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-teWFTYhxuc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-teWFTYhxuc .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-teWFTYhxuc .navbar {
    height: 70px;
  }
  .cid-teWFTYhxuc .navbar.opened {
    height: auto;
  }
  .cid-teWFTYhxuc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-teWFTYPkTQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-teWFTYPkTQ .carousel {
  height: 800px;
}
.cid-teWFTYPkTQ .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-teWFTYPkTQ .carousel-item,
.cid-teWFTYPkTQ .carousel-inner {
  height: 100%;
}
.cid-teWFTYPkTQ .carousel-caption {
  bottom: 40px;
}
.cid-teWFTYPkTQ .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-teWFTYPkTQ .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-teWFTYPkTQ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-teWFTYPkTQ .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-teWFTYPkTQ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-teWFTYPkTQ .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-teWFTYPkTQ .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-teWFTYPkTQ .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-teWFTYPkTQ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-teWFTYPkTQ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-teWFTYPkTQ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-teWFTYPkTQ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-teWFTYPkTQ .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-teWFTYPkTQ .carousel-indicators li.active,
.cid-teWFTYPkTQ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-teWFTYPkTQ .carousel-indicators li::after,
.cid-teWFTYPkTQ .carousel-indicators li::before {
  content: none;
}
.cid-teWFTYPkTQ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-teWFTYPkTQ .carousel-indicators {
    display: none !important;
  }
}
.cid-teWFTZtoE7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-teWFTZtoE7 .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-teWFTZtoE7 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-teWFTZtoE7 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-teWFTZtoE7 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-teWFTZtoE7 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-teWFTZtoE7 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-teWFTZtoE7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-teWFTZMhE3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-teWFTZMhE3 .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-teWFTZMhE3 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-teWFTZMhE3 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-teWFTZMhE3 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-teWFTZMhE3 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-teWFTZMhE3 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-teWFTZMhE3 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-teWFTZMhE3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-teWFU04kUD {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-teWFU04kUD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-teWFU04kUD .row {
  flex-direction: row-reverse;
}
.cid-teWFU04kUD img {
  width: 100%;
}
.cid-teWFU0l9ay {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-teWFU0l9ay .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-teWFU0l9ay .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-teWFU0l9ay .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-teWFU0l9ay .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-teWFU0l9ay .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-teWFU0l9ay .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-teWFU0l9ay .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-teWFU0l9ay .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-teWFU0l9ay .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-teWFU0Mnbi {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-teWFU16hmx {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-teWFU16hmx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-teWFU16hmx .row {
  flex-direction: row-reverse;
}
.cid-teWFU16hmx img {
  width: 100%;
}
.cid-teWFU1pcAN {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-teWFU1pcAN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-teWFU1pcAN .row {
  flex-direction: row-reverse;
}
.cid-teWFU1pcAN img {
  width: 100%;
}
.cid-teWFU1Iy9y {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/pic01-1920x1280.jpg");
}
.cid-teWFU1Iy9y .mbr-section-title {
  color: #ffffff;
}
#custom-html-5k {
  /* Type valid CSS here */
}
#custom-html-5k div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-5k p {
  font-size: 60px;
  color: #777;
}
.cid-teWFU2aWWc {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-teWFU2aWWc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-teWFU2aWWc .row {
  flex-direction: row-reverse;
}
.cid-teWFU2aWWc img {
  width: 100%;
}
.cid-teWFU2vpxa {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-teWFU2vpxa .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-teWFU2vpxa .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-teWFU2vpxa .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-teWFU2vpxa .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-teWFU2vpxa .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
#custom-html-5n {
  /* Type valid CSS here */
}
#custom-html-5n div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-5n p {
  font-size: 60px;
  color: #777;
}
.cid-teWFU3j2SE {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-teWFU3j2SE .content {
    text-align: center;
  }
  .cid-teWFU3j2SE .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-teWFU3j2SE .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-teWFU3j2SE .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-teWFU3j2SE .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-teWFU3j2SE .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-teWFU3j2SE .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-teWFU3j2SE .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-teWFU3j2SE .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-teWFU3j2SE .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-teWFU3j2SE .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-teWFU3j2SE .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-teWFU3j2SE .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-teWFU3j2SE H5 {
  color: #000000;
}
.cid-teWFU3j2SE P {
  color: #000000;
}
.cid-teWFU3j2SE .mbr-text {
  font-style: normal;
  font-size: 0.9em;
  line-height: 1.7;
}
.cid-teWGPsUzwb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-teWGPsUzwb nav.navbar {
  position: fixed;
}
.cid-teWGPsUzwb .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-teWGPsUzwb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-teWGPsUzwb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-teWGPsUzwb .dropdown-item:hover,
.cid-teWGPsUzwb .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-teWGPsUzwb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-teWGPsUzwb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-teWGPsUzwb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-teWGPsUzwb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-teWGPsUzwb .nav-link {
  position: relative;
}
.cid-teWGPsUzwb .container {
  display: flex;
  margin: auto;
}
.cid-teWGPsUzwb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-teWGPsUzwb .dropdown-menu,
.cid-teWGPsUzwb .navbar.opened {
  background: #ffffff !important;
}
.cid-teWGPsUzwb .nav-item:focus,
.cid-teWGPsUzwb .nav-link:focus {
  outline: none;
}
.cid-teWGPsUzwb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-teWGPsUzwb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-teWGPsUzwb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-teWGPsUzwb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-teWGPsUzwb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-teWGPsUzwb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-teWGPsUzwb .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-teWGPsUzwb .navbar.opened {
  transition: all .3s;
}
.cid-teWGPsUzwb .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-teWGPsUzwb .navbar .navbar-logo img {
  width: auto;
}
.cid-teWGPsUzwb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-teWGPsUzwb .navbar.collapsed {
  justify-content: center;
}
.cid-teWGPsUzwb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-teWGPsUzwb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-teWGPsUzwb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-teWGPsUzwb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-teWGPsUzwb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-teWGPsUzwb .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-teWGPsUzwb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-teWGPsUzwb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-teWGPsUzwb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-teWGPsUzwb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-teWGPsUzwb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-teWGPsUzwb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-teWGPsUzwb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-teWGPsUzwb .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-teWGPsUzwb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-teWGPsUzwb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-teWGPsUzwb .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-teWGPsUzwb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-teWGPsUzwb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-teWGPsUzwb .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-teWGPsUzwb .navbar.navbar-short {
  min-height: 60px;
}
.cid-teWGPsUzwb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-teWGPsUzwb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-teWGPsUzwb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-teWGPsUzwb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-teWGPsUzwb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-teWGPsUzwb .dropdown-item.active,
.cid-teWGPsUzwb .dropdown-item:active {
  background-color: transparent;
}
.cid-teWGPsUzwb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-teWGPsUzwb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-teWGPsUzwb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-teWGPsUzwb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-teWGPsUzwb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-teWGPsUzwb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-teWGPsUzwb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-teWGPsUzwb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-teWGPsUzwb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-teWGPsUzwb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-teWGPsUzwb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-teWGPsUzwb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-teWGPsUzwb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-teWGPsUzwb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-teWGPsUzwb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-teWGPsUzwb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-teWGPsUzwb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-teWGPsUzwb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-teWGPsUzwb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-teWGPsUzwb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-teWGPsUzwb .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-teWGPsUzwb .navbar {
    height: 70px;
  }
  .cid-teWGPsUzwb .navbar.opened {
    height: auto;
  }
  .cid-teWGPsUzwb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-teWGPtlrKw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-teWGPtlrKw .carousel {
  height: 800px;
}
.cid-teWGPtlrKw .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-teWGPtlrKw .carousel-item,
.cid-teWGPtlrKw .carousel-inner {
  height: 100%;
}
.cid-teWGPtlrKw .carousel-caption {
  bottom: 40px;
}
.cid-teWGPtlrKw .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-teWGPtlrKw .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-teWGPtlrKw .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-teWGPtlrKw .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-teWGPtlrKw .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-teWGPtlrKw .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-teWGPtlrKw .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-teWGPtlrKw .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-teWGPtlrKw .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-teWGPtlrKw .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-teWGPtlrKw .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-teWGPtlrKw .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-teWGPtlrKw .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-teWGPtlrKw .carousel-indicators li.active,
.cid-teWGPtlrKw .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-teWGPtlrKw .carousel-indicators li::after,
.cid-teWGPtlrKw .carousel-indicators li::before {
  content: none;
}
.cid-teWGPtlrKw .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-teWGPtlrKw .carousel-indicators {
    display: none !important;
  }
}
.cid-teWGPu0gMd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-teWGPu0gMd .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-teWGPu0gMd .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-teWGPu0gMd .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-teWGPu0gMd .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-teWGPu0gMd .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-teWGPu0gMd .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-teWGPu0gMd .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-teWGPukKoj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-teWGPukKoj .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-teWGPukKoj .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-teWGPukKoj .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-teWGPukKoj .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-teWGPukKoj .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-teWGPukKoj .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-teWGPukKoj .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-teWGPukKoj .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-teWGPuDjr7 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-teWGPuDjr7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-teWGPuDjr7 .row {
  flex-direction: row-reverse;
}
.cid-teWGPuDjr7 img {
  width: 100%;
}
.cid-teWGPuU6VH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-teWGPuU6VH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-teWGPuU6VH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-teWGPuU6VH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-teWGPuU6VH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-teWGPuU6VH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-teWGPuU6VH .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-teWGPuU6VH .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-teWGPuU6VH .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-teWGPuU6VH .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-teWGPvi01R {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-teWGPvEh6U {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-teWGPvEh6U .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-teWGPvEh6U .row {
  flex-direction: row-reverse;
}
.cid-teWGPvEh6U img {
  width: 100%;
}
.cid-teWGPvY0Qq {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-teWGPvY0Qq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-teWGPvY0Qq .row {
  flex-direction: row-reverse;
}
.cid-teWGPvY0Qq img {
  width: 100%;
}
.cid-teWGPwh9AY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/pic01-1920x1280.jpg");
}
.cid-teWGPwh9AY .mbr-section-title {
  color: #ffffff;
}
#custom-html-5z {
  /* Type valid CSS here */
}
#custom-html-5z div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-5z p {
  font-size: 60px;
  color: #777;
}
.cid-teWGPwI520 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-teWGPwI520 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-teWGPwI520 .row {
  flex-direction: row-reverse;
}
.cid-teWGPwI520 img {
  width: 100%;
}
.cid-teWGPx244r {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-teWGPx244r .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-teWGPx244r .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-teWGPx244r .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-teWGPx244r .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-teWGPx244r .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
#custom-html-62 {
  /* Type valid CSS here */
}
#custom-html-62 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-62 p {
  font-size: 60px;
  color: #777;
}
.cid-teWGPxQVt6 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-teWGPxQVt6 .content {
    text-align: center;
  }
  .cid-teWGPxQVt6 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-teWGPxQVt6 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-teWGPxQVt6 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-teWGPxQVt6 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-teWGPxQVt6 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-teWGPxQVt6 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-teWGPxQVt6 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-teWGPxQVt6 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-teWGPxQVt6 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-teWGPxQVt6 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-teWGPxQVt6 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-teWGPxQVt6 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-teWGPxQVt6 H5 {
  color: #000000;
}
.cid-teWGPxQVt6 P {
  color: #000000;
}
.cid-teWGPxQVt6 .mbr-text {
  font-style: normal;
  font-size: 0.9em;
  line-height: 1.7;
}
.cid-teWHY87652 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-teWHY87652 nav.navbar {
  position: fixed;
}
.cid-teWHY87652 .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-teWHY87652 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-teWHY87652 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-teWHY87652 .dropdown-item:hover,
.cid-teWHY87652 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-teWHY87652 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-teWHY87652 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-teWHY87652 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-teWHY87652 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-teWHY87652 .nav-link {
  position: relative;
}
.cid-teWHY87652 .container {
  display: flex;
  margin: auto;
}
.cid-teWHY87652 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-teWHY87652 .dropdown-menu,
.cid-teWHY87652 .navbar.opened {
  background: #ffffff !important;
}
.cid-teWHY87652 .nav-item:focus,
.cid-teWHY87652 .nav-link:focus {
  outline: none;
}
.cid-teWHY87652 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-teWHY87652 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-teWHY87652 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-teWHY87652 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-teWHY87652 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-teWHY87652 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-teWHY87652 .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-teWHY87652 .navbar.opened {
  transition: all .3s;
}
.cid-teWHY87652 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-teWHY87652 .navbar .navbar-logo img {
  width: auto;
}
.cid-teWHY87652 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-teWHY87652 .navbar.collapsed {
  justify-content: center;
}
.cid-teWHY87652 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-teWHY87652 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-teWHY87652 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-teWHY87652 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-teWHY87652 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-teWHY87652 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-teWHY87652 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-teWHY87652 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-teWHY87652 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-teWHY87652 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-teWHY87652 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-teWHY87652 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-teWHY87652 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-teWHY87652 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-teWHY87652 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-teWHY87652 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-teWHY87652 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-teWHY87652 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-teWHY87652 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-teWHY87652 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-teWHY87652 .navbar.navbar-short {
  min-height: 60px;
}
.cid-teWHY87652 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-teWHY87652 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-teWHY87652 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-teWHY87652 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-teWHY87652 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-teWHY87652 .dropdown-item.active,
.cid-teWHY87652 .dropdown-item:active {
  background-color: transparent;
}
.cid-teWHY87652 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-teWHY87652 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-teWHY87652 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-teWHY87652 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-teWHY87652 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-teWHY87652 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-teWHY87652 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-teWHY87652 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-teWHY87652 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-teWHY87652 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-teWHY87652 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-teWHY87652 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-teWHY87652 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-teWHY87652 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-teWHY87652 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-teWHY87652 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-teWHY87652 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-teWHY87652 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-teWHY87652 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-teWHY87652 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-teWHY87652 .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-teWHY87652 .navbar {
    height: 70px;
  }
  .cid-teWHY87652 .navbar.opened {
    height: auto;
  }
  .cid-teWHY87652 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-teWHY8sUms {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-teWHY8sUms .carousel {
  height: 800px;
}
.cid-teWHY8sUms .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-teWHY8sUms .carousel-item,
.cid-teWHY8sUms .carousel-inner {
  height: 100%;
}
.cid-teWHY8sUms .carousel-caption {
  bottom: 40px;
}
.cid-teWHY8sUms .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-teWHY8sUms .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-teWHY8sUms .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-teWHY8sUms .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-teWHY8sUms .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-teWHY8sUms .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-teWHY8sUms .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-teWHY8sUms .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-teWHY8sUms .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-teWHY8sUms .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-teWHY8sUms .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-teWHY8sUms .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-teWHY8sUms .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-teWHY8sUms .carousel-indicators li.active,
.cid-teWHY8sUms .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-teWHY8sUms .carousel-indicators li::after,
.cid-teWHY8sUms .carousel-indicators li::before {
  content: none;
}
.cid-teWHY8sUms .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-teWHY8sUms .carousel-indicators {
    display: none !important;
  }
}
.cid-teWHYcDk9C {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-teWHYcDk9C .content {
    text-align: center;
  }
  .cid-teWHYcDk9C .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-teWHYcDk9C .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-teWHYcDk9C .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-teWHYcDk9C .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-teWHYcDk9C .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-teWHYcDk9C .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-teWHYcDk9C .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-teWHYcDk9C .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-teWHYcDk9C .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-teWHYcDk9C .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-teWHYcDk9C .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-teWHYcDk9C .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-teWHYcDk9C H5 {
  color: #000000;
}
.cid-teWHYcDk9C P {
  color: #000000;
}
.cid-teWHYcDk9C .mbr-text {
  font-style: normal;
  font-size: 0.9em;
  line-height: 1.7;
}
