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-tCAShymQWg {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tCAShymQWg nav.navbar {
  position: fixed;
}
.cid-tCAShymQWg .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-tCAShymQWg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCAShymQWg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCAShymQWg .dropdown-item:hover,
.cid-tCAShymQWg .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tCAShymQWg .dropdown-item:hover span {
  color: white;
}
.cid-tCAShymQWg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCAShymQWg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCAShymQWg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCAShymQWg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCAShymQWg .nav-link {
  position: relative;
}
.cid-tCAShymQWg .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tCAShymQWg .container {
    flex-wrap: wrap;
  }
}
.cid-tCAShymQWg .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tCAShymQWg .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tCAShymQWg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCAShymQWg .dropdown-menu,
.cid-tCAShymQWg .navbar.opened {
  background: #000000 !important;
}
.cid-tCAShymQWg .nav-item:focus,
.cid-tCAShymQWg .nav-link:focus {
  outline: none;
}
.cid-tCAShymQWg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCAShymQWg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCAShymQWg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCAShymQWg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCAShymQWg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCAShymQWg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCAShymQWg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tCAShymQWg .navbar.opened {
  transition: all 0.3s;
}
.cid-tCAShymQWg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCAShymQWg .navbar .navbar-logo img {
  width: auto;
}
.cid-tCAShymQWg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCAShymQWg .navbar.collapsed {
  justify-content: center;
}
.cid-tCAShymQWg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCAShymQWg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCAShymQWg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tCAShymQWg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCAShymQWg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCAShymQWg .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-tCAShymQWg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCAShymQWg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCAShymQWg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCAShymQWg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCAShymQWg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCAShymQWg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCAShymQWg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCAShymQWg .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-tCAShymQWg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCAShymQWg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCAShymQWg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCAShymQWg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCAShymQWg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCAShymQWg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tCAShymQWg .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tCAShymQWg .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCAShymQWg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCAShymQWg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCAShymQWg .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCAShymQWg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCAShymQWg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCAShymQWg .dropdown-item.active,
.cid-tCAShymQWg .dropdown-item:active {
  background-color: transparent;
}
.cid-tCAShymQWg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCAShymQWg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCAShymQWg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCAShymQWg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tCAShymQWg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCAShymQWg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCAShymQWg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCAShymQWg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCAShymQWg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCAShymQWg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tCAShymQWg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCAShymQWg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCAShymQWg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCAShymQWg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCAShymQWg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCAShymQWg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCAShymQWg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCAShymQWg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCAShymQWg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCAShymQWg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCAShymQWg .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-tCAShymQWg .navbar {
    height: 70px;
  }
  .cid-tCAShymQWg .navbar.opened {
    height: auto;
  }
  .cid-tCAShymQWg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCAS8s0PPh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tCAS8s0PPh .carousel {
  height: 500px;
}
.cid-tCAS8s0PPh .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tCAS8s0PPh .carousel-item,
.cid-tCAS8s0PPh .carousel-inner {
  height: 100%;
}
.cid-tCAS8s0PPh .carousel-caption {
  bottom: 40px;
}
.cid-tCAS8s0PPh .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tCAS8s0PPh .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tCAS8s0PPh .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tCAS8s0PPh .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tCAS8s0PPh .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tCAS8s0PPh .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tCAS8s0PPh .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tCAS8s0PPh .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-tCAS8s0PPh .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tCAS8s0PPh .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tCAS8s0PPh .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tCAS8s0PPh .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tCAS8s0PPh .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-tCAS8s0PPh .carousel-indicators li.active,
.cid-tCAS8s0PPh .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tCAS8s0PPh .carousel-indicators li::after,
.cid-tCAS8s0PPh .carousel-indicators li::before {
  content: none;
}
.cid-tCAS8s0PPh .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tCAS8s0PPh .carousel-indicators {
    display: none !important;
  }
}
.cid-tCATOkzdj5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tCATOkzdj5 img,
.cid-tCATOkzdj5 .item-img {
  width: 100%;
}
.cid-tCATOkzdj5 .item:focus,
.cid-tCATOkzdj5 span:focus {
  outline: none;
}
.cid-tCATOkzdj5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tCATOkzdj5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tCATOkzdj5 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tCATOkzdj5 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tCATOkzdj5 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tCATOkzdj5 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tCATOkzdj5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tCATOkzdj5 .mbr-section-title {
  color: #232323;
}
.cid-tCATOkzdj5 .mbr-text,
.cid-tCATOkzdj5 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tCATOkzdj5 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tCATOkzdj5 .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tCATOkzdj5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tDei5M0WlZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-tDei5M0WlZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDei5M0WlZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDei5M0WlZ .card-wrapper {
  background: #bbbbbb;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tDei5M0WlZ .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tDei5M0WlZ .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDei5M0WlZ .card-wrapper {
    padding: 4rem;
  }
}
.cid-tDei5M0WlZ .mbr-text,
.cid-tDei5M0WlZ .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tDei5M0WlZ .card-title,
.cid-tDei5M0WlZ .card-box {
  text-align: left;
}
.cid-tDdFMhc34U {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #d6cca3;
}
.cid-tDdFMhc34U .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDdFMhc34U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDdFMhc34U .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tDdFMhc34U .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tDdFMhc34U .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDdFMhc34U .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tDdFMhc34U .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tDdFMhc34U .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tDdFMhc34U .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tDdFMhc34U .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tDdFMhc34U .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDdFMhc34U .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tDe3RCPnYH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-tDe3RCPnYH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDe3RCPnYH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDe3RCPnYH .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-tDe3RCPnYH .mbr-section-title,
.cid-tDe3RCPnYH .mbr-section-subtitle {
  text-align: center;
}
.cid-tDe3RCPnYH .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tDe3RCPnYH .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tDe3RCPnYH .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tDe3RCPnYH .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tDe3RCPnYH .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDe3RCPnYH .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tDe3RCPnYH .cost {
  color: #fafafa;
}
.cid-tDyDsIpQmT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #d6cca3;
}
.cid-tDyDsIpQmT .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tDyDsIpQmT form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tDyDsIpQmT form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tDyDsIpQmT form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tDdQfymZRx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tDdQfymZRx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDdQfymZRx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDdQfymZRx .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tDdQfymZRx .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tDdQfymZRx .row {
    text-align: center;
  }
  .cid-tDdQfymZRx .row > div {
    margin: auto;
  }
  .cid-tDdQfymZRx .social-row {
    justify-content: center;
  }
}
.cid-tDdQfymZRx .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tDdQfymZRx .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tDdQfymZRx .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDdQfymZRx .list {
    margin-bottom: 0rem;
  }
}
.cid-tDdQfymZRx .mbr-text {
  color: #bbbbbb;
}
.cid-tDdQfymZRx .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tDdQfymZRx .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tDdQfymZRx div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tCAShymQWg {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tCAShymQWg nav.navbar {
  position: fixed;
}
.cid-tCAShymQWg .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-tCAShymQWg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCAShymQWg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCAShymQWg .dropdown-item:hover,
.cid-tCAShymQWg .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tCAShymQWg .dropdown-item:hover span {
  color: white;
}
.cid-tCAShymQWg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCAShymQWg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCAShymQWg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCAShymQWg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCAShymQWg .nav-link {
  position: relative;
}
.cid-tCAShymQWg .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tCAShymQWg .container {
    flex-wrap: wrap;
  }
}
.cid-tCAShymQWg .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tCAShymQWg .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tCAShymQWg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCAShymQWg .dropdown-menu,
.cid-tCAShymQWg .navbar.opened {
  background: #000000 !important;
}
.cid-tCAShymQWg .nav-item:focus,
.cid-tCAShymQWg .nav-link:focus {
  outline: none;
}
.cid-tCAShymQWg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCAShymQWg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCAShymQWg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCAShymQWg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCAShymQWg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCAShymQWg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCAShymQWg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tCAShymQWg .navbar.opened {
  transition: all 0.3s;
}
.cid-tCAShymQWg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCAShymQWg .navbar .navbar-logo img {
  width: auto;
}
.cid-tCAShymQWg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCAShymQWg .navbar.collapsed {
  justify-content: center;
}
.cid-tCAShymQWg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCAShymQWg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCAShymQWg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tCAShymQWg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCAShymQWg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCAShymQWg .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-tCAShymQWg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCAShymQWg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCAShymQWg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCAShymQWg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCAShymQWg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCAShymQWg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCAShymQWg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCAShymQWg .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-tCAShymQWg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCAShymQWg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCAShymQWg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCAShymQWg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCAShymQWg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCAShymQWg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tCAShymQWg .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tCAShymQWg .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCAShymQWg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCAShymQWg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCAShymQWg .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCAShymQWg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCAShymQWg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCAShymQWg .dropdown-item.active,
.cid-tCAShymQWg .dropdown-item:active {
  background-color: transparent;
}
.cid-tCAShymQWg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCAShymQWg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCAShymQWg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCAShymQWg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tCAShymQWg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCAShymQWg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCAShymQWg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCAShymQWg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCAShymQWg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCAShymQWg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tCAShymQWg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCAShymQWg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCAShymQWg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCAShymQWg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCAShymQWg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCAShymQWg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCAShymQWg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCAShymQWg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCAShymQWg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCAShymQWg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCAShymQWg .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-tCAShymQWg .navbar {
    height: 70px;
  }
  .cid-tCAShymQWg .navbar.opened {
    height: auto;
  }
  .cid-tCAShymQWg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDefZZPLtw {
  background-image: url("../../../assets/images/09-1900x1267.jpg");
}
.cid-tDefZZPLtw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDefZZPLtw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDefZZPLtw .mbr-section-title {
  text-align: right;
}
.cid-tDefZZPLtw .mbr-text,
.cid-tDefZZPLtw .mbr-section-btn {
  text-align: right;
}
.cid-tDhZnMpmDQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tDhZnMpmDQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDhZnMpmDQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDhZnMpmDQ .card-wrapper {
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tDhZnMpmDQ .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tDhZnMpmDQ .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDhZnMpmDQ .card-wrapper {
    padding: 4rem;
  }
}
.cid-tDhZnMpmDQ .mbr-text,
.cid-tDhZnMpmDQ .mbr-section-btn {
  color: #ffffff;
}
.cid-tDhZnMpmDQ .card-title,
.cid-tDhZnMpmDQ .card-box {
  text-align: left;
}
.cid-tDi6k88kcV {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #d6cca3;
}
.cid-tDi6k88kcV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDi6k88kcV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDi6k88kcV .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tDi6k88kcV .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tDi6k88kcV .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #6592e6;
}
.cid-tDi6k88kcV .panel-body,
.cid-tDi6k88kcV .card-header {
  padding: 1rem 0;
}
.cid-tDi6k88kcV .panel-title-edit {
  color: #000000;
}
.cid-tDi8n4iThc {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #d6cca3;
}
.cid-tDi8n4iThc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDi8n4iThc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDi8n4iThc .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tDi8n4iThc .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tDi8n4iThc .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #6592e6;
}
.cid-tDi8n4iThc .panel-body,
.cid-tDi8n4iThc .card-header {
  padding: 1rem 0;
}
.cid-tDi8n4iThc .panel-title-edit {
  color: #000000;
}
.cid-tDdQfymZRx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tDdQfymZRx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDdQfymZRx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDdQfymZRx .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tDdQfymZRx .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tDdQfymZRx .row {
    text-align: center;
  }
  .cid-tDdQfymZRx .row > div {
    margin: auto;
  }
  .cid-tDdQfymZRx .social-row {
    justify-content: center;
  }
}
.cid-tDdQfymZRx .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tDdQfymZRx .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tDdQfymZRx .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDdQfymZRx .list {
    margin-bottom: 0rem;
  }
}
.cid-tDdQfymZRx .mbr-text {
  color: #bbbbbb;
}
.cid-tDdQfymZRx .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tDdQfymZRx .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tDdQfymZRx div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tCAShymQWg {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tCAShymQWg nav.navbar {
  position: fixed;
}
.cid-tCAShymQWg .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-tCAShymQWg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCAShymQWg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCAShymQWg .dropdown-item:hover,
.cid-tCAShymQWg .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tCAShymQWg .dropdown-item:hover span {
  color: white;
}
.cid-tCAShymQWg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCAShymQWg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCAShymQWg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCAShymQWg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCAShymQWg .nav-link {
  position: relative;
}
.cid-tCAShymQWg .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tCAShymQWg .container {
    flex-wrap: wrap;
  }
}
.cid-tCAShymQWg .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tCAShymQWg .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tCAShymQWg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCAShymQWg .dropdown-menu,
.cid-tCAShymQWg .navbar.opened {
  background: #000000 !important;
}
.cid-tCAShymQWg .nav-item:focus,
.cid-tCAShymQWg .nav-link:focus {
  outline: none;
}
.cid-tCAShymQWg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCAShymQWg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCAShymQWg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCAShymQWg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCAShymQWg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCAShymQWg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCAShymQWg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tCAShymQWg .navbar.opened {
  transition: all 0.3s;
}
.cid-tCAShymQWg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCAShymQWg .navbar .navbar-logo img {
  width: auto;
}
.cid-tCAShymQWg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCAShymQWg .navbar.collapsed {
  justify-content: center;
}
.cid-tCAShymQWg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCAShymQWg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCAShymQWg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tCAShymQWg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCAShymQWg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCAShymQWg .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-tCAShymQWg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCAShymQWg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCAShymQWg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCAShymQWg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCAShymQWg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCAShymQWg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCAShymQWg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCAShymQWg .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-tCAShymQWg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCAShymQWg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCAShymQWg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCAShymQWg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCAShymQWg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCAShymQWg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tCAShymQWg .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tCAShymQWg .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCAShymQWg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCAShymQWg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCAShymQWg .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCAShymQWg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCAShymQWg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCAShymQWg .dropdown-item.active,
.cid-tCAShymQWg .dropdown-item:active {
  background-color: transparent;
}
.cid-tCAShymQWg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCAShymQWg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCAShymQWg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCAShymQWg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tCAShymQWg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCAShymQWg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCAShymQWg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCAShymQWg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCAShymQWg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCAShymQWg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tCAShymQWg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCAShymQWg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCAShymQWg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCAShymQWg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCAShymQWg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCAShymQWg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCAShymQWg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCAShymQWg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCAShymQWg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCAShymQWg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCAShymQWg .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-tCAShymQWg .navbar {
    height: 70px;
  }
  .cid-tCAShymQWg .navbar.opened {
    height: auto;
  }
  .cid-tCAShymQWg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDfZMxfV7r {
  background-image: url("../../../assets/images/1881-3-2000x1098.jpg");
}
.cid-tDfZMxfV7r .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDfZMxfV7r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDfZMxfV7r .mbr-text,
.cid-tDfZMxfV7r .mbr-section-btn {
  color: #ffffff;
}
.cid-tDfZMxfV7r .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tDfZMxfV7r .mbr-section-title {
  color: #ffffff;
}
.cid-tDg7DehyZa {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tDg7DehyZa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDg7DehyZa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDg7DehyZa .content-wrapper {
  background: #000000;
}
@media (max-width: 991px) {
  .cid-tDg7DehyZa .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tDg7DehyZa .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tDg7DehyZa .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDg7DehyZa .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tDg7DehyZa .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tDg7DehyZa .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDg7DehyZa .card-title {
  color: #ffffff;
}
.cid-tDg7DehyZa .mbr-text,
.cid-tDg7DehyZa .mbr-section-btn {
  color: #ffffff;
}
.cid-tDkXn656XT {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
@media (min-width: 992px) {
  .cid-tDkXn656XT .carousel {
    min-height: 500px;
  }
  .cid-tDkXn656XT .carousel img {
    max-height: 500px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tDkXn656XT .carousel {
    min-height: 325px;
  }
  .cid-tDkXn656XT .carousel img {
    max-height: 325px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tDkXn656XT .carousel {
    min-height: 275px;
  }
  .cid-tDkXn656XT .carousel img {
    max-height: 275px;
    object-fit: contain;
  }
  .cid-tDkXn656XT .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tDkXn656XT .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tDkXn656XT .carousel,
.cid-tDkXn656XT .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tDkXn656XT .item-wrapper {
  width: 100%;
}
.cid-tDkXn656XT .carousel-caption {
  bottom: 40px;
}
.cid-tDkXn656XT .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tDkXn656XT .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tDkXn656XT .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tDkXn656XT .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tDkXn656XT .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-tDkXn656XT .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDkXn656XT .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDkXn656XT .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDkXn656XT .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tDkXn656XT .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-tDkXn656XT .carousel-indicators li.active,
.cid-tDkXn656XT .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tDkXn656XT .carousel-indicators li::after,
.cid-tDkXn656XT .carousel-indicators li::before {
  content: none;
}
.cid-tDkXn656XT .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tDkXn656XT .carousel-indicators {
    display: none !important;
  }
}
.cid-tDloOIQHMS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tDloOIQHMS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDloOIQHMS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDloOIQHMS .item {
  padding-bottom: 2rem;
}
.cid-tDloOIQHMS .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tDloOIQHMS .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tDloOIQHMS .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tDloOIQHMS .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tDloOIQHMS .carousel-control,
.cid-tDloOIQHMS .close {
  background: #1b1b1b;
}
.cid-tDloOIQHMS .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tDloOIQHMS .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tDloOIQHMS .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tDloOIQHMS .carousel-control-next span {
  margin-left: 5px;
}
.cid-tDloOIQHMS .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tDloOIQHMS .close::before {
  content: '\e91a';
}
.cid-tDloOIQHMS .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tDloOIQHMS .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tDloOIQHMS .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDloOIQHMS .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDloOIQHMS .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDloOIQHMS .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tDloOIQHMS .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-tDloOIQHMS .carousel-indicators li.active,
.cid-tDloOIQHMS .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tDloOIQHMS .carousel-indicators li::after,
.cid-tDloOIQHMS .carousel-indicators li::before {
  content: none;
}
.cid-tDloOIQHMS .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tDloOIQHMS .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tDloOIQHMS .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tDloOIQHMS .carousel-indicators {
    display: none;
  }
}
.cid-tDloOIQHMS .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tDloOIQHMS .carousel-inner > .active {
  display: block;
}
.cid-tDloOIQHMS .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDloOIQHMS .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDloOIQHMS .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tDloOIQHMS .carousel-control,
  .cid-tDloOIQHMS .carousel-indicators,
  .cid-tDloOIQHMS .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tDloOIQHMS .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tDloOIQHMS .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tDloOIQHMS .carousel-indicators .active,
.cid-tDloOIQHMS .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tDloOIQHMS .carousel-indicators .active {
  background: #fff;
}
.cid-tDloOIQHMS .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tDloOIQHMS .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tDloOIQHMS .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tDloOIQHMS .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tDloOIQHMS .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tDloOIQHMS .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tDloOIQHMS .carousel {
  width: 100%;
}
.cid-tDloOIQHMS .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tDloOIQHMS .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tDloOIQHMS .modal.fade .modal-dialog,
.cid-tDloOIQHMS .modal.in .modal-dialog {
  transform: none;
}
.cid-tDloOIQHMS .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tDloOIQHMS H6 {
  text-align: center;
}
.cid-tDkYMGh7tS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tDkYMGh7tS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDkYMGh7tS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDkYMGh7tS .item {
  padding-bottom: 2rem;
}
.cid-tDkYMGh7tS .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tDkYMGh7tS .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tDkYMGh7tS .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tDkYMGh7tS .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tDkYMGh7tS .carousel-control,
.cid-tDkYMGh7tS .close {
  background: #1b1b1b;
}
.cid-tDkYMGh7tS .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tDkYMGh7tS .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tDkYMGh7tS .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tDkYMGh7tS .carousel-control-next span {
  margin-left: 5px;
}
.cid-tDkYMGh7tS .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tDkYMGh7tS .close::before {
  content: '\e91a';
}
.cid-tDkYMGh7tS .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tDkYMGh7tS .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tDkYMGh7tS .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDkYMGh7tS .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDkYMGh7tS .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDkYMGh7tS .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tDkYMGh7tS .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-tDkYMGh7tS .carousel-indicators li.active,
.cid-tDkYMGh7tS .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tDkYMGh7tS .carousel-indicators li::after,
.cid-tDkYMGh7tS .carousel-indicators li::before {
  content: none;
}
.cid-tDkYMGh7tS .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tDkYMGh7tS .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tDkYMGh7tS .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tDkYMGh7tS .carousel-indicators {
    display: none;
  }
}
.cid-tDkYMGh7tS .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tDkYMGh7tS .carousel-inner > .active {
  display: block;
}
.cid-tDkYMGh7tS .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDkYMGh7tS .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDkYMGh7tS .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tDkYMGh7tS .carousel-control,
  .cid-tDkYMGh7tS .carousel-indicators,
  .cid-tDkYMGh7tS .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tDkYMGh7tS .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tDkYMGh7tS .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tDkYMGh7tS .carousel-indicators .active,
.cid-tDkYMGh7tS .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tDkYMGh7tS .carousel-indicators .active {
  background: #fff;
}
.cid-tDkYMGh7tS .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tDkYMGh7tS .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tDkYMGh7tS .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tDkYMGh7tS .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tDkYMGh7tS .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tDkYMGh7tS .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tDkYMGh7tS .carousel {
  width: 100%;
}
.cid-tDkYMGh7tS .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tDkYMGh7tS .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tDkYMGh7tS .modal.fade .modal-dialog,
.cid-tDkYMGh7tS .modal.in .modal-dialog {
  transform: none;
}
.cid-tDkYMGh7tS .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tDkYMGh7tS H6 {
  text-align: center;
}
.cid-tDlms99M6p {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tDlms99M6p .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDlms99M6p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDlms99M6p .item {
  padding-bottom: 2rem;
}
.cid-tDlms99M6p .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tDlms99M6p .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tDlms99M6p .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tDlms99M6p .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tDlms99M6p .carousel-control,
.cid-tDlms99M6p .close {
  background: #1b1b1b;
}
.cid-tDlms99M6p .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tDlms99M6p .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tDlms99M6p .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tDlms99M6p .carousel-control-next span {
  margin-left: 5px;
}
.cid-tDlms99M6p .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tDlms99M6p .close::before {
  content: '\e91a';
}
.cid-tDlms99M6p .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tDlms99M6p .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tDlms99M6p .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDlms99M6p .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDlms99M6p .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDlms99M6p .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tDlms99M6p .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-tDlms99M6p .carousel-indicators li.active,
.cid-tDlms99M6p .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tDlms99M6p .carousel-indicators li::after,
.cid-tDlms99M6p .carousel-indicators li::before {
  content: none;
}
.cid-tDlms99M6p .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tDlms99M6p .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tDlms99M6p .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tDlms99M6p .carousel-indicators {
    display: none;
  }
}
.cid-tDlms99M6p .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tDlms99M6p .carousel-inner > .active {
  display: block;
}
.cid-tDlms99M6p .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDlms99M6p .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDlms99M6p .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tDlms99M6p .carousel-control,
  .cid-tDlms99M6p .carousel-indicators,
  .cid-tDlms99M6p .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tDlms99M6p .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tDlms99M6p .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tDlms99M6p .carousel-indicators .active,
.cid-tDlms99M6p .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tDlms99M6p .carousel-indicators .active {
  background: #fff;
}
.cid-tDlms99M6p .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tDlms99M6p .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tDlms99M6p .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tDlms99M6p .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tDlms99M6p .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tDlms99M6p .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tDlms99M6p .carousel {
  width: 100%;
}
.cid-tDlms99M6p .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tDlms99M6p .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tDlms99M6p .modal.fade .modal-dialog,
.cid-tDlms99M6p .modal.in .modal-dialog {
  transform: none;
}
.cid-tDlms99M6p .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tDlms99M6p H6 {
  text-align: center;
}
.cid-tDdQfymZRx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tDdQfymZRx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDdQfymZRx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDdQfymZRx .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tDdQfymZRx .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tDdQfymZRx .row {
    text-align: center;
  }
  .cid-tDdQfymZRx .row > div {
    margin: auto;
  }
  .cid-tDdQfymZRx .social-row {
    justify-content: center;
  }
}
.cid-tDdQfymZRx .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tDdQfymZRx .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tDdQfymZRx .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDdQfymZRx .list {
    margin-bottom: 0rem;
  }
}
.cid-tDdQfymZRx .mbr-text {
  color: #bbbbbb;
}
.cid-tDdQfymZRx .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tDdQfymZRx .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tDdQfymZRx div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tDo3d7iZVs {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tDo3d7iZVs nav.navbar {
  position: fixed;
}
.cid-tDo3d7iZVs .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-tDo3d7iZVs .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tDo3d7iZVs .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDo3d7iZVs .dropdown-item:hover,
.cid-tDo3d7iZVs .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tDo3d7iZVs .dropdown-item:hover span {
  color: white;
}
.cid-tDo3d7iZVs .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tDo3d7iZVs .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tDo3d7iZVs .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tDo3d7iZVs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDo3d7iZVs .nav-link {
  position: relative;
}
.cid-tDo3d7iZVs .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tDo3d7iZVs .container {
    flex-wrap: wrap;
  }
}
.cid-tDo3d7iZVs .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tDo3d7iZVs .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tDo3d7iZVs .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDo3d7iZVs .dropdown-menu,
.cid-tDo3d7iZVs .navbar.opened {
  background: #000000 !important;
}
.cid-tDo3d7iZVs .nav-item:focus,
.cid-tDo3d7iZVs .nav-link:focus {
  outline: none;
}
.cid-tDo3d7iZVs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDo3d7iZVs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDo3d7iZVs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDo3d7iZVs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDo3d7iZVs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDo3d7iZVs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDo3d7iZVs .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tDo3d7iZVs .navbar.opened {
  transition: all 0.3s;
}
.cid-tDo3d7iZVs .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDo3d7iZVs .navbar .navbar-logo img {
  width: auto;
}
.cid-tDo3d7iZVs .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDo3d7iZVs .navbar.collapsed {
  justify-content: center;
}
.cid-tDo3d7iZVs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDo3d7iZVs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDo3d7iZVs .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tDo3d7iZVs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDo3d7iZVs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDo3d7iZVs .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-tDo3d7iZVs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDo3d7iZVs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDo3d7iZVs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tDo3d7iZVs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDo3d7iZVs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDo3d7iZVs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDo3d7iZVs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDo3d7iZVs .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-tDo3d7iZVs .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDo3d7iZVs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDo3d7iZVs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDo3d7iZVs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDo3d7iZVs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDo3d7iZVs .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tDo3d7iZVs .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tDo3d7iZVs .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDo3d7iZVs .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDo3d7iZVs .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDo3d7iZVs .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDo3d7iZVs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDo3d7iZVs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDo3d7iZVs .dropdown-item.active,
.cid-tDo3d7iZVs .dropdown-item:active {
  background-color: transparent;
}
.cid-tDo3d7iZVs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDo3d7iZVs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDo3d7iZVs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDo3d7iZVs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tDo3d7iZVs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDo3d7iZVs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDo3d7iZVs ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDo3d7iZVs .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDo3d7iZVs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDo3d7iZVs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tDo3d7iZVs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDo3d7iZVs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDo3d7iZVs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDo3d7iZVs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDo3d7iZVs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDo3d7iZVs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDo3d7iZVs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDo3d7iZVs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDo3d7iZVs .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tDo3d7iZVs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDo3d7iZVs .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-tDo3d7iZVs .navbar {
    height: 70px;
  }
  .cid-tDo3d7iZVs .navbar.opened {
    height: auto;
  }
  .cid-tDo3d7iZVs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDo3d9wvEQ {
  background-image: url("../../../assets/images/c-aa-1885x1125.jpg");
}
.cid-tDo3d9wvEQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo3d9wvEQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDo3d9wvEQ .mbr-text,
.cid-tDo3d9wvEQ .mbr-section-btn {
  color: #ffffff;
}
.cid-tDo3d9wvEQ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tDo3d9wvEQ .mbr-section-title {
  color: #ffffff;
}
.cid-tDo3dbbbCx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tDo3dbbbCx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo3dbbbCx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDo3dbbbCx .content-wrapper {
  background: #000000;
}
@media (max-width: 991px) {
  .cid-tDo3dbbbCx .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tDo3dbbbCx .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tDo3dbbbCx .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDo3dbbbCx .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tDo3dbbbCx .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tDo3dbbbCx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDo3dbbbCx .card-title {
  color: #ffffff;
}
.cid-tDo3dbbbCx .mbr-text,
.cid-tDo3dbbbCx .mbr-section-btn {
  color: #ffffff;
}
.cid-tDo3dcPvoS {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
@media (min-width: 992px) {
  .cid-tDo3dcPvoS .carousel {
    min-height: 500px;
  }
  .cid-tDo3dcPvoS .carousel img {
    max-height: 500px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tDo3dcPvoS .carousel {
    min-height: 325px;
  }
  .cid-tDo3dcPvoS .carousel img {
    max-height: 325px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tDo3dcPvoS .carousel {
    min-height: 275px;
  }
  .cid-tDo3dcPvoS .carousel img {
    max-height: 275px;
    object-fit: contain;
  }
  .cid-tDo3dcPvoS .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tDo3dcPvoS .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tDo3dcPvoS .carousel,
.cid-tDo3dcPvoS .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tDo3dcPvoS .item-wrapper {
  width: 100%;
}
.cid-tDo3dcPvoS .carousel-caption {
  bottom: 40px;
}
.cid-tDo3dcPvoS .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tDo3dcPvoS .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tDo3dcPvoS .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tDo3dcPvoS .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tDo3dcPvoS .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-tDo3dcPvoS .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDo3dcPvoS .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDo3dcPvoS .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDo3dcPvoS .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tDo3dcPvoS .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-tDo3dcPvoS .carousel-indicators li.active,
.cid-tDo3dcPvoS .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tDo3dcPvoS .carousel-indicators li::after,
.cid-tDo3dcPvoS .carousel-indicators li::before {
  content: none;
}
.cid-tDo3dcPvoS .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tDo3dcPvoS .carousel-indicators {
    display: none !important;
  }
}
.cid-tDo3deZgD6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tDo3deZgD6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo3deZgD6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDo3deZgD6 .item {
  padding-bottom: 2rem;
}
.cid-tDo3deZgD6 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tDo3deZgD6 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tDo3deZgD6 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tDo3deZgD6 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tDo3deZgD6 .carousel-control,
.cid-tDo3deZgD6 .close {
  background: #1b1b1b;
}
.cid-tDo3deZgD6 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tDo3deZgD6 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tDo3deZgD6 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tDo3deZgD6 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tDo3deZgD6 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tDo3deZgD6 .close::before {
  content: '\e91a';
}
.cid-tDo3deZgD6 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tDo3deZgD6 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tDo3deZgD6 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDo3deZgD6 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDo3deZgD6 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDo3deZgD6 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tDo3deZgD6 .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-tDo3deZgD6 .carousel-indicators li.active,
.cid-tDo3deZgD6 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tDo3deZgD6 .carousel-indicators li::after,
.cid-tDo3deZgD6 .carousel-indicators li::before {
  content: none;
}
.cid-tDo3deZgD6 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tDo3deZgD6 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tDo3deZgD6 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tDo3deZgD6 .carousel-indicators {
    display: none;
  }
}
.cid-tDo3deZgD6 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tDo3deZgD6 .carousel-inner > .active {
  display: block;
}
.cid-tDo3deZgD6 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDo3deZgD6 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDo3deZgD6 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tDo3deZgD6 .carousel-control,
  .cid-tDo3deZgD6 .carousel-indicators,
  .cid-tDo3deZgD6 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tDo3deZgD6 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tDo3deZgD6 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tDo3deZgD6 .carousel-indicators .active,
.cid-tDo3deZgD6 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tDo3deZgD6 .carousel-indicators .active {
  background: #fff;
}
.cid-tDo3deZgD6 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tDo3deZgD6 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tDo3deZgD6 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tDo3deZgD6 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tDo3deZgD6 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tDo3deZgD6 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tDo3deZgD6 .carousel {
  width: 100%;
}
.cid-tDo3deZgD6 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tDo3deZgD6 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tDo3deZgD6 .modal.fade .modal-dialog,
.cid-tDo3deZgD6 .modal.in .modal-dialog {
  transform: none;
}
.cid-tDo3deZgD6 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tDo3deZgD6 H6 {
  text-align: center;
}
.cid-tDo3dhZQGC {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tDo3dhZQGC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo3dhZQGC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDo3dhZQGC .item {
  padding-bottom: 2rem;
}
.cid-tDo3dhZQGC .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tDo3dhZQGC .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tDo3dhZQGC .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tDo3dhZQGC .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tDo3dhZQGC .carousel-control,
.cid-tDo3dhZQGC .close {
  background: #1b1b1b;
}
.cid-tDo3dhZQGC .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tDo3dhZQGC .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tDo3dhZQGC .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tDo3dhZQGC .carousel-control-next span {
  margin-left: 5px;
}
.cid-tDo3dhZQGC .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tDo3dhZQGC .close::before {
  content: '\e91a';
}
.cid-tDo3dhZQGC .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tDo3dhZQGC .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tDo3dhZQGC .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDo3dhZQGC .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDo3dhZQGC .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDo3dhZQGC .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tDo3dhZQGC .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-tDo3dhZQGC .carousel-indicators li.active,
.cid-tDo3dhZQGC .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tDo3dhZQGC .carousel-indicators li::after,
.cid-tDo3dhZQGC .carousel-indicators li::before {
  content: none;
}
.cid-tDo3dhZQGC .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tDo3dhZQGC .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tDo3dhZQGC .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tDo3dhZQGC .carousel-indicators {
    display: none;
  }
}
.cid-tDo3dhZQGC .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tDo3dhZQGC .carousel-inner > .active {
  display: block;
}
.cid-tDo3dhZQGC .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDo3dhZQGC .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDo3dhZQGC .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tDo3dhZQGC .carousel-control,
  .cid-tDo3dhZQGC .carousel-indicators,
  .cid-tDo3dhZQGC .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tDo3dhZQGC .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tDo3dhZQGC .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tDo3dhZQGC .carousel-indicators .active,
.cid-tDo3dhZQGC .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tDo3dhZQGC .carousel-indicators .active {
  background: #fff;
}
.cid-tDo3dhZQGC .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tDo3dhZQGC .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tDo3dhZQGC .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tDo3dhZQGC .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tDo3dhZQGC .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tDo3dhZQGC .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tDo3dhZQGC .carousel {
  width: 100%;
}
.cid-tDo3dhZQGC .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tDo3dhZQGC .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tDo3dhZQGC .modal.fade .modal-dialog,
.cid-tDo3dhZQGC .modal.in .modal-dialog {
  transform: none;
}
.cid-tDo3dhZQGC .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tDo3dhZQGC H6 {
  text-align: center;
}
.cid-tDo3dkWkeE {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tDo3dkWkeE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo3dkWkeE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDo3dkWkeE .item {
  padding-bottom: 2rem;
}
.cid-tDo3dkWkeE .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tDo3dkWkeE .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tDo3dkWkeE .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tDo3dkWkeE .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tDo3dkWkeE .carousel-control,
.cid-tDo3dkWkeE .close {
  background: #1b1b1b;
}
.cid-tDo3dkWkeE .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tDo3dkWkeE .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tDo3dkWkeE .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tDo3dkWkeE .carousel-control-next span {
  margin-left: 5px;
}
.cid-tDo3dkWkeE .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tDo3dkWkeE .close::before {
  content: '\e91a';
}
.cid-tDo3dkWkeE .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tDo3dkWkeE .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tDo3dkWkeE .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDo3dkWkeE .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDo3dkWkeE .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDo3dkWkeE .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tDo3dkWkeE .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-tDo3dkWkeE .carousel-indicators li.active,
.cid-tDo3dkWkeE .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tDo3dkWkeE .carousel-indicators li::after,
.cid-tDo3dkWkeE .carousel-indicators li::before {
  content: none;
}
.cid-tDo3dkWkeE .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tDo3dkWkeE .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tDo3dkWkeE .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tDo3dkWkeE .carousel-indicators {
    display: none;
  }
}
.cid-tDo3dkWkeE .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tDo3dkWkeE .carousel-inner > .active {
  display: block;
}
.cid-tDo3dkWkeE .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDo3dkWkeE .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDo3dkWkeE .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tDo3dkWkeE .carousel-control,
  .cid-tDo3dkWkeE .carousel-indicators,
  .cid-tDo3dkWkeE .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tDo3dkWkeE .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tDo3dkWkeE .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tDo3dkWkeE .carousel-indicators .active,
.cid-tDo3dkWkeE .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tDo3dkWkeE .carousel-indicators .active {
  background: #fff;
}
.cid-tDo3dkWkeE .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tDo3dkWkeE .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tDo3dkWkeE .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tDo3dkWkeE .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tDo3dkWkeE .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tDo3dkWkeE .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tDo3dkWkeE .carousel {
  width: 100%;
}
.cid-tDo3dkWkeE .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tDo3dkWkeE .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tDo3dkWkeE .modal.fade .modal-dialog,
.cid-tDo3dkWkeE .modal.in .modal-dialog {
  transform: none;
}
.cid-tDo3dkWkeE .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tDo3dkWkeE H6 {
  text-align: center;
}
.cid-tDomnppAoY {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tDomnppAoY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDomnppAoY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDomnppAoY .item {
  padding-bottom: 2rem;
}
.cid-tDomnppAoY .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tDomnppAoY .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tDomnppAoY .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tDomnppAoY .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tDomnppAoY .carousel-control,
.cid-tDomnppAoY .close {
  background: #1b1b1b;
}
.cid-tDomnppAoY .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tDomnppAoY .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tDomnppAoY .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tDomnppAoY .carousel-control-next span {
  margin-left: 5px;
}
.cid-tDomnppAoY .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tDomnppAoY .close::before {
  content: '\e91a';
}
.cid-tDomnppAoY .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tDomnppAoY .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tDomnppAoY .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDomnppAoY .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDomnppAoY .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDomnppAoY .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tDomnppAoY .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-tDomnppAoY .carousel-indicators li.active,
.cid-tDomnppAoY .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tDomnppAoY .carousel-indicators li::after,
.cid-tDomnppAoY .carousel-indicators li::before {
  content: none;
}
.cid-tDomnppAoY .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tDomnppAoY .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tDomnppAoY .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tDomnppAoY .carousel-indicators {
    display: none;
  }
}
.cid-tDomnppAoY .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tDomnppAoY .carousel-inner > .active {
  display: block;
}
.cid-tDomnppAoY .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDomnppAoY .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDomnppAoY .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tDomnppAoY .carousel-control,
  .cid-tDomnppAoY .carousel-indicators,
  .cid-tDomnppAoY .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tDomnppAoY .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tDomnppAoY .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tDomnppAoY .carousel-indicators .active,
.cid-tDomnppAoY .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tDomnppAoY .carousel-indicators .active {
  background: #fff;
}
.cid-tDomnppAoY .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tDomnppAoY .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tDomnppAoY .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tDomnppAoY .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tDomnppAoY .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tDomnppAoY .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tDomnppAoY .carousel {
  width: 100%;
}
.cid-tDomnppAoY .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tDomnppAoY .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tDomnppAoY .modal.fade .modal-dialog,
.cid-tDomnppAoY .modal.in .modal-dialog {
  transform: none;
}
.cid-tDomnppAoY .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tDomnppAoY H6 {
  text-align: center;
}
.cid-tDo3dnNWwj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tDo3dnNWwj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo3dnNWwj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDo3dnNWwj .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tDo3dnNWwj .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tDo3dnNWwj .row {
    text-align: center;
  }
  .cid-tDo3dnNWwj .row > div {
    margin: auto;
  }
  .cid-tDo3dnNWwj .social-row {
    justify-content: center;
  }
}
.cid-tDo3dnNWwj .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tDo3dnNWwj .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tDo3dnNWwj .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDo3dnNWwj .list {
    margin-bottom: 0rem;
  }
}
.cid-tDo3dnNWwj .mbr-text {
  color: #bbbbbb;
}
.cid-tDo3dnNWwj .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tDo3dnNWwj .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tDo3dnNWwj div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tDskLDE3y5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tDskLDE3y5 nav.navbar {
  position: fixed;
}
.cid-tDskLDE3y5 .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-tDskLDE3y5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tDskLDE3y5 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDskLDE3y5 .dropdown-item:hover,
.cid-tDskLDE3y5 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tDskLDE3y5 .dropdown-item:hover span {
  color: white;
}
.cid-tDskLDE3y5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tDskLDE3y5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tDskLDE3y5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tDskLDE3y5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDskLDE3y5 .nav-link {
  position: relative;
}
.cid-tDskLDE3y5 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tDskLDE3y5 .container {
    flex-wrap: wrap;
  }
}
.cid-tDskLDE3y5 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tDskLDE3y5 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tDskLDE3y5 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDskLDE3y5 .dropdown-menu,
.cid-tDskLDE3y5 .navbar.opened {
  background: #000000 !important;
}
.cid-tDskLDE3y5 .nav-item:focus,
.cid-tDskLDE3y5 .nav-link:focus {
  outline: none;
}
.cid-tDskLDE3y5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDskLDE3y5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDskLDE3y5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDskLDE3y5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDskLDE3y5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDskLDE3y5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDskLDE3y5 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tDskLDE3y5 .navbar.opened {
  transition: all 0.3s;
}
.cid-tDskLDE3y5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDskLDE3y5 .navbar .navbar-logo img {
  width: auto;
}
.cid-tDskLDE3y5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDskLDE3y5 .navbar.collapsed {
  justify-content: center;
}
.cid-tDskLDE3y5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDskLDE3y5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDskLDE3y5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tDskLDE3y5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDskLDE3y5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDskLDE3y5 .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-tDskLDE3y5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDskLDE3y5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDskLDE3y5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tDskLDE3y5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDskLDE3y5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDskLDE3y5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDskLDE3y5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDskLDE3y5 .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-tDskLDE3y5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDskLDE3y5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDskLDE3y5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDskLDE3y5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDskLDE3y5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDskLDE3y5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tDskLDE3y5 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tDskLDE3y5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDskLDE3y5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDskLDE3y5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDskLDE3y5 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDskLDE3y5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDskLDE3y5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDskLDE3y5 .dropdown-item.active,
.cid-tDskLDE3y5 .dropdown-item:active {
  background-color: transparent;
}
.cid-tDskLDE3y5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDskLDE3y5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDskLDE3y5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDskLDE3y5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tDskLDE3y5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDskLDE3y5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDskLDE3y5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDskLDE3y5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDskLDE3y5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDskLDE3y5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tDskLDE3y5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDskLDE3y5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDskLDE3y5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDskLDE3y5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDskLDE3y5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDskLDE3y5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDskLDE3y5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDskLDE3y5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDskLDE3y5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tDskLDE3y5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDskLDE3y5 .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-tDskLDE3y5 .navbar {
    height: 70px;
  }
  .cid-tDskLDE3y5 .navbar.opened {
    height: auto;
  }
  .cid-tDskLDE3y5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDswKcUL6P {
  background-image: url("../../../assets/images/-1691x1125.png");
}
.cid-tDswKcUL6P .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDswKcUL6P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDskLIsSsT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tDskLIsSsT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDskLIsSsT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDskLIsSsT .content-wrapper {
  background: #000000;
}
@media (max-width: 991px) {
  .cid-tDskLIsSsT .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tDskLIsSsT .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tDskLIsSsT .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDskLIsSsT .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tDskLIsSsT .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tDskLIsSsT .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDskLIsSsT .card-title {
  color: #ffffff;
}
.cid-tDskLIsSsT .mbr-text,
.cid-tDskLIsSsT .mbr-section-btn {
  color: #ffffff;
}
.cid-tDskLKxxxR {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
@media (min-width: 992px) {
  .cid-tDskLKxxxR .carousel {
    min-height: 500px;
  }
  .cid-tDskLKxxxR .carousel img {
    max-height: 500px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tDskLKxxxR .carousel {
    min-height: 325px;
  }
  .cid-tDskLKxxxR .carousel img {
    max-height: 325px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tDskLKxxxR .carousel {
    min-height: 275px;
  }
  .cid-tDskLKxxxR .carousel img {
    max-height: 275px;
    object-fit: contain;
  }
  .cid-tDskLKxxxR .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tDskLKxxxR .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tDskLKxxxR .carousel,
.cid-tDskLKxxxR .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tDskLKxxxR .item-wrapper {
  width: 100%;
}
.cid-tDskLKxxxR .carousel-caption {
  bottom: 40px;
}
.cid-tDskLKxxxR .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tDskLKxxxR .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tDskLKxxxR .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tDskLKxxxR .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tDskLKxxxR .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-tDskLKxxxR .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDskLKxxxR .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDskLKxxxR .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDskLKxxxR .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tDskLKxxxR .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-tDskLKxxxR .carousel-indicators li.active,
.cid-tDskLKxxxR .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tDskLKxxxR .carousel-indicators li::after,
.cid-tDskLKxxxR .carousel-indicators li::before {
  content: none;
}
.cid-tDskLKxxxR .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tDskLKxxxR .carousel-indicators {
    display: none !important;
  }
}
.cid-tDskLNykiy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tDskLNykiy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDskLNykiy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDskLNykiy .item {
  padding-bottom: 2rem;
}
.cid-tDskLNykiy .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tDskLNykiy .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tDskLNykiy .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tDskLNykiy .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tDskLNykiy .carousel-control,
.cid-tDskLNykiy .close {
  background: #1b1b1b;
}
.cid-tDskLNykiy .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tDskLNykiy .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tDskLNykiy .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tDskLNykiy .carousel-control-next span {
  margin-left: 5px;
}
.cid-tDskLNykiy .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tDskLNykiy .close::before {
  content: '\e91a';
}
.cid-tDskLNykiy .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tDskLNykiy .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tDskLNykiy .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDskLNykiy .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDskLNykiy .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDskLNykiy .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tDskLNykiy .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-tDskLNykiy .carousel-indicators li.active,
.cid-tDskLNykiy .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tDskLNykiy .carousel-indicators li::after,
.cid-tDskLNykiy .carousel-indicators li::before {
  content: none;
}
.cid-tDskLNykiy .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tDskLNykiy .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tDskLNykiy .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tDskLNykiy .carousel-indicators {
    display: none;
  }
}
.cid-tDskLNykiy .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tDskLNykiy .carousel-inner > .active {
  display: block;
}
.cid-tDskLNykiy .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDskLNykiy .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDskLNykiy .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tDskLNykiy .carousel-control,
  .cid-tDskLNykiy .carousel-indicators,
  .cid-tDskLNykiy .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tDskLNykiy .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tDskLNykiy .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tDskLNykiy .carousel-indicators .active,
.cid-tDskLNykiy .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tDskLNykiy .carousel-indicators .active {
  background: #fff;
}
.cid-tDskLNykiy .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tDskLNykiy .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tDskLNykiy .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tDskLNykiy .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tDskLNykiy .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tDskLNykiy .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tDskLNykiy .carousel {
  width: 100%;
}
.cid-tDskLNykiy .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tDskLNykiy .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tDskLNykiy .modal.fade .modal-dialog,
.cid-tDskLNykiy .modal.in .modal-dialog {
  transform: none;
}
.cid-tDskLNykiy .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tDskLNykiy H6 {
  text-align: center;
}
.cid-tDskLQtbtl {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tDskLQtbtl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDskLQtbtl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDskLQtbtl .item {
  padding-bottom: 2rem;
}
.cid-tDskLQtbtl .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tDskLQtbtl .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tDskLQtbtl .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tDskLQtbtl .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tDskLQtbtl .carousel-control,
.cid-tDskLQtbtl .close {
  background: #1b1b1b;
}
.cid-tDskLQtbtl .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tDskLQtbtl .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tDskLQtbtl .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tDskLQtbtl .carousel-control-next span {
  margin-left: 5px;
}
.cid-tDskLQtbtl .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tDskLQtbtl .close::before {
  content: '\e91a';
}
.cid-tDskLQtbtl .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tDskLQtbtl .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tDskLQtbtl .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDskLQtbtl .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDskLQtbtl .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDskLQtbtl .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tDskLQtbtl .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-tDskLQtbtl .carousel-indicators li.active,
.cid-tDskLQtbtl .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tDskLQtbtl .carousel-indicators li::after,
.cid-tDskLQtbtl .carousel-indicators li::before {
  content: none;
}
.cid-tDskLQtbtl .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tDskLQtbtl .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tDskLQtbtl .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tDskLQtbtl .carousel-indicators {
    display: none;
  }
}
.cid-tDskLQtbtl .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tDskLQtbtl .carousel-inner > .active {
  display: block;
}
.cid-tDskLQtbtl .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDskLQtbtl .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDskLQtbtl .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tDskLQtbtl .carousel-control,
  .cid-tDskLQtbtl .carousel-indicators,
  .cid-tDskLQtbtl .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tDskLQtbtl .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tDskLQtbtl .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tDskLQtbtl .carousel-indicators .active,
.cid-tDskLQtbtl .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tDskLQtbtl .carousel-indicators .active {
  background: #fff;
}
.cid-tDskLQtbtl .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tDskLQtbtl .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tDskLQtbtl .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tDskLQtbtl .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tDskLQtbtl .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tDskLQtbtl .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tDskLQtbtl .carousel {
  width: 100%;
}
.cid-tDskLQtbtl .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tDskLQtbtl .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tDskLQtbtl .modal.fade .modal-dialog,
.cid-tDskLQtbtl .modal.in .modal-dialog {
  transform: none;
}
.cid-tDskLQtbtl .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tDskLQtbtl H6 {
  text-align: center;
}
.cid-tDskLTZHVd {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tDskLTZHVd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDskLTZHVd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDskLTZHVd .item {
  padding-bottom: 2rem;
}
.cid-tDskLTZHVd .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tDskLTZHVd .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tDskLTZHVd .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tDskLTZHVd .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tDskLTZHVd .carousel-control,
.cid-tDskLTZHVd .close {
  background: #1b1b1b;
}
.cid-tDskLTZHVd .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tDskLTZHVd .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tDskLTZHVd .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tDskLTZHVd .carousel-control-next span {
  margin-left: 5px;
}
.cid-tDskLTZHVd .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tDskLTZHVd .close::before {
  content: '\e91a';
}
.cid-tDskLTZHVd .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tDskLTZHVd .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tDskLTZHVd .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDskLTZHVd .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDskLTZHVd .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDskLTZHVd .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tDskLTZHVd .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-tDskLTZHVd .carousel-indicators li.active,
.cid-tDskLTZHVd .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tDskLTZHVd .carousel-indicators li::after,
.cid-tDskLTZHVd .carousel-indicators li::before {
  content: none;
}
.cid-tDskLTZHVd .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tDskLTZHVd .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tDskLTZHVd .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tDskLTZHVd .carousel-indicators {
    display: none;
  }
}
.cid-tDskLTZHVd .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tDskLTZHVd .carousel-inner > .active {
  display: block;
}
.cid-tDskLTZHVd .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDskLTZHVd .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDskLTZHVd .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tDskLTZHVd .carousel-control,
  .cid-tDskLTZHVd .carousel-indicators,
  .cid-tDskLTZHVd .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tDskLTZHVd .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tDskLTZHVd .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tDskLTZHVd .carousel-indicators .active,
.cid-tDskLTZHVd .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tDskLTZHVd .carousel-indicators .active {
  background: #fff;
}
.cid-tDskLTZHVd .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tDskLTZHVd .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tDskLTZHVd .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tDskLTZHVd .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tDskLTZHVd .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tDskLTZHVd .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tDskLTZHVd .carousel {
  width: 100%;
}
.cid-tDskLTZHVd .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tDskLTZHVd .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tDskLTZHVd .modal.fade .modal-dialog,
.cid-tDskLTZHVd .modal.in .modal-dialog {
  transform: none;
}
.cid-tDskLTZHVd .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tDskLTZHVd H6 {
  text-align: center;
}
.cid-tDskM0roNq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tDskM0roNq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDskM0roNq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDskM0roNq .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tDskM0roNq .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tDskM0roNq .row {
    text-align: center;
  }
  .cid-tDskM0roNq .row > div {
    margin: auto;
  }
  .cid-tDskM0roNq .social-row {
    justify-content: center;
  }
}
.cid-tDskM0roNq .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tDskM0roNq .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tDskM0roNq .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDskM0roNq .list {
    margin-bottom: 0rem;
  }
}
.cid-tDskM0roNq .mbr-text {
  color: #bbbbbb;
}
.cid-tDskM0roNq .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tDskM0roNq .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tDskM0roNq div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tDsK592gnQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tDsK592gnQ nav.navbar {
  position: fixed;
}
.cid-tDsK592gnQ .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-tDsK592gnQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tDsK592gnQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDsK592gnQ .dropdown-item:hover,
.cid-tDsK592gnQ .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tDsK592gnQ .dropdown-item:hover span {
  color: white;
}
.cid-tDsK592gnQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tDsK592gnQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tDsK592gnQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tDsK592gnQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDsK592gnQ .nav-link {
  position: relative;
}
.cid-tDsK592gnQ .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tDsK592gnQ .container {
    flex-wrap: wrap;
  }
}
.cid-tDsK592gnQ .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tDsK592gnQ .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tDsK592gnQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDsK592gnQ .dropdown-menu,
.cid-tDsK592gnQ .navbar.opened {
  background: #000000 !important;
}
.cid-tDsK592gnQ .nav-item:focus,
.cid-tDsK592gnQ .nav-link:focus {
  outline: none;
}
.cid-tDsK592gnQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDsK592gnQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDsK592gnQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDsK592gnQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDsK592gnQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDsK592gnQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDsK592gnQ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tDsK592gnQ .navbar.opened {
  transition: all 0.3s;
}
.cid-tDsK592gnQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDsK592gnQ .navbar .navbar-logo img {
  width: auto;
}
.cid-tDsK592gnQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDsK592gnQ .navbar.collapsed {
  justify-content: center;
}
.cid-tDsK592gnQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDsK592gnQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDsK592gnQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tDsK592gnQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDsK592gnQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDsK592gnQ .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-tDsK592gnQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDsK592gnQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDsK592gnQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tDsK592gnQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDsK592gnQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDsK592gnQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDsK592gnQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDsK592gnQ .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-tDsK592gnQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDsK592gnQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDsK592gnQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDsK592gnQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDsK592gnQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDsK592gnQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tDsK592gnQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tDsK592gnQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDsK592gnQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDsK592gnQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDsK592gnQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDsK592gnQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDsK592gnQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDsK592gnQ .dropdown-item.active,
.cid-tDsK592gnQ .dropdown-item:active {
  background-color: transparent;
}
.cid-tDsK592gnQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDsK592gnQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDsK592gnQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDsK592gnQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tDsK592gnQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDsK592gnQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDsK592gnQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDsK592gnQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDsK592gnQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDsK592gnQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tDsK592gnQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDsK592gnQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDsK592gnQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDsK592gnQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDsK592gnQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDsK592gnQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDsK592gnQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDsK592gnQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDsK592gnQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tDsK592gnQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDsK592gnQ .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-tDsK592gnQ .navbar {
    height: 70px;
  }
  .cid-tDsK592gnQ .navbar.opened {
    height: auto;
  }
  .cid-tDsK592gnQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDsK5bazXW {
  background-image: url("../../../assets/images/news-1679x1117.jpg");
}
.cid-tDsK5bazXW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDsK5bazXW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDsK5dnrck {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tDsK5dnrck .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDsK5dnrck .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDsK5dnrck .content-wrapper {
  background: #000000;
}
@media (max-width: 991px) {
  .cid-tDsK5dnrck .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tDsK5dnrck .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tDsK5dnrck .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDsK5dnrck .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tDsK5dnrck .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tDsK5dnrck .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDsK5dnrck .card-title {
  color: #ffffff;
}
.cid-tDsK5dnrck .mbr-text,
.cid-tDsK5dnrck .mbr-section-btn {
  color: #ffffff;
}
.cid-tDt0Cq91I2 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tDt0Cq91I2 img,
.cid-tDt0Cq91I2 .item-img {
  height: 100%;
  object-fit: cover;
}
.cid-tDt0Cq91I2 .item:focus,
.cid-tDt0Cq91I2 span:focus {
  outline: none;
}
.cid-tDt0Cq91I2 .item-wrapper {
  position: relative;
}
.cid-tDt0Cq91I2 .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tDt0Cq91I2 .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tDt0Cq91I2 .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tDt0Cq91I2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tDt0Cq91I2 .mbr-section-title {
  color: #232323;
}
.cid-tDt0Cq91I2 .mbr-text,
.cid-tDt0Cq91I2 .mbr-section-btn {
  text-align: center;
}
.cid-tDt0Cq91I2 .item-title {
  text-align: center;
}
.cid-tDt0Cq91I2 .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-tDt0Cq91I2 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tDt0Cq91I2 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tDt0Cq91I2 .embla__button--next,
.cid-tDt0Cq91I2 .embla__button--prev {
  display: flex;
}
.cid-tDt0Cq91I2 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tDt0Cq91I2 .embla__button {
    display: none;
  }
}
.cid-tDt0Cq91I2 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tDt0Cq91I2 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tDt0Cq91I2 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDt0Cq91I2 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDt0Cq91I2 .embla__button {
    top: auto;
  }
}
.cid-tDt0Cq91I2 .embla {
  position: relative;
  width: 100%;
}
.cid-tDt0Cq91I2 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tDt0Cq91I2 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tDt0Cq91I2 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tDt0Cq91I2 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tDsK5hDM6G {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tDsK5hDM6G .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDsK5hDM6G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDsK5hDM6G .item {
  padding-bottom: 2rem;
}
.cid-tDsK5hDM6G .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tDsK5hDM6G .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tDsK5hDM6G .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tDsK5hDM6G .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tDsK5hDM6G .carousel-control,
.cid-tDsK5hDM6G .close {
  background: #1b1b1b;
}
.cid-tDsK5hDM6G .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tDsK5hDM6G .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tDsK5hDM6G .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tDsK5hDM6G .carousel-control-next span {
  margin-left: 5px;
}
.cid-tDsK5hDM6G .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tDsK5hDM6G .close::before {
  content: '\e91a';
}
.cid-tDsK5hDM6G .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tDsK5hDM6G .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tDsK5hDM6G .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDsK5hDM6G .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDsK5hDM6G .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDsK5hDM6G .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tDsK5hDM6G .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-tDsK5hDM6G .carousel-indicators li.active,
.cid-tDsK5hDM6G .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tDsK5hDM6G .carousel-indicators li::after,
.cid-tDsK5hDM6G .carousel-indicators li::before {
  content: none;
}
.cid-tDsK5hDM6G .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tDsK5hDM6G .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tDsK5hDM6G .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tDsK5hDM6G .carousel-indicators {
    display: none;
  }
}
.cid-tDsK5hDM6G .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tDsK5hDM6G .carousel-inner > .active {
  display: block;
}
.cid-tDsK5hDM6G .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDsK5hDM6G .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDsK5hDM6G .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tDsK5hDM6G .carousel-control,
  .cid-tDsK5hDM6G .carousel-indicators,
  .cid-tDsK5hDM6G .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tDsK5hDM6G .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tDsK5hDM6G .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tDsK5hDM6G .carousel-indicators .active,
.cid-tDsK5hDM6G .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tDsK5hDM6G .carousel-indicators .active {
  background: #fff;
}
.cid-tDsK5hDM6G .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tDsK5hDM6G .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tDsK5hDM6G .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tDsK5hDM6G .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tDsK5hDM6G .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tDsK5hDM6G .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tDsK5hDM6G .carousel {
  width: 100%;
}
.cid-tDsK5hDM6G .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tDsK5hDM6G .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tDsK5hDM6G .modal.fade .modal-dialog,
.cid-tDsK5hDM6G .modal.in .modal-dialog {
  transform: none;
}
.cid-tDsK5hDM6G .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tDsK5hDM6G H6 {
  text-align: center;
}
.cid-tDsK5kqJPh {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tDsK5kqJPh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDsK5kqJPh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDsK5kqJPh .item {
  padding-bottom: 2rem;
}
.cid-tDsK5kqJPh .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tDsK5kqJPh .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tDsK5kqJPh .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tDsK5kqJPh .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tDsK5kqJPh .carousel-control,
.cid-tDsK5kqJPh .close {
  background: #1b1b1b;
}
.cid-tDsK5kqJPh .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tDsK5kqJPh .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tDsK5kqJPh .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tDsK5kqJPh .carousel-control-next span {
  margin-left: 5px;
}
.cid-tDsK5kqJPh .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tDsK5kqJPh .close::before {
  content: '\e91a';
}
.cid-tDsK5kqJPh .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tDsK5kqJPh .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tDsK5kqJPh .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDsK5kqJPh .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDsK5kqJPh .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDsK5kqJPh .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tDsK5kqJPh .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-tDsK5kqJPh .carousel-indicators li.active,
.cid-tDsK5kqJPh .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tDsK5kqJPh .carousel-indicators li::after,
.cid-tDsK5kqJPh .carousel-indicators li::before {
  content: none;
}
.cid-tDsK5kqJPh .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tDsK5kqJPh .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tDsK5kqJPh .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tDsK5kqJPh .carousel-indicators {
    display: none;
  }
}
.cid-tDsK5kqJPh .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tDsK5kqJPh .carousel-inner > .active {
  display: block;
}
.cid-tDsK5kqJPh .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDsK5kqJPh .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDsK5kqJPh .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tDsK5kqJPh .carousel-control,
  .cid-tDsK5kqJPh .carousel-indicators,
  .cid-tDsK5kqJPh .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tDsK5kqJPh .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tDsK5kqJPh .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tDsK5kqJPh .carousel-indicators .active,
.cid-tDsK5kqJPh .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tDsK5kqJPh .carousel-indicators .active {
  background: #fff;
}
.cid-tDsK5kqJPh .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tDsK5kqJPh .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tDsK5kqJPh .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tDsK5kqJPh .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tDsK5kqJPh .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tDsK5kqJPh .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tDsK5kqJPh .carousel {
  width: 100%;
}
.cid-tDsK5kqJPh .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tDsK5kqJPh .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tDsK5kqJPh .modal.fade .modal-dialog,
.cid-tDsK5kqJPh .modal.in .modal-dialog {
  transform: none;
}
.cid-tDsK5kqJPh .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tDsK5kqJPh H6 {
  text-align: center;
}
.cid-tDsK5nqnOM {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tDsK5nqnOM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDsK5nqnOM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDsK5nqnOM .item {
  padding-bottom: 2rem;
}
.cid-tDsK5nqnOM .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tDsK5nqnOM .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tDsK5nqnOM .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tDsK5nqnOM .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tDsK5nqnOM .carousel-control,
.cid-tDsK5nqnOM .close {
  background: #1b1b1b;
}
.cid-tDsK5nqnOM .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tDsK5nqnOM .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tDsK5nqnOM .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tDsK5nqnOM .carousel-control-next span {
  margin-left: 5px;
}
.cid-tDsK5nqnOM .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tDsK5nqnOM .close::before {
  content: '\e91a';
}
.cid-tDsK5nqnOM .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tDsK5nqnOM .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tDsK5nqnOM .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDsK5nqnOM .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDsK5nqnOM .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDsK5nqnOM .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tDsK5nqnOM .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-tDsK5nqnOM .carousel-indicators li.active,
.cid-tDsK5nqnOM .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tDsK5nqnOM .carousel-indicators li::after,
.cid-tDsK5nqnOM .carousel-indicators li::before {
  content: none;
}
.cid-tDsK5nqnOM .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tDsK5nqnOM .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tDsK5nqnOM .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tDsK5nqnOM .carousel-indicators {
    display: none;
  }
}
.cid-tDsK5nqnOM .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tDsK5nqnOM .carousel-inner > .active {
  display: block;
}
.cid-tDsK5nqnOM .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDsK5nqnOM .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDsK5nqnOM .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tDsK5nqnOM .carousel-control,
  .cid-tDsK5nqnOM .carousel-indicators,
  .cid-tDsK5nqnOM .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tDsK5nqnOM .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tDsK5nqnOM .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tDsK5nqnOM .carousel-indicators .active,
.cid-tDsK5nqnOM .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tDsK5nqnOM .carousel-indicators .active {
  background: #fff;
}
.cid-tDsK5nqnOM .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tDsK5nqnOM .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tDsK5nqnOM .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tDsK5nqnOM .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tDsK5nqnOM .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tDsK5nqnOM .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tDsK5nqnOM .carousel {
  width: 100%;
}
.cid-tDsK5nqnOM .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tDsK5nqnOM .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tDsK5nqnOM .modal.fade .modal-dialog,
.cid-tDsK5nqnOM .modal.in .modal-dialog {
  transform: none;
}
.cid-tDsK5nqnOM .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tDsK5nqnOM H6 {
  text-align: center;
}
.cid-tDsK5qmSZf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tDsK5qmSZf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDsK5qmSZf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDsK5qmSZf .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tDsK5qmSZf .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tDsK5qmSZf .row {
    text-align: center;
  }
  .cid-tDsK5qmSZf .row > div {
    margin: auto;
  }
  .cid-tDsK5qmSZf .social-row {
    justify-content: center;
  }
}
.cid-tDsK5qmSZf .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tDsK5qmSZf .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tDsK5qmSZf .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDsK5qmSZf .list {
    margin-bottom: 0rem;
  }
}
.cid-tDsK5qmSZf .mbr-text {
  color: #bbbbbb;
}
.cid-tDsK5qmSZf .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tDsK5qmSZf .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tDsK5qmSZf div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tDtc8C6j6B {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tDtc8C6j6B nav.navbar {
  position: fixed;
}
.cid-tDtc8C6j6B .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-tDtc8C6j6B .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tDtc8C6j6B .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDtc8C6j6B .dropdown-item:hover,
.cid-tDtc8C6j6B .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tDtc8C6j6B .dropdown-item:hover span {
  color: white;
}
.cid-tDtc8C6j6B .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tDtc8C6j6B .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tDtc8C6j6B .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tDtc8C6j6B .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDtc8C6j6B .nav-link {
  position: relative;
}
.cid-tDtc8C6j6B .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tDtc8C6j6B .container {
    flex-wrap: wrap;
  }
}
.cid-tDtc8C6j6B .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tDtc8C6j6B .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tDtc8C6j6B .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDtc8C6j6B .dropdown-menu,
.cid-tDtc8C6j6B .navbar.opened {
  background: #000000 !important;
}
.cid-tDtc8C6j6B .nav-item:focus,
.cid-tDtc8C6j6B .nav-link:focus {
  outline: none;
}
.cid-tDtc8C6j6B .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDtc8C6j6B .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDtc8C6j6B .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDtc8C6j6B .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDtc8C6j6B .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDtc8C6j6B .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDtc8C6j6B .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tDtc8C6j6B .navbar.opened {
  transition: all 0.3s;
}
.cid-tDtc8C6j6B .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDtc8C6j6B .navbar .navbar-logo img {
  width: auto;
}
.cid-tDtc8C6j6B .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDtc8C6j6B .navbar.collapsed {
  justify-content: center;
}
.cid-tDtc8C6j6B .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDtc8C6j6B .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDtc8C6j6B .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tDtc8C6j6B .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDtc8C6j6B .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDtc8C6j6B .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-tDtc8C6j6B .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDtc8C6j6B .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDtc8C6j6B .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tDtc8C6j6B .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDtc8C6j6B .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDtc8C6j6B .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDtc8C6j6B .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDtc8C6j6B .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-tDtc8C6j6B .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDtc8C6j6B .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDtc8C6j6B .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDtc8C6j6B .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDtc8C6j6B .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDtc8C6j6B .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tDtc8C6j6B .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tDtc8C6j6B .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDtc8C6j6B .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDtc8C6j6B .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDtc8C6j6B .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDtc8C6j6B .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDtc8C6j6B .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDtc8C6j6B .dropdown-item.active,
.cid-tDtc8C6j6B .dropdown-item:active {
  background-color: transparent;
}
.cid-tDtc8C6j6B .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDtc8C6j6B .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDtc8C6j6B .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDtc8C6j6B .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tDtc8C6j6B .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDtc8C6j6B .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDtc8C6j6B ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDtc8C6j6B .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDtc8C6j6B button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDtc8C6j6B button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tDtc8C6j6B button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDtc8C6j6B button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDtc8C6j6B button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDtc8C6j6B button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDtc8C6j6B nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDtc8C6j6B nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDtc8C6j6B nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDtc8C6j6B nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDtc8C6j6B .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tDtc8C6j6B a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDtc8C6j6B .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-tDtc8C6j6B .navbar {
    height: 70px;
  }
  .cid-tDtc8C6j6B .navbar.opened {
    height: auto;
  }
  .cid-tDtc8C6j6B .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDtc8DFzjj {
  background-image: url("../../../assets/images/makting-3-1677x1117.jpg");
}
.cid-tDtc8DFzjj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDtc8DFzjj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDtc8DFzjj .mbr-section-title {
  text-align: right;
}
.cid-tDtc8DFzjj .mbr-text,
.cid-tDtc8DFzjj .mbr-section-btn {
  text-align: right;
}
.cid-tDtc8FfDOi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tDtc8FfDOi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDtc8FfDOi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDtc8FfDOi .card-wrapper {
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tDtc8FfDOi .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tDtc8FfDOi .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDtc8FfDOi .card-wrapper {
    padding: 4rem;
  }
}
.cid-tDtc8FfDOi .mbr-text,
.cid-tDtc8FfDOi .mbr-section-btn {
  color: #ffffff;
}
.cid-tDtc8FfDOi .card-title,
.cid-tDtc8FfDOi .card-box {
  text-align: left;
}
.cid-tDtekYhIXi {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tDtekYhIXi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDtekYhIXi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDtekYhIXi .item {
  padding-bottom: 2rem;
}
.cid-tDtekYhIXi .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tDtekYhIXi .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tDtekYhIXi .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tDtekYhIXi .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tDtekYhIXi .carousel-control,
.cid-tDtekYhIXi .close {
  background: #1b1b1b;
}
.cid-tDtekYhIXi .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tDtekYhIXi .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tDtekYhIXi .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tDtekYhIXi .carousel-control-next span {
  margin-left: 5px;
}
.cid-tDtekYhIXi .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tDtekYhIXi .close::before {
  content: '\e91a';
}
.cid-tDtekYhIXi .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tDtekYhIXi .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tDtekYhIXi .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDtekYhIXi .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDtekYhIXi .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDtekYhIXi .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tDtekYhIXi .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-tDtekYhIXi .carousel-indicators li.active,
.cid-tDtekYhIXi .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tDtekYhIXi .carousel-indicators li::after,
.cid-tDtekYhIXi .carousel-indicators li::before {
  content: none;
}
.cid-tDtekYhIXi .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tDtekYhIXi .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tDtekYhIXi .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tDtekYhIXi .carousel-indicators {
    display: none;
  }
}
.cid-tDtekYhIXi .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tDtekYhIXi .carousel-inner > .active {
  display: block;
}
.cid-tDtekYhIXi .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDtekYhIXi .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDtekYhIXi .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tDtekYhIXi .carousel-control,
  .cid-tDtekYhIXi .carousel-indicators,
  .cid-tDtekYhIXi .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tDtekYhIXi .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tDtekYhIXi .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tDtekYhIXi .carousel-indicators .active,
.cid-tDtekYhIXi .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tDtekYhIXi .carousel-indicators .active {
  background: #fff;
}
.cid-tDtekYhIXi .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tDtekYhIXi .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tDtekYhIXi .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tDtekYhIXi .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tDtekYhIXi .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tDtekYhIXi .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tDtekYhIXi .carousel {
  width: 100%;
}
.cid-tDtekYhIXi .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tDtekYhIXi .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tDtekYhIXi .modal.fade .modal-dialog,
.cid-tDtekYhIXi .modal.in .modal-dialog {
  transform: none;
}
.cid-tDtekYhIXi .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tDtekYhIXi H6 {
  text-align: center;
}
.cid-tDB38zkuVk {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tDB38zkuVk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDB38zkuVk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDB38zkuVk .item {
  padding-bottom: 2rem;
}
.cid-tDB38zkuVk .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tDB38zkuVk .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tDB38zkuVk .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tDB38zkuVk .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tDB38zkuVk .carousel-control,
.cid-tDB38zkuVk .close {
  background: #1b1b1b;
}
.cid-tDB38zkuVk .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tDB38zkuVk .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tDB38zkuVk .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tDB38zkuVk .carousel-control-next span {
  margin-left: 5px;
}
.cid-tDB38zkuVk .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tDB38zkuVk .close::before {
  content: '\e91a';
}
.cid-tDB38zkuVk .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tDB38zkuVk .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tDB38zkuVk .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDB38zkuVk .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDB38zkuVk .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDB38zkuVk .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tDB38zkuVk .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-tDB38zkuVk .carousel-indicators li.active,
.cid-tDB38zkuVk .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tDB38zkuVk .carousel-indicators li::after,
.cid-tDB38zkuVk .carousel-indicators li::before {
  content: none;
}
.cid-tDB38zkuVk .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tDB38zkuVk .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tDB38zkuVk .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tDB38zkuVk .carousel-indicators {
    display: none;
  }
}
.cid-tDB38zkuVk .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tDB38zkuVk .carousel-inner > .active {
  display: block;
}
.cid-tDB38zkuVk .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDB38zkuVk .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDB38zkuVk .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tDB38zkuVk .carousel-control,
  .cid-tDB38zkuVk .carousel-indicators,
  .cid-tDB38zkuVk .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tDB38zkuVk .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tDB38zkuVk .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tDB38zkuVk .carousel-indicators .active,
.cid-tDB38zkuVk .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tDB38zkuVk .carousel-indicators .active {
  background: #fff;
}
.cid-tDB38zkuVk .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tDB38zkuVk .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tDB38zkuVk .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tDB38zkuVk .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tDB38zkuVk .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tDB38zkuVk .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tDB38zkuVk .carousel {
  width: 100%;
}
.cid-tDB38zkuVk .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tDB38zkuVk .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tDB38zkuVk .modal.fade .modal-dialog,
.cid-tDB38zkuVk .modal.in .modal-dialog {
  transform: none;
}
.cid-tDB38zkuVk .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tDB38zkuVk H6 {
  text-align: center;
}
.cid-tDAXDRCPsJ {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tDAXDRCPsJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDAXDRCPsJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDAXDRCPsJ .item {
  padding-bottom: 2rem;
}
.cid-tDAXDRCPsJ .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tDAXDRCPsJ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tDAXDRCPsJ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tDAXDRCPsJ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tDAXDRCPsJ .carousel-control,
.cid-tDAXDRCPsJ .close {
  background: #1b1b1b;
}
.cid-tDAXDRCPsJ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tDAXDRCPsJ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tDAXDRCPsJ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tDAXDRCPsJ .carousel-control-next span {
  margin-left: 5px;
}
.cid-tDAXDRCPsJ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tDAXDRCPsJ .close::before {
  content: '\e91a';
}
.cid-tDAXDRCPsJ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tDAXDRCPsJ .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tDAXDRCPsJ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDAXDRCPsJ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDAXDRCPsJ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDAXDRCPsJ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tDAXDRCPsJ .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-tDAXDRCPsJ .carousel-indicators li.active,
.cid-tDAXDRCPsJ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tDAXDRCPsJ .carousel-indicators li::after,
.cid-tDAXDRCPsJ .carousel-indicators li::before {
  content: none;
}
.cid-tDAXDRCPsJ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tDAXDRCPsJ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tDAXDRCPsJ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tDAXDRCPsJ .carousel-indicators {
    display: none;
  }
}
.cid-tDAXDRCPsJ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tDAXDRCPsJ .carousel-inner > .active {
  display: block;
}
.cid-tDAXDRCPsJ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDAXDRCPsJ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDAXDRCPsJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tDAXDRCPsJ .carousel-control,
  .cid-tDAXDRCPsJ .carousel-indicators,
  .cid-tDAXDRCPsJ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tDAXDRCPsJ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tDAXDRCPsJ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tDAXDRCPsJ .carousel-indicators .active,
.cid-tDAXDRCPsJ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tDAXDRCPsJ .carousel-indicators .active {
  background: #fff;
}
.cid-tDAXDRCPsJ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tDAXDRCPsJ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tDAXDRCPsJ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tDAXDRCPsJ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tDAXDRCPsJ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tDAXDRCPsJ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tDAXDRCPsJ .carousel {
  width: 100%;
}
.cid-tDAXDRCPsJ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tDAXDRCPsJ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tDAXDRCPsJ .modal.fade .modal-dialog,
.cid-tDAXDRCPsJ .modal.in .modal-dialog {
  transform: none;
}
.cid-tDAXDRCPsJ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tDAXDRCPsJ H6 {
  text-align: center;
}
.cid-tDtc8K1nd8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tDtc8K1nd8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDtc8K1nd8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDtc8K1nd8 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tDtc8K1nd8 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tDtc8K1nd8 .row {
    text-align: center;
  }
  .cid-tDtc8K1nd8 .row > div {
    margin: auto;
  }
  .cid-tDtc8K1nd8 .social-row {
    justify-content: center;
  }
}
.cid-tDtc8K1nd8 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tDtc8K1nd8 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tDtc8K1nd8 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDtc8K1nd8 .list {
    margin-bottom: 0rem;
  }
}
.cid-tDtc8K1nd8 .mbr-text {
  color: #bbbbbb;
}
.cid-tDtc8K1nd8 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tDtc8K1nd8 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tDtc8K1nd8 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tCAShymQWg {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tCAShymQWg nav.navbar {
  position: fixed;
}
.cid-tCAShymQWg .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-tCAShymQWg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCAShymQWg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCAShymQWg .dropdown-item:hover,
.cid-tCAShymQWg .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tCAShymQWg .dropdown-item:hover span {
  color: white;
}
.cid-tCAShymQWg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCAShymQWg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCAShymQWg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCAShymQWg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCAShymQWg .nav-link {
  position: relative;
}
.cid-tCAShymQWg .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tCAShymQWg .container {
    flex-wrap: wrap;
  }
}
.cid-tCAShymQWg .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tCAShymQWg .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tCAShymQWg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCAShymQWg .dropdown-menu,
.cid-tCAShymQWg .navbar.opened {
  background: #000000 !important;
}
.cid-tCAShymQWg .nav-item:focus,
.cid-tCAShymQWg .nav-link:focus {
  outline: none;
}
.cid-tCAShymQWg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCAShymQWg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCAShymQWg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCAShymQWg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCAShymQWg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCAShymQWg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCAShymQWg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tCAShymQWg .navbar.opened {
  transition: all 0.3s;
}
.cid-tCAShymQWg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCAShymQWg .navbar .navbar-logo img {
  width: auto;
}
.cid-tCAShymQWg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCAShymQWg .navbar.collapsed {
  justify-content: center;
}
.cid-tCAShymQWg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCAShymQWg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCAShymQWg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tCAShymQWg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCAShymQWg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCAShymQWg .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-tCAShymQWg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCAShymQWg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCAShymQWg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCAShymQWg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCAShymQWg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCAShymQWg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCAShymQWg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCAShymQWg .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-tCAShymQWg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCAShymQWg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCAShymQWg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCAShymQWg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCAShymQWg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCAShymQWg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tCAShymQWg .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tCAShymQWg .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCAShymQWg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCAShymQWg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCAShymQWg .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCAShymQWg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCAShymQWg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCAShymQWg .dropdown-item.active,
.cid-tCAShymQWg .dropdown-item:active {
  background-color: transparent;
}
.cid-tCAShymQWg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCAShymQWg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCAShymQWg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCAShymQWg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tCAShymQWg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCAShymQWg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCAShymQWg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCAShymQWg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCAShymQWg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCAShymQWg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tCAShymQWg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCAShymQWg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCAShymQWg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCAShymQWg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCAShymQWg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCAShymQWg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCAShymQWg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCAShymQWg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCAShymQWg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCAShymQWg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCAShymQWg .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-tCAShymQWg .navbar {
    height: 70px;
  }
  .cid-tCAShymQWg .navbar.opened {
    height: auto;
  }
  .cid-tCAShymQWg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDXNIUFFOu {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tDXNIUFFOu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDXNIUFFOu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDXNIUFFOu .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tDXNIUFFOu .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tDXNIUFFOu .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDXNIUFFOu .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tDXNIUFFOu .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tDXNIUFFOu .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tDXNIUFFOu .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tDXNIUFFOu .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tDXNIUFFOu .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDXNIUFFOu .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tDXP8836TI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tDXP8836TI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDXP8836TI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDXP8836TI .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tDXP8836TI .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tDXP8836TI .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDXP8836TI .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tDXP8836TI .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tDXP8836TI .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tDXP8836TI .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tDXP8836TI .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tDXP8836TI .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDXP8836TI .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tDXQhKn9M3 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-tDXQhKn9M3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDXQhKn9M3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDXQhKn9M3 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tDXQhKn9M3 .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tDXQhKn9M3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDXQhKn9M3 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tDXQhKn9M3 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tDXQhKn9M3 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tDXQhKn9M3 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tDXQhKn9M3 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tDXQhKn9M3 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDXQhKn9M3 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tDXQlJpi93 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-tDXQlJpi93 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDXQlJpi93 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDXQlJpi93 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tDXQlJpi93 .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tDXQlJpi93 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDXQlJpi93 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tDXQlJpi93 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tDXQlJpi93 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tDXQlJpi93 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tDXQlJpi93 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tDXQlJpi93 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDXQlJpi93 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tDXQmVedcd {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-tDXQmVedcd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDXQmVedcd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDXQmVedcd .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tDXQmVedcd .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tDXQmVedcd .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDXQmVedcd .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tDXQmVedcd .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tDXQmVedcd .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tDXQmVedcd .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tDXQmVedcd .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tDXQmVedcd .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDXQmVedcd .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tDXQnCxyyy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tDXQnCxyyy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDXQnCxyyy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDXQnCxyyy .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tDXQnCxyyy .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tDXQnCxyyy .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDXQnCxyyy .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tDXQnCxyyy .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tDXQnCxyyy .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tDXQnCxyyy .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tDXQnCxyyy .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tDXQnCxyyy .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDXQnCxyyy .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tDXVfV9gw6 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tDXVfV9gw6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDXVfV9gw6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDXVfV9gw6 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tDXVfV9gw6 .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tDXVfV9gw6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDXVfV9gw6 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tDXVfV9gw6 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tDXVfV9gw6 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tDXVfV9gw6 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tDXVfV9gw6 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tDXVfV9gw6 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDXVfV9gw6 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tDXVgXl60F {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tDXVgXl60F .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDXVgXl60F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDXVgXl60F .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tDXVgXl60F .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tDXVgXl60F .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDXVgXl60F .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tDXVgXl60F .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tDXVgXl60F .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tDXVgXl60F .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tDXVgXl60F .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tDXVgXl60F .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDXVgXl60F .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tDXVhyYpsP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tDXVhyYpsP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDXVhyYpsP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDXVhyYpsP .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tDXVhyYpsP .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tDXVhyYpsP .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDXVhyYpsP .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tDXVhyYpsP .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tDXVhyYpsP .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tDXVhyYpsP .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tDXVhyYpsP .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tDXVhyYpsP .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDXVhyYpsP .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tDXZcl3Dr7 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tDXZcl3Dr7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDXZcl3Dr7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDXZcl3Dr7 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tDXZcl3Dr7 .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tDXZcl3Dr7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDXZcl3Dr7 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tDXZcl3Dr7 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tDXZcl3Dr7 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tDXZcl3Dr7 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tDXZcl3Dr7 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tDXZcl3Dr7 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDXZcl3Dr7 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tDXZdJGmBO {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-tDXZdJGmBO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDXZdJGmBO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDXZdJGmBO .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tDXZdJGmBO .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tDXZdJGmBO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDXZdJGmBO .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tDXZdJGmBO .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tDXZdJGmBO .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tDXZdJGmBO .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tDXZdJGmBO .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tDXZdJGmBO .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDXZdJGmBO .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tDdQfymZRx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tDdQfymZRx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDdQfymZRx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDdQfymZRx .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tDdQfymZRx .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tDdQfymZRx .row {
    text-align: center;
  }
  .cid-tDdQfymZRx .row > div {
    margin: auto;
  }
  .cid-tDdQfymZRx .social-row {
    justify-content: center;
  }
}
.cid-tDdQfymZRx .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tDdQfymZRx .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tDdQfymZRx .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDdQfymZRx .list {
    margin-bottom: 0rem;
  }
}
.cid-tDdQfymZRx .mbr-text {
  color: #bbbbbb;
}
.cid-tDdQfymZRx .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tDdQfymZRx .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tDdQfymZRx div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tCAShymQWg {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tCAShymQWg nav.navbar {
  position: fixed;
}
.cid-tCAShymQWg .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-tCAShymQWg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCAShymQWg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCAShymQWg .dropdown-item:hover,
.cid-tCAShymQWg .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tCAShymQWg .dropdown-item:hover span {
  color: white;
}
.cid-tCAShymQWg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCAShymQWg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCAShymQWg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCAShymQWg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCAShymQWg .nav-link {
  position: relative;
}
.cid-tCAShymQWg .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tCAShymQWg .container {
    flex-wrap: wrap;
  }
}
.cid-tCAShymQWg .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tCAShymQWg .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tCAShymQWg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCAShymQWg .dropdown-menu,
.cid-tCAShymQWg .navbar.opened {
  background: #000000 !important;
}
.cid-tCAShymQWg .nav-item:focus,
.cid-tCAShymQWg .nav-link:focus {
  outline: none;
}
.cid-tCAShymQWg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCAShymQWg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCAShymQWg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCAShymQWg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCAShymQWg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCAShymQWg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCAShymQWg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tCAShymQWg .navbar.opened {
  transition: all 0.3s;
}
.cid-tCAShymQWg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCAShymQWg .navbar .navbar-logo img {
  width: auto;
}
.cid-tCAShymQWg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCAShymQWg .navbar.collapsed {
  justify-content: center;
}
.cid-tCAShymQWg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCAShymQWg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCAShymQWg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tCAShymQWg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCAShymQWg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCAShymQWg .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-tCAShymQWg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCAShymQWg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCAShymQWg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCAShymQWg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCAShymQWg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCAShymQWg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCAShymQWg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCAShymQWg .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-tCAShymQWg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCAShymQWg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCAShymQWg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCAShymQWg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCAShymQWg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCAShymQWg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tCAShymQWg .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tCAShymQWg .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCAShymQWg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCAShymQWg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCAShymQWg .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCAShymQWg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCAShymQWg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCAShymQWg .dropdown-item.active,
.cid-tCAShymQWg .dropdown-item:active {
  background-color: transparent;
}
.cid-tCAShymQWg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCAShymQWg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCAShymQWg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCAShymQWg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tCAShymQWg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCAShymQWg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCAShymQWg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCAShymQWg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCAShymQWg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCAShymQWg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tCAShymQWg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCAShymQWg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCAShymQWg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCAShymQWg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCAShymQWg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCAShymQWg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCAShymQWg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCAShymQWg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCAShymQWg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCAShymQWg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCAShymQWg .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-tCAShymQWg .navbar {
    height: 70px;
  }
  .cid-tCAShymQWg .navbar.opened {
    height: auto;
  }
  .cid-tCAShymQWg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tEvctLTS5j {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tEvctLTS5j img,
.cid-tEvctLTS5j .item-img {
  width: 100%;
}
.cid-tEvctLTS5j .item:focus,
.cid-tEvctLTS5j span:focus {
  outline: none;
}
.cid-tEvctLTS5j .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tEvctLTS5j .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tEvctLTS5j .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tEvctLTS5j .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tEvctLTS5j .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tEvctLTS5j .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tEvctLTS5j .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tEvctLTS5j .mbr-section-title {
  color: #232323;
}
.cid-tEvctLTS5j .mbr-text,
.cid-tEvctLTS5j .mbr-section-btn {
  text-align: left;
}
.cid-tEvctLTS5j .item-title {
  text-align: left;
}
.cid-tEvctLTS5j .item-subtitle {
  text-align: left;
}
.cid-tDdQfymZRx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tDdQfymZRx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDdQfymZRx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDdQfymZRx .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tDdQfymZRx .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tDdQfymZRx .row {
    text-align: center;
  }
  .cid-tDdQfymZRx .row > div {
    margin: auto;
  }
  .cid-tDdQfymZRx .social-row {
    justify-content: center;
  }
}
.cid-tDdQfymZRx .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tDdQfymZRx .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tDdQfymZRx .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDdQfymZRx .list {
    margin-bottom: 0rem;
  }
}
.cid-tDdQfymZRx .mbr-text {
  color: #bbbbbb;
}
.cid-tDdQfymZRx .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tDdQfymZRx .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tDdQfymZRx div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tEumTJQBVl {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tEumTJQBVl nav.navbar {
  position: fixed;
}
.cid-tEumTJQBVl .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-tEumTJQBVl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tEumTJQBVl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tEumTJQBVl .dropdown-item:hover,
.cid-tEumTJQBVl .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tEumTJQBVl .dropdown-item:hover span {
  color: white;
}
.cid-tEumTJQBVl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tEumTJQBVl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tEumTJQBVl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tEumTJQBVl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tEumTJQBVl .nav-link {
  position: relative;
}
.cid-tEumTJQBVl .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tEumTJQBVl .container {
    flex-wrap: wrap;
  }
}
.cid-tEumTJQBVl .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tEumTJQBVl .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tEumTJQBVl .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tEumTJQBVl .dropdown-menu,
.cid-tEumTJQBVl .navbar.opened {
  background: #000000 !important;
}
.cid-tEumTJQBVl .nav-item:focus,
.cid-tEumTJQBVl .nav-link:focus {
  outline: none;
}
.cid-tEumTJQBVl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tEumTJQBVl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tEumTJQBVl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tEumTJQBVl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tEumTJQBVl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tEumTJQBVl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tEumTJQBVl .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tEumTJQBVl .navbar.opened {
  transition: all 0.3s;
}
.cid-tEumTJQBVl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tEumTJQBVl .navbar .navbar-logo img {
  width: auto;
}
.cid-tEumTJQBVl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tEumTJQBVl .navbar.collapsed {
  justify-content: center;
}
.cid-tEumTJQBVl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tEumTJQBVl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tEumTJQBVl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tEumTJQBVl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tEumTJQBVl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tEumTJQBVl .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-tEumTJQBVl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tEumTJQBVl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tEumTJQBVl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tEumTJQBVl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tEumTJQBVl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tEumTJQBVl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tEumTJQBVl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tEumTJQBVl .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-tEumTJQBVl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tEumTJQBVl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tEumTJQBVl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tEumTJQBVl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tEumTJQBVl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tEumTJQBVl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tEumTJQBVl .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tEumTJQBVl .navbar.navbar-short {
  min-height: 60px;
}
.cid-tEumTJQBVl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tEumTJQBVl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tEumTJQBVl .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tEumTJQBVl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tEumTJQBVl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tEumTJQBVl .dropdown-item.active,
.cid-tEumTJQBVl .dropdown-item:active {
  background-color: transparent;
}
.cid-tEumTJQBVl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tEumTJQBVl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tEumTJQBVl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tEumTJQBVl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tEumTJQBVl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tEumTJQBVl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tEumTJQBVl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tEumTJQBVl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tEumTJQBVl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tEumTJQBVl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tEumTJQBVl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tEumTJQBVl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tEumTJQBVl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tEumTJQBVl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tEumTJQBVl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tEumTJQBVl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tEumTJQBVl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tEumTJQBVl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tEumTJQBVl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tEumTJQBVl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tEumTJQBVl .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-tEumTJQBVl .navbar {
    height: 70px;
  }
  .cid-tEumTJQBVl .navbar.opened {
    height: auto;
  }
  .cid-tEumTJQBVl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tEumU0SuKH {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tEumU0SuKH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEumU0SuKH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEumU0SuKH .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tEumU0SuKH .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tEumU0SuKH .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tEumU0SuKH .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tEumU0SuKH .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tEumU0SuKH .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tEumU0SuKH .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tEumU0SuKH .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tEumU0SuKH .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tEumU0SuKH .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tEumU3Q1sI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tEumU3Q1sI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEumU3Q1sI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEumU3Q1sI .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tEumU3Q1sI .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tEumU3Q1sI .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tEumU3Q1sI .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tEumU3Q1sI .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tEumU3Q1sI .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tEumU3Q1sI .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tEumU3Q1sI .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tEumU3Q1sI .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tEumU3Q1sI .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tEumU6R04a {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tEumU6R04a .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEumU6R04a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEumU6R04a .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tEumU6R04a .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tEumU6R04a .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tEumU6R04a .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tEumU6R04a .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tEumU6R04a .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tEumU6R04a .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tEumU6R04a .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tEumU6R04a .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tEumU6R04a .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tEumU9M9lZ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tEumU9M9lZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEumU9M9lZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEumU9M9lZ .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tEumU9M9lZ .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tEumU9M9lZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tEumU9M9lZ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tEumU9M9lZ .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tEumU9M9lZ .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tEumU9M9lZ .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tEumU9M9lZ .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tEumU9M9lZ .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tEumU9M9lZ .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tEumUcXisU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tEumUcXisU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEumUcXisU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEumUcXisU .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tEumUcXisU .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tEumUcXisU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tEumUcXisU .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tEumUcXisU .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tEumUcXisU .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tEumUcXisU .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tEumUcXisU .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tEumUcXisU .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tEumUcXisU .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tEumUiJwT6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tEumUiJwT6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEumUiJwT6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEumUiJwT6 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tEumUiJwT6 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tEumUiJwT6 .row {
    text-align: center;
  }
  .cid-tEumUiJwT6 .row > div {
    margin: auto;
  }
  .cid-tEumUiJwT6 .social-row {
    justify-content: center;
  }
}
.cid-tEumUiJwT6 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tEumUiJwT6 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tEumUiJwT6 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tEumUiJwT6 .list {
    margin-bottom: 0rem;
  }
}
.cid-tEumUiJwT6 .mbr-text {
  color: #bbbbbb;
}
.cid-tEumUiJwT6 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tEumUiJwT6 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tEumUiJwT6 div > *:last-child {
    margin-top: 0 !important;
  }
}
