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;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-satZmjwkyp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-satZmjwkyp nav.navbar {
  position: fixed;
}
.cid-satZmjwkyp .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-satZmjwkyp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-satZmjwkyp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-satZmjwkyp .dropdown-item:hover,
.cid-satZmjwkyp .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-satZmjwkyp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-satZmjwkyp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-satZmjwkyp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-satZmjwkyp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-satZmjwkyp .nav-link {
  position: relative;
}
.cid-satZmjwkyp .container {
  display: flex;
  margin: auto;
}
.cid-satZmjwkyp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-satZmjwkyp .dropdown-menu,
.cid-satZmjwkyp .navbar.opened {
  background: #ffffff !important;
}
.cid-satZmjwkyp .nav-item:focus,
.cid-satZmjwkyp .nav-link:focus {
  outline: none;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-satZmjwkyp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-satZmjwkyp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-satZmjwkyp .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-satZmjwkyp .navbar.opened {
  transition: all .3s;
}
.cid-satZmjwkyp .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-satZmjwkyp .navbar .navbar-logo img {
  width: auto;
}
.cid-satZmjwkyp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-satZmjwkyp .navbar.collapsed {
  justify-content: center;
}
.cid-satZmjwkyp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-satZmjwkyp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-satZmjwkyp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-satZmjwkyp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-satZmjwkyp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-satZmjwkyp .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-satZmjwkyp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-satZmjwkyp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-satZmjwkyp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-satZmjwkyp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-satZmjwkyp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-satZmjwkyp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-satZmjwkyp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-satZmjwkyp .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-satZmjwkyp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-satZmjwkyp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-satZmjwkyp .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-satZmjwkyp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-satZmjwkyp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-satZmjwkyp .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-satZmjwkyp .navbar.navbar-short {
  min-height: 60px;
}
.cid-satZmjwkyp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-satZmjwkyp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-satZmjwkyp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-satZmjwkyp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-satZmjwkyp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-satZmjwkyp .dropdown-item.active,
.cid-satZmjwkyp .dropdown-item:active {
  background-color: transparent;
}
.cid-satZmjwkyp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-satZmjwkyp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-satZmjwkyp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-satZmjwkyp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-satZmjwkyp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-satZmjwkyp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-satZmjwkyp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-satZmjwkyp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-satZmjwkyp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-satZmjwkyp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-satZmjwkyp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-satZmjwkyp .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-satZmjwkyp .navbar {
    height: 70px;
  }
  .cid-satZmjwkyp .navbar.opened {
    height: auto;
  }
  .cid-satZmjwkyp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sjT8MO0pJB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sjT8MO0pJB .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sjT8MO0pJB .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sjT8MO0pJB .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sjT8MO0pJB .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sjT8MO0pJB .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-sjT8MO0pJB .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sjT8MO0pJB .carousel-control,
.cid-sjT8MO0pJB .close {
  background: #1b1b1b;
}
.cid-sjT8MO0pJB .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sjT8MO0pJB .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sjT8MO0pJB .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sjT8MO0pJB .carousel-control-next span {
  margin-left: 5px;
}
.cid-sjT8MO0pJB .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-sjT8MO0pJB .close::before {
  content: '\e91a';
}
.cid-sjT8MO0pJB .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sjT8MO0pJB .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-sjT8MO0pJB .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjT8MO0pJB .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sjT8MO0pJB .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sjT8MO0pJB .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sjT8MO0pJB .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-sjT8MO0pJB .carousel-indicators li.active,
.cid-sjT8MO0pJB .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sjT8MO0pJB .carousel-indicators li::after,
.cid-sjT8MO0pJB .carousel-indicators li::before {
  content: none;
}
.cid-sjT8MO0pJB .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sjT8MO0pJB .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sjT8MO0pJB .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sjT8MO0pJB .carousel-indicators {
    display: none;
  }
}
.cid-sjT8MO0pJB .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sjT8MO0pJB .carousel-inner > .active {
  display: block;
}
.cid-sjT8MO0pJB .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjT8MO0pJB .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjT8MO0pJB .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sjT8MO0pJB .carousel-control,
  .cid-sjT8MO0pJB .carousel-indicators,
  .cid-sjT8MO0pJB .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sjT8MO0pJB .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sjT8MO0pJB .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sjT8MO0pJB .carousel-indicators .active,
.cid-sjT8MO0pJB .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sjT8MO0pJB .carousel-indicators .active {
  background: #fff;
}
.cid-sjT8MO0pJB .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sjT8MO0pJB .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sjT8MO0pJB .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sjT8MO0pJB .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sjT8MO0pJB .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sjT8MO0pJB .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sjT8MO0pJB .carousel {
  width: 100%;
}
.cid-sjT8MO0pJB .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sjT8MO0pJB .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sjT8MO0pJB .modal.fade .modal-dialog,
.cid-sjT8MO0pJB .modal.in .modal-dialog {
  transform: none;
}
.cid-sjT8MO0pJB .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sjT8MO0pJB H6 {
  text-align: center;
}
.cid-ste7EAVyhg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v1IgsUPtSN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-v1IgsUPtSN .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgsUPtSN .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgsUPtSN .mbr-text,
.cid-v1IgsUPtSN .mbr-section-btn {
  text-align: left;
}
.cid-v1IgtKMUY7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-v1IgtKMUY7 .carousel {
    min-height: 700px;
  }
  .cid-v1IgtKMUY7 .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgtKMUY7 .carousel {
    min-height: 455px;
  }
  .cid-v1IgtKMUY7 .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgtKMUY7 .carousel {
    min-height: 385px;
  }
  .cid-v1IgtKMUY7 .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgtKMUY7 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgtKMUY7 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgtKMUY7 .carousel,
.cid-v1IgtKMUY7 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgtKMUY7 .item-wrapper {
  width: 100%;
}
.cid-v1IgtKMUY7 .carousel-caption {
  bottom: 40px;
}
.cid-v1IgtKMUY7 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgtKMUY7 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgtKMUY7 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgtKMUY7 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgtKMUY7 .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-v1IgtKMUY7 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgtKMUY7 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgtKMUY7 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgtKMUY7 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgtKMUY7 .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-v1IgtKMUY7 .carousel-indicators li.active,
.cid-v1IgtKMUY7 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgtKMUY7 .carousel-indicators li::after,
.cid-v1IgtKMUY7 .carousel-indicators li::before {
  content: none;
}
.cid-v1IgtKMUY7 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgtKMUY7 .carousel-indicators {
    display: none !important;
  }
}
.cid-v1Ig6JFI9Q {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-v1Ig6JFI9Q .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1Ig6JFI9Q .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1Ig6JFI9Q .mbr-text,
.cid-v1Ig6JFI9Q .mbr-section-btn {
  text-align: left;
}
.cid-v1Ig62y1rc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-v1Ig62y1rc .carousel {
    min-height: 700px;
  }
  .cid-v1Ig62y1rc .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1Ig62y1rc .carousel {
    min-height: 455px;
  }
  .cid-v1Ig62y1rc .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1Ig62y1rc .carousel {
    min-height: 385px;
  }
  .cid-v1Ig62y1rc .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1Ig62y1rc .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1Ig62y1rc .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1Ig62y1rc .carousel,
.cid-v1Ig62y1rc .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1Ig62y1rc .item-wrapper {
  width: 100%;
}
.cid-v1Ig62y1rc .carousel-caption {
  bottom: 40px;
}
.cid-v1Ig62y1rc .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1Ig62y1rc .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1Ig62y1rc .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1Ig62y1rc .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1Ig62y1rc .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-v1Ig62y1rc .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1Ig62y1rc .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1Ig62y1rc .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1Ig62y1rc .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1Ig62y1rc .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-v1Ig62y1rc .carousel-indicators li.active,
.cid-v1Ig62y1rc .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1Ig62y1rc .carousel-indicators li::after,
.cid-v1Ig62y1rc .carousel-indicators li::before {
  content: none;
}
.cid-v1Ig62y1rc .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1Ig62y1rc .carousel-indicators {
    display: none !important;
  }
}
.cid-v1If355OzK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-v1If355OzK .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1If355OzK .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1If355OzK .mbr-text,
.cid-v1If355OzK .mbr-section-btn {
  text-align: left;
}
.cid-v1If2gg28M {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-v1If2gg28M .carousel {
    min-height: 700px;
  }
  .cid-v1If2gg28M .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1If2gg28M .carousel {
    min-height: 455px;
  }
  .cid-v1If2gg28M .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1If2gg28M .carousel {
    min-height: 385px;
  }
  .cid-v1If2gg28M .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1If2gg28M .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1If2gg28M .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1If2gg28M .carousel,
.cid-v1If2gg28M .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1If2gg28M .item-wrapper {
  width: 100%;
}
.cid-v1If2gg28M .carousel-caption {
  bottom: 40px;
}
.cid-v1If2gg28M .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1If2gg28M .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1If2gg28M .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1If2gg28M .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1If2gg28M .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-v1If2gg28M .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1If2gg28M .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1If2gg28M .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1If2gg28M .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1If2gg28M .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-v1If2gg28M .carousel-indicators li.active,
.cid-v1If2gg28M .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1If2gg28M .carousel-indicators li::after,
.cid-v1If2gg28M .carousel-indicators li::before {
  content: none;
}
.cid-v1If2gg28M .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1If2gg28M .carousel-indicators {
    display: none !important;
  }
}
.cid-v1If5k6lrU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-v1If5k6lrU .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1If5k6lrU .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1If5k6lrU .mbr-text,
.cid-v1If5k6lrU .mbr-section-btn {
  text-align: left;
}
.cid-v1If4yxcWA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-v1If4yxcWA .carousel {
    min-height: 700px;
  }
  .cid-v1If4yxcWA .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1If4yxcWA .carousel {
    min-height: 455px;
  }
  .cid-v1If4yxcWA .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1If4yxcWA .carousel {
    min-height: 385px;
  }
  .cid-v1If4yxcWA .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1If4yxcWA .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1If4yxcWA .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1If4yxcWA .carousel,
.cid-v1If4yxcWA .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1If4yxcWA .item-wrapper {
  width: 100%;
}
.cid-v1If4yxcWA .carousel-caption {
  bottom: 40px;
}
.cid-v1If4yxcWA .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1If4yxcWA .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1If4yxcWA .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1If4yxcWA .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1If4yxcWA .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-v1If4yxcWA .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1If4yxcWA .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1If4yxcWA .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1If4yxcWA .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1If4yxcWA .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-v1If4yxcWA .carousel-indicators li.active,
.cid-v1If4yxcWA .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1If4yxcWA .carousel-indicators li::after,
.cid-v1If4yxcWA .carousel-indicators li::before {
  content: none;
}
.cid-v1If4yxcWA .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1If4yxcWA .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IdsOBQg9 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-v1IdsOBQg9 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IdsOBQg9 .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IdsOBQg9 .mbr-text,
.cid-v1IdsOBQg9 .mbr-section-btn {
  text-align: left;
}
.cid-v1IdtuBx4K {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-v1IdtuBx4K .carousel {
    min-height: 700px;
  }
  .cid-v1IdtuBx4K .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IdtuBx4K .carousel {
    min-height: 455px;
  }
  .cid-v1IdtuBx4K .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IdtuBx4K .carousel {
    min-height: 385px;
  }
  .cid-v1IdtuBx4K .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IdtuBx4K .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IdtuBx4K .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IdtuBx4K .carousel,
.cid-v1IdtuBx4K .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IdtuBx4K .item-wrapper {
  width: 100%;
}
.cid-v1IdtuBx4K .carousel-caption {
  bottom: 40px;
}
.cid-v1IdtuBx4K .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IdtuBx4K .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IdtuBx4K .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IdtuBx4K .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IdtuBx4K .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-v1IdtuBx4K .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IdtuBx4K .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IdtuBx4K .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IdtuBx4K .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IdtuBx4K .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-v1IdtuBx4K .carousel-indicators li.active,
.cid-v1IdtuBx4K .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IdtuBx4K .carousel-indicators li::after,
.cid-v1IdtuBx4K .carousel-indicators li::before {
  content: none;
}
.cid-v1IdtuBx4K .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IdtuBx4K .carousel-indicators {
    display: none !important;
  }
}
.cid-v1Idu74tFs {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-v1Idu74tFs .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1Idu74tFs .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1Idu74tFs .mbr-text,
.cid-v1Idu74tFs .mbr-section-btn {
  text-align: left;
}
.cid-v1IduYUTYt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-v1IduYUTYt .carousel {
    min-height: 700px;
  }
  .cid-v1IduYUTYt .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IduYUTYt .carousel {
    min-height: 455px;
  }
  .cid-v1IduYUTYt .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IduYUTYt .carousel {
    min-height: 385px;
  }
  .cid-v1IduYUTYt .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IduYUTYt .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IduYUTYt .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IduYUTYt .carousel,
.cid-v1IduYUTYt .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IduYUTYt .item-wrapper {
  width: 100%;
}
.cid-v1IduYUTYt .carousel-caption {
  bottom: 40px;
}
.cid-v1IduYUTYt .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IduYUTYt .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IduYUTYt .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IduYUTYt .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IduYUTYt .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-v1IduYUTYt .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IduYUTYt .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IduYUTYt .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IduYUTYt .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IduYUTYt .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-v1IduYUTYt .carousel-indicators li.active,
.cid-v1IduYUTYt .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IduYUTYt .carousel-indicators li::after,
.cid-v1IduYUTYt .carousel-indicators li::before {
  content: none;
}
.cid-v1IduYUTYt .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IduYUTYt .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IdvFxSCb {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-v1IdvFxSCb .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IdvFxSCb .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IdvFxSCb .mbr-text,
.cid-v1IdvFxSCb .mbr-section-btn {
  text-align: left;
}
.cid-v1IdwL2aci {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-v1IdwL2aci .carousel {
    min-height: 700px;
  }
  .cid-v1IdwL2aci .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IdwL2aci .carousel {
    min-height: 455px;
  }
  .cid-v1IdwL2aci .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IdwL2aci .carousel {
    min-height: 385px;
  }
  .cid-v1IdwL2aci .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IdwL2aci .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IdwL2aci .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IdwL2aci .carousel,
.cid-v1IdwL2aci .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IdwL2aci .item-wrapper {
  width: 100%;
}
.cid-v1IdwL2aci .carousel-caption {
  bottom: 40px;
}
.cid-v1IdwL2aci .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IdwL2aci .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IdwL2aci .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IdwL2aci .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IdwL2aci .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-v1IdwL2aci .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IdwL2aci .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IdwL2aci .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IdwL2aci .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IdwL2aci .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-v1IdwL2aci .carousel-indicators li.active,
.cid-v1IdwL2aci .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IdwL2aci .carousel-indicators li::after,
.cid-v1IdwL2aci .carousel-indicators li::before {
  content: none;
}
.cid-v1IdwL2aci .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IdwL2aci .carousel-indicators {
    display: none !important;
  }
}
.cid-v1Idfh0Cpl {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-v1Idfh0Cpl .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1Idfh0Cpl .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1Idfh0Cpl .mbr-text,
.cid-v1Idfh0Cpl .mbr-section-btn {
  text-align: left;
}
.cid-v1IdgbpXZ2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-v1IdgbpXZ2 .carousel {
    min-height: 700px;
  }
  .cid-v1IdgbpXZ2 .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IdgbpXZ2 .carousel {
    min-height: 455px;
  }
  .cid-v1IdgbpXZ2 .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IdgbpXZ2 .carousel {
    min-height: 385px;
  }
  .cid-v1IdgbpXZ2 .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IdgbpXZ2 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IdgbpXZ2 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IdgbpXZ2 .carousel,
.cid-v1IdgbpXZ2 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IdgbpXZ2 .item-wrapper {
  width: 100%;
}
.cid-v1IdgbpXZ2 .carousel-caption {
  bottom: 40px;
}
.cid-v1IdgbpXZ2 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IdgbpXZ2 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IdgbpXZ2 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IdgbpXZ2 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IdgbpXZ2 .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-v1IdgbpXZ2 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IdgbpXZ2 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IdgbpXZ2 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IdgbpXZ2 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IdgbpXZ2 .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-v1IdgbpXZ2 .carousel-indicators li.active,
.cid-v1IdgbpXZ2 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IdgbpXZ2 .carousel-indicators li::after,
.cid-v1IdgbpXZ2 .carousel-indicators li::before {
  content: none;
}
.cid-v1IdgbpXZ2 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IdgbpXZ2 .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsKgWxL1N {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uXsKgWxL1N .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsKgWxL1N .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsKgWxL1N .mbr-text,
.cid-uXsKgWxL1N .mbr-section-btn {
  text-align: left;
}
.cid-uXsKhpXogZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uXsKhpXogZ .carousel {
    min-height: 700px;
  }
  .cid-uXsKhpXogZ .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsKhpXogZ .carousel {
    min-height: 455px;
  }
  .cid-uXsKhpXogZ .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsKhpXogZ .carousel {
    min-height: 385px;
  }
  .cid-uXsKhpXogZ .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsKhpXogZ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsKhpXogZ .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsKhpXogZ .carousel,
.cid-uXsKhpXogZ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsKhpXogZ .item-wrapper {
  width: 100%;
}
.cid-uXsKhpXogZ .carousel-caption {
  bottom: 40px;
}
.cid-uXsKhpXogZ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsKhpXogZ .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsKhpXogZ .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsKhpXogZ .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsKhpXogZ .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-uXsKhpXogZ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsKhpXogZ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsKhpXogZ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsKhpXogZ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsKhpXogZ .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-uXsKhpXogZ .carousel-indicators li.active,
.cid-uXsKhpXogZ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsKhpXogZ .carousel-indicators li::after,
.cid-uXsKhpXogZ .carousel-indicators li::before {
  content: none;
}
.cid-uXsKhpXogZ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsKhpXogZ .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsJNxC2a0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-uXsJNxC2a0 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsJNxC2a0 .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsJNxC2a0 .mbr-text,
.cid-uXsJNxC2a0 .mbr-section-btn {
  text-align: left;
}
.cid-uXsJO04vrt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-uXsJO04vrt .carousel {
    min-height: 700px;
  }
  .cid-uXsJO04vrt .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsJO04vrt .carousel {
    min-height: 455px;
  }
  .cid-uXsJO04vrt .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsJO04vrt .carousel {
    min-height: 385px;
  }
  .cid-uXsJO04vrt .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsJO04vrt .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsJO04vrt .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsJO04vrt .carousel,
.cid-uXsJO04vrt .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsJO04vrt .item-wrapper {
  width: 100%;
}
.cid-uXsJO04vrt .carousel-caption {
  bottom: 40px;
}
.cid-uXsJO04vrt .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsJO04vrt .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsJO04vrt .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsJO04vrt .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsJO04vrt .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-uXsJO04vrt .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsJO04vrt .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsJO04vrt .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsJO04vrt .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsJO04vrt .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-uXsJO04vrt .carousel-indicators li.active,
.cid-uXsJO04vrt .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsJO04vrt .carousel-indicators li::after,
.cid-uXsJO04vrt .carousel-indicators li::before {
  content: none;
}
.cid-uXsJO04vrt .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsJO04vrt .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsJmk1Yih {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uXsJmk1Yih .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsJmk1Yih .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsJmk1Yih .mbr-text,
.cid-uXsJmk1Yih .mbr-section-btn {
  text-align: left;
}
.cid-uXsJmNh7ic {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uXsJmNh7ic .carousel {
    min-height: 700px;
  }
  .cid-uXsJmNh7ic .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsJmNh7ic .carousel {
    min-height: 455px;
  }
  .cid-uXsJmNh7ic .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsJmNh7ic .carousel {
    min-height: 385px;
  }
  .cid-uXsJmNh7ic .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsJmNh7ic .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsJmNh7ic .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsJmNh7ic .carousel,
.cid-uXsJmNh7ic .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsJmNh7ic .item-wrapper {
  width: 100%;
}
.cid-uXsJmNh7ic .carousel-caption {
  bottom: 40px;
}
.cid-uXsJmNh7ic .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsJmNh7ic .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsJmNh7ic .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsJmNh7ic .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsJmNh7ic .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-uXsJmNh7ic .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsJmNh7ic .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsJmNh7ic .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsJmNh7ic .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsJmNh7ic .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-uXsJmNh7ic .carousel-indicators li.active,
.cid-uXsJmNh7ic .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsJmNh7ic .carousel-indicators li::after,
.cid-uXsJmNh7ic .carousel-indicators li::before {
  content: none;
}
.cid-uXsJmNh7ic .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsJmNh7ic .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsJbWD4Py {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-uXsJbWD4Py .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsJbWD4Py .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsJbWD4Py .mbr-text,
.cid-uXsJbWD4Py .mbr-section-btn {
  text-align: left;
}
.cid-uXsJcodR8G {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-uXsJcodR8G .carousel {
    min-height: 700px;
  }
  .cid-uXsJcodR8G .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsJcodR8G .carousel {
    min-height: 455px;
  }
  .cid-uXsJcodR8G .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsJcodR8G .carousel {
    min-height: 385px;
  }
  .cid-uXsJcodR8G .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsJcodR8G .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsJcodR8G .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsJcodR8G .carousel,
.cid-uXsJcodR8G .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsJcodR8G .item-wrapper {
  width: 100%;
}
.cid-uXsJcodR8G .carousel-caption {
  bottom: 40px;
}
.cid-uXsJcodR8G .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsJcodR8G .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsJcodR8G .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsJcodR8G .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsJcodR8G .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-uXsJcodR8G .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsJcodR8G .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsJcodR8G .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsJcodR8G .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsJcodR8G .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-uXsJcodR8G .carousel-indicators li.active,
.cid-uXsJcodR8G .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsJcodR8G .carousel-indicators li::after,
.cid-uXsJcodR8G .carousel-indicators li::before {
  content: none;
}
.cid-uXsJcodR8G .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsJcodR8G .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsIIIbo40 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uXsIIIbo40 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsIIIbo40 .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsIIIbo40 .mbr-text,
.cid-uXsIIIbo40 .mbr-section-btn {
  text-align: left;
}
.cid-uXsIJa3R57 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uXsIJa3R57 .carousel {
    min-height: 700px;
  }
  .cid-uXsIJa3R57 .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsIJa3R57 .carousel {
    min-height: 455px;
  }
  .cid-uXsIJa3R57 .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsIJa3R57 .carousel {
    min-height: 385px;
  }
  .cid-uXsIJa3R57 .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsIJa3R57 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsIJa3R57 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsIJa3R57 .carousel,
.cid-uXsIJa3R57 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsIJa3R57 .item-wrapper {
  width: 100%;
}
.cid-uXsIJa3R57 .carousel-caption {
  bottom: 40px;
}
.cid-uXsIJa3R57 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsIJa3R57 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsIJa3R57 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsIJa3R57 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsIJa3R57 .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-uXsIJa3R57 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsIJa3R57 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsIJa3R57 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsIJa3R57 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsIJa3R57 .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-uXsIJa3R57 .carousel-indicators li.active,
.cid-uXsIJa3R57 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsIJa3R57 .carousel-indicators li::after,
.cid-uXsIJa3R57 .carousel-indicators li::before {
  content: none;
}
.cid-uXsIJa3R57 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsIJa3R57 .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsImnXnyx {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-uXsImnXnyx .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsImnXnyx .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsImnXnyx .mbr-text,
.cid-uXsImnXnyx .mbr-section-btn {
  text-align: left;
}
.cid-uXsImX9iiz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-uXsImX9iiz .carousel {
    min-height: 700px;
  }
  .cid-uXsImX9iiz .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsImX9iiz .carousel {
    min-height: 455px;
  }
  .cid-uXsImX9iiz .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsImX9iiz .carousel {
    min-height: 385px;
  }
  .cid-uXsImX9iiz .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsImX9iiz .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsImX9iiz .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsImX9iiz .carousel,
.cid-uXsImX9iiz .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsImX9iiz .item-wrapper {
  width: 100%;
}
.cid-uXsImX9iiz .carousel-caption {
  bottom: 40px;
}
.cid-uXsImX9iiz .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsImX9iiz .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsImX9iiz .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsImX9iiz .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsImX9iiz .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-uXsImX9iiz .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsImX9iiz .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsImX9iiz .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsImX9iiz .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsImX9iiz .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-uXsImX9iiz .carousel-indicators li.active,
.cid-uXsImX9iiz .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsImX9iiz .carousel-indicators li::after,
.cid-uXsImX9iiz .carousel-indicators li::before {
  content: none;
}
.cid-uXsImX9iiz .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsImX9iiz .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsHGM17rL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uXsHGM17rL .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsHGM17rL .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsHGM17rL .mbr-text,
.cid-uXsHGM17rL .mbr-section-btn {
  text-align: left;
}
.cid-uXsHHz8yPl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uXsHHz8yPl .carousel {
    min-height: 700px;
  }
  .cid-uXsHHz8yPl .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsHHz8yPl .carousel {
    min-height: 455px;
  }
  .cid-uXsHHz8yPl .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsHHz8yPl .carousel {
    min-height: 385px;
  }
  .cid-uXsHHz8yPl .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsHHz8yPl .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsHHz8yPl .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsHHz8yPl .carousel,
.cid-uXsHHz8yPl .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsHHz8yPl .item-wrapper {
  width: 100%;
}
.cid-uXsHHz8yPl .carousel-caption {
  bottom: 40px;
}
.cid-uXsHHz8yPl .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsHHz8yPl .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsHHz8yPl .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsHHz8yPl .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsHHz8yPl .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-uXsHHz8yPl .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsHHz8yPl .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsHHz8yPl .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsHHz8yPl .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsHHz8yPl .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-uXsHHz8yPl .carousel-indicators li.active,
.cid-uXsHHz8yPl .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsHHz8yPl .carousel-indicators li::after,
.cid-uXsHHz8yPl .carousel-indicators li::before {
  content: none;
}
.cid-uXsHHz8yPl .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsHHz8yPl .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsH01nYZu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-uXsH01nYZu .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsH01nYZu .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsH01nYZu .mbr-text,
.cid-uXsH01nYZu .mbr-section-btn {
  text-align: left;
}
.cid-uXsH0UT5Br {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-uXsH0UT5Br .carousel {
    min-height: 700px;
  }
  .cid-uXsH0UT5Br .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsH0UT5Br .carousel {
    min-height: 455px;
  }
  .cid-uXsH0UT5Br .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsH0UT5Br .carousel {
    min-height: 385px;
  }
  .cid-uXsH0UT5Br .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsH0UT5Br .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsH0UT5Br .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsH0UT5Br .carousel,
.cid-uXsH0UT5Br .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsH0UT5Br .item-wrapper {
  width: 100%;
}
.cid-uXsH0UT5Br .carousel-caption {
  bottom: 40px;
}
.cid-uXsH0UT5Br .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsH0UT5Br .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsH0UT5Br .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsH0UT5Br .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsH0UT5Br .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-uXsH0UT5Br .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsH0UT5Br .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsH0UT5Br .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsH0UT5Br .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsH0UT5Br .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-uXsH0UT5Br .carousel-indicators li.active,
.cid-uXsH0UT5Br .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsH0UT5Br .carousel-indicators li::after,
.cid-uXsH0UT5Br .carousel-indicators li::before {
  content: none;
}
.cid-uXsH0UT5Br .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsH0UT5Br .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsGqWeeg3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uXsGqWeeg3 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsGqWeeg3 .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsGqWeeg3 .mbr-text,
.cid-uXsGqWeeg3 .mbr-section-btn {
  text-align: left;
}
.cid-uXsGrGdmXK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uXsGrGdmXK .carousel {
    min-height: 700px;
  }
  .cid-uXsGrGdmXK .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsGrGdmXK .carousel {
    min-height: 455px;
  }
  .cid-uXsGrGdmXK .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsGrGdmXK .carousel {
    min-height: 385px;
  }
  .cid-uXsGrGdmXK .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsGrGdmXK .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsGrGdmXK .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsGrGdmXK .carousel,
.cid-uXsGrGdmXK .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsGrGdmXK .item-wrapper {
  width: 100%;
}
.cid-uXsGrGdmXK .carousel-caption {
  bottom: 40px;
}
.cid-uXsGrGdmXK .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsGrGdmXK .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsGrGdmXK .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsGrGdmXK .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsGrGdmXK .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-uXsGrGdmXK .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsGrGdmXK .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsGrGdmXK .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsGrGdmXK .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsGrGdmXK .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-uXsGrGdmXK .carousel-indicators li.active,
.cid-uXsGrGdmXK .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsGrGdmXK .carousel-indicators li::after,
.cid-uXsGrGdmXK .carousel-indicators li::before {
  content: none;
}
.cid-uXsGrGdmXK .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsGrGdmXK .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsG5Pxz2m {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-uXsG5Pxz2m .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsG5Pxz2m .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsG5Pxz2m .mbr-text,
.cid-uXsG5Pxz2m .mbr-section-btn {
  text-align: left;
}
.cid-uXsG6u7Sua {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-uXsG6u7Sua .carousel {
    min-height: 700px;
  }
  .cid-uXsG6u7Sua .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsG6u7Sua .carousel {
    min-height: 455px;
  }
  .cid-uXsG6u7Sua .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsG6u7Sua .carousel {
    min-height: 385px;
  }
  .cid-uXsG6u7Sua .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsG6u7Sua .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsG6u7Sua .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsG6u7Sua .carousel,
.cid-uXsG6u7Sua .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsG6u7Sua .item-wrapper {
  width: 100%;
}
.cid-uXsG6u7Sua .carousel-caption {
  bottom: 40px;
}
.cid-uXsG6u7Sua .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsG6u7Sua .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsG6u7Sua .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsG6u7Sua .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsG6u7Sua .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-uXsG6u7Sua .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsG6u7Sua .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsG6u7Sua .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsG6u7Sua .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsG6u7Sua .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-uXsG6u7Sua .carousel-indicators li.active,
.cid-uXsG6u7Sua .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsG6u7Sua .carousel-indicators li::after,
.cid-uXsG6u7Sua .carousel-indicators li::before {
  content: none;
}
.cid-uXsG6u7Sua .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsG6u7Sua .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsFIGwHfr {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uXsFIGwHfr .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsFIGwHfr .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsFIGwHfr .mbr-text,
.cid-uXsFIGwHfr .mbr-section-btn {
  text-align: left;
}
.cid-uXsFJhUbmP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uXsFJhUbmP .carousel {
    min-height: 700px;
  }
  .cid-uXsFJhUbmP .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsFJhUbmP .carousel {
    min-height: 455px;
  }
  .cid-uXsFJhUbmP .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsFJhUbmP .carousel {
    min-height: 385px;
  }
  .cid-uXsFJhUbmP .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsFJhUbmP .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsFJhUbmP .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsFJhUbmP .carousel,
.cid-uXsFJhUbmP .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsFJhUbmP .item-wrapper {
  width: 100%;
}
.cid-uXsFJhUbmP .carousel-caption {
  bottom: 40px;
}
.cid-uXsFJhUbmP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsFJhUbmP .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsFJhUbmP .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsFJhUbmP .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsFJhUbmP .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-uXsFJhUbmP .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsFJhUbmP .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsFJhUbmP .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsFJhUbmP .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsFJhUbmP .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-uXsFJhUbmP .carousel-indicators li.active,
.cid-uXsFJhUbmP .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsFJhUbmP .carousel-indicators li::after,
.cid-uXsFJhUbmP .carousel-indicators li::before {
  content: none;
}
.cid-uXsFJhUbmP .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsFJhUbmP .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsFnDRYCN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-uXsFnDRYCN .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsFnDRYCN .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsFnDRYCN .mbr-text,
.cid-uXsFnDRYCN .mbr-section-btn {
  text-align: left;
}
.cid-uXsFofioXj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-uXsFofioXj .carousel {
    min-height: 700px;
  }
  .cid-uXsFofioXj .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsFofioXj .carousel {
    min-height: 455px;
  }
  .cid-uXsFofioXj .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsFofioXj .carousel {
    min-height: 385px;
  }
  .cid-uXsFofioXj .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsFofioXj .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsFofioXj .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsFofioXj .carousel,
.cid-uXsFofioXj .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsFofioXj .item-wrapper {
  width: 100%;
}
.cid-uXsFofioXj .carousel-caption {
  bottom: 40px;
}
.cid-uXsFofioXj .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsFofioXj .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsFofioXj .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsFofioXj .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsFofioXj .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-uXsFofioXj .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsFofioXj .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsFofioXj .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsFofioXj .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsFofioXj .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-uXsFofioXj .carousel-indicators li.active,
.cid-uXsFofioXj .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsFofioXj .carousel-indicators li::after,
.cid-uXsFofioXj .carousel-indicators li::before {
  content: none;
}
.cid-uXsFofioXj .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsFofioXj .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsF1bJ64q {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uXsF1bJ64q .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsF1bJ64q .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsF1bJ64q .mbr-text,
.cid-uXsF1bJ64q .mbr-section-btn {
  text-align: left;
}
.cid-uXsF0u9mZz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uXsF0u9mZz .carousel {
    min-height: 700px;
  }
  .cid-uXsF0u9mZz .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsF0u9mZz .carousel {
    min-height: 455px;
  }
  .cid-uXsF0u9mZz .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsF0u9mZz .carousel {
    min-height: 385px;
  }
  .cid-uXsF0u9mZz .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsF0u9mZz .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsF0u9mZz .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsF0u9mZz .carousel,
.cid-uXsF0u9mZz .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsF0u9mZz .item-wrapper {
  width: 100%;
}
.cid-uXsF0u9mZz .carousel-caption {
  bottom: 40px;
}
.cid-uXsF0u9mZz .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsF0u9mZz .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsF0u9mZz .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsF0u9mZz .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsF0u9mZz .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-uXsF0u9mZz .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsF0u9mZz .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsF0u9mZz .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsF0u9mZz .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsF0u9mZz .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-uXsF0u9mZz .carousel-indicators li.active,
.cid-uXsF0u9mZz .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsF0u9mZz .carousel-indicators li::after,
.cid-uXsF0u9mZz .carousel-indicators li::before {
  content: none;
}
.cid-uXsF0u9mZz .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsF0u9mZz .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsExyuK9E {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-uXsExyuK9E .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsExyuK9E .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsExyuK9E .mbr-text,
.cid-uXsExyuK9E .mbr-section-btn {
  text-align: left;
}
.cid-uXsEybO8FZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-uXsEybO8FZ .carousel {
    min-height: 700px;
  }
  .cid-uXsEybO8FZ .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsEybO8FZ .carousel {
    min-height: 455px;
  }
  .cid-uXsEybO8FZ .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsEybO8FZ .carousel {
    min-height: 385px;
  }
  .cid-uXsEybO8FZ .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsEybO8FZ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsEybO8FZ .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsEybO8FZ .carousel,
.cid-uXsEybO8FZ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsEybO8FZ .item-wrapper {
  width: 100%;
}
.cid-uXsEybO8FZ .carousel-caption {
  bottom: 40px;
}
.cid-uXsEybO8FZ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsEybO8FZ .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsEybO8FZ .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsEybO8FZ .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsEybO8FZ .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-uXsEybO8FZ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsEybO8FZ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsEybO8FZ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsEybO8FZ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsEybO8FZ .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-uXsEybO8FZ .carousel-indicators li.active,
.cid-uXsEybO8FZ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsEybO8FZ .carousel-indicators li::after,
.cid-uXsEybO8FZ .carousel-indicators li::before {
  content: none;
}
.cid-uXsEybO8FZ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsEybO8FZ .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsE8KaidD {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uXsE8KaidD .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsE8KaidD .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsE8KaidD .mbr-text,
.cid-uXsE8KaidD .mbr-section-btn {
  text-align: left;
}
.cid-uXsE9laXLg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uXsE9laXLg .carousel {
    min-height: 700px;
  }
  .cid-uXsE9laXLg .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsE9laXLg .carousel {
    min-height: 455px;
  }
  .cid-uXsE9laXLg .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsE9laXLg .carousel {
    min-height: 385px;
  }
  .cid-uXsE9laXLg .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsE9laXLg .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsE9laXLg .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsE9laXLg .carousel,
.cid-uXsE9laXLg .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsE9laXLg .item-wrapper {
  width: 100%;
}
.cid-uXsE9laXLg .carousel-caption {
  bottom: 40px;
}
.cid-uXsE9laXLg .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsE9laXLg .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsE9laXLg .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsE9laXLg .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsE9laXLg .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-uXsE9laXLg .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsE9laXLg .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsE9laXLg .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsE9laXLg .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsE9laXLg .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-uXsE9laXLg .carousel-indicators li.active,
.cid-uXsE9laXLg .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsE9laXLg .carousel-indicators li::after,
.cid-uXsE9laXLg .carousel-indicators li::before {
  content: none;
}
.cid-uXsE9laXLg .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsE9laXLg .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsDMLwNfQ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-uXsDMLwNfQ .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsDMLwNfQ .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsDMLwNfQ .mbr-text,
.cid-uXsDMLwNfQ .mbr-section-btn {
  text-align: left;
}
.cid-uXsDNqhycy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-uXsDNqhycy .carousel {
    min-height: 700px;
  }
  .cid-uXsDNqhycy .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsDNqhycy .carousel {
    min-height: 455px;
  }
  .cid-uXsDNqhycy .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsDNqhycy .carousel {
    min-height: 385px;
  }
  .cid-uXsDNqhycy .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsDNqhycy .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsDNqhycy .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsDNqhycy .carousel,
.cid-uXsDNqhycy .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsDNqhycy .item-wrapper {
  width: 100%;
}
.cid-uXsDNqhycy .carousel-caption {
  bottom: 40px;
}
.cid-uXsDNqhycy .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsDNqhycy .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsDNqhycy .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsDNqhycy .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsDNqhycy .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-uXsDNqhycy .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsDNqhycy .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsDNqhycy .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsDNqhycy .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsDNqhycy .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-uXsDNqhycy .carousel-indicators li.active,
.cid-uXsDNqhycy .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsDNqhycy .carousel-indicators li::after,
.cid-uXsDNqhycy .carousel-indicators li::before {
  content: none;
}
.cid-uXsDNqhycy .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsDNqhycy .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsDn5hZYU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uXsDn5hZYU .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsDn5hZYU .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsDn5hZYU .mbr-text,
.cid-uXsDn5hZYU .mbr-section-btn {
  text-align: left;
}
.cid-uXsDnVlHRo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uXsDnVlHRo .carousel {
    min-height: 700px;
  }
  .cid-uXsDnVlHRo .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsDnVlHRo .carousel {
    min-height: 455px;
  }
  .cid-uXsDnVlHRo .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsDnVlHRo .carousel {
    min-height: 385px;
  }
  .cid-uXsDnVlHRo .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsDnVlHRo .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsDnVlHRo .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsDnVlHRo .carousel,
.cid-uXsDnVlHRo .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsDnVlHRo .item-wrapper {
  width: 100%;
}
.cid-uXsDnVlHRo .carousel-caption {
  bottom: 40px;
}
.cid-uXsDnVlHRo .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsDnVlHRo .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsDnVlHRo .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsDnVlHRo .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsDnVlHRo .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-uXsDnVlHRo .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsDnVlHRo .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsDnVlHRo .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsDnVlHRo .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsDnVlHRo .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-uXsDnVlHRo .carousel-indicators li.active,
.cid-uXsDnVlHRo .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsDnVlHRo .carousel-indicators li::after,
.cid-uXsDnVlHRo .carousel-indicators li::before {
  content: none;
}
.cid-uXsDnVlHRo .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsDnVlHRo .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsD0iXZTa {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-uXsD0iXZTa .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsD0iXZTa .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsD0iXZTa .mbr-text,
.cid-uXsD0iXZTa .mbr-section-btn {
  text-align: left;
}
.cid-uXsD0QoC1v {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-uXsD0QoC1v .carousel {
    min-height: 700px;
  }
  .cid-uXsD0QoC1v .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsD0QoC1v .carousel {
    min-height: 455px;
  }
  .cid-uXsD0QoC1v .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsD0QoC1v .carousel {
    min-height: 385px;
  }
  .cid-uXsD0QoC1v .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsD0QoC1v .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsD0QoC1v .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsD0QoC1v .carousel,
.cid-uXsD0QoC1v .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsD0QoC1v .item-wrapper {
  width: 100%;
}
.cid-uXsD0QoC1v .carousel-caption {
  bottom: 40px;
}
.cid-uXsD0QoC1v .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsD0QoC1v .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsD0QoC1v .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsD0QoC1v .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsD0QoC1v .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-uXsD0QoC1v .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsD0QoC1v .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsD0QoC1v .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsD0QoC1v .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsD0QoC1v .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-uXsD0QoC1v .carousel-indicators li.active,
.cid-uXsD0QoC1v .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsD0QoC1v .carousel-indicators li::after,
.cid-uXsD0QoC1v .carousel-indicators li::before {
  content: none;
}
.cid-uXsD0QoC1v .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsD0QoC1v .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsCyalx4w {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uXsCyalx4w .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsCyalx4w .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsCyalx4w .mbr-text,
.cid-uXsCyalx4w .mbr-section-btn {
  text-align: left;
}
.cid-uXsCyKjruW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uXsCyKjruW .carousel {
    min-height: 700px;
  }
  .cid-uXsCyKjruW .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsCyKjruW .carousel {
    min-height: 455px;
  }
  .cid-uXsCyKjruW .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsCyKjruW .carousel {
    min-height: 385px;
  }
  .cid-uXsCyKjruW .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsCyKjruW .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsCyKjruW .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsCyKjruW .carousel,
.cid-uXsCyKjruW .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsCyKjruW .item-wrapper {
  width: 100%;
}
.cid-uXsCyKjruW .carousel-caption {
  bottom: 40px;
}
.cid-uXsCyKjruW .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsCyKjruW .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsCyKjruW .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsCyKjruW .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsCyKjruW .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-uXsCyKjruW .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsCyKjruW .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsCyKjruW .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsCyKjruW .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsCyKjruW .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-uXsCyKjruW .carousel-indicators li.active,
.cid-uXsCyKjruW .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsCyKjruW .carousel-indicators li::after,
.cid-uXsCyKjruW .carousel-indicators li::before {
  content: none;
}
.cid-uXsCyKjruW .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsCyKjruW .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsC9B05iB {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-uXsC9B05iB .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsC9B05iB .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsC9B05iB .mbr-text,
.cid-uXsC9B05iB .mbr-section-btn {
  text-align: left;
}
.cid-uXsCa7TW3Z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-uXsCa7TW3Z .carousel {
    min-height: 700px;
  }
  .cid-uXsCa7TW3Z .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsCa7TW3Z .carousel {
    min-height: 455px;
  }
  .cid-uXsCa7TW3Z .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsCa7TW3Z .carousel {
    min-height: 385px;
  }
  .cid-uXsCa7TW3Z .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsCa7TW3Z .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsCa7TW3Z .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsCa7TW3Z .carousel,
.cid-uXsCa7TW3Z .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsCa7TW3Z .item-wrapper {
  width: 100%;
}
.cid-uXsCa7TW3Z .carousel-caption {
  bottom: 40px;
}
.cid-uXsCa7TW3Z .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsCa7TW3Z .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsCa7TW3Z .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsCa7TW3Z .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsCa7TW3Z .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-uXsCa7TW3Z .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsCa7TW3Z .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsCa7TW3Z .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsCa7TW3Z .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsCa7TW3Z .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-uXsCa7TW3Z .carousel-indicators li.active,
.cid-uXsCa7TW3Z .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsCa7TW3Z .carousel-indicators li::after,
.cid-uXsCa7TW3Z .carousel-indicators li::before {
  content: none;
}
.cid-uXsCa7TW3Z .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsCa7TW3Z .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsBDhl8ze {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uXsBDhl8ze .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsBDhl8ze .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsBDhl8ze .mbr-text,
.cid-uXsBDhl8ze .mbr-section-btn {
  text-align: left;
}
.cid-uXsBDLGB30 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uXsBDLGB30 .carousel {
    min-height: 700px;
  }
  .cid-uXsBDLGB30 .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsBDLGB30 .carousel {
    min-height: 455px;
  }
  .cid-uXsBDLGB30 .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsBDLGB30 .carousel {
    min-height: 385px;
  }
  .cid-uXsBDLGB30 .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsBDLGB30 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsBDLGB30 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsBDLGB30 .carousel,
.cid-uXsBDLGB30 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsBDLGB30 .item-wrapper {
  width: 100%;
}
.cid-uXsBDLGB30 .carousel-caption {
  bottom: 40px;
}
.cid-uXsBDLGB30 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsBDLGB30 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsBDLGB30 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsBDLGB30 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsBDLGB30 .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-uXsBDLGB30 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsBDLGB30 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsBDLGB30 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsBDLGB30 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsBDLGB30 .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-uXsBDLGB30 .carousel-indicators li.active,
.cid-uXsBDLGB30 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsBDLGB30 .carousel-indicators li::after,
.cid-uXsBDLGB30 .carousel-indicators li::before {
  content: none;
}
.cid-uXsBDLGB30 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsBDLGB30 .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsBfGkkBH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-uXsBfGkkBH .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsBfGkkBH .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsBfGkkBH .mbr-text,
.cid-uXsBfGkkBH .mbr-section-btn {
  text-align: left;
}
.cid-uXsBgdvo5q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-uXsBgdvo5q .carousel {
    min-height: 700px;
  }
  .cid-uXsBgdvo5q .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsBgdvo5q .carousel {
    min-height: 455px;
  }
  .cid-uXsBgdvo5q .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsBgdvo5q .carousel {
    min-height: 385px;
  }
  .cid-uXsBgdvo5q .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsBgdvo5q .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsBgdvo5q .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsBgdvo5q .carousel,
.cid-uXsBgdvo5q .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsBgdvo5q .item-wrapper {
  width: 100%;
}
.cid-uXsBgdvo5q .carousel-caption {
  bottom: 40px;
}
.cid-uXsBgdvo5q .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsBgdvo5q .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsBgdvo5q .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsBgdvo5q .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsBgdvo5q .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-uXsBgdvo5q .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsBgdvo5q .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsBgdvo5q .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsBgdvo5q .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsBgdvo5q .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-uXsBgdvo5q .carousel-indicators li.active,
.cid-uXsBgdvo5q .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsBgdvo5q .carousel-indicators li::after,
.cid-uXsBgdvo5q .carousel-indicators li::before {
  content: none;
}
.cid-uXsBgdvo5q .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsBgdvo5q .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsAT0wZCS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uXsAT0wZCS .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsAT0wZCS .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsAT0wZCS .mbr-text,
.cid-uXsAT0wZCS .mbr-section-btn {
  text-align: left;
}
.cid-uXsATCotXm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uXsATCotXm .carousel {
    min-height: 700px;
  }
  .cid-uXsATCotXm .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsATCotXm .carousel {
    min-height: 455px;
  }
  .cid-uXsATCotXm .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsATCotXm .carousel {
    min-height: 385px;
  }
  .cid-uXsATCotXm .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsATCotXm .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsATCotXm .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsATCotXm .carousel,
.cid-uXsATCotXm .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsATCotXm .item-wrapper {
  width: 100%;
}
.cid-uXsATCotXm .carousel-caption {
  bottom: 40px;
}
.cid-uXsATCotXm .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsATCotXm .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsATCotXm .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsATCotXm .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsATCotXm .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-uXsATCotXm .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsATCotXm .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsATCotXm .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsATCotXm .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsATCotXm .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-uXsATCotXm .carousel-indicators li.active,
.cid-uXsATCotXm .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsATCotXm .carousel-indicators li::after,
.cid-uXsATCotXm .carousel-indicators li::before {
  content: none;
}
.cid-uXsATCotXm .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsATCotXm .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsAxp6eQx {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-uXsAxp6eQx .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsAxp6eQx .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsAxp6eQx .mbr-text,
.cid-uXsAxp6eQx .mbr-section-btn {
  text-align: left;
}
.cid-uXsAxVMpSD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-uXsAxVMpSD .carousel {
    min-height: 700px;
  }
  .cid-uXsAxVMpSD .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsAxVMpSD .carousel {
    min-height: 455px;
  }
  .cid-uXsAxVMpSD .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsAxVMpSD .carousel {
    min-height: 385px;
  }
  .cid-uXsAxVMpSD .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsAxVMpSD .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsAxVMpSD .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsAxVMpSD .carousel,
.cid-uXsAxVMpSD .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsAxVMpSD .item-wrapper {
  width: 100%;
}
.cid-uXsAxVMpSD .carousel-caption {
  bottom: 40px;
}
.cid-uXsAxVMpSD .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsAxVMpSD .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsAxVMpSD .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsAxVMpSD .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsAxVMpSD .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-uXsAxVMpSD .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsAxVMpSD .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsAxVMpSD .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsAxVMpSD .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsAxVMpSD .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-uXsAxVMpSD .carousel-indicators li.active,
.cid-uXsAxVMpSD .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsAxVMpSD .carousel-indicators li::after,
.cid-uXsAxVMpSD .carousel-indicators li::before {
  content: none;
}
.cid-uXsAxVMpSD .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsAxVMpSD .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsA9m0ta7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uXsA9m0ta7 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsA9m0ta7 .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsA9m0ta7 .mbr-text,
.cid-uXsA9m0ta7 .mbr-section-btn {
  text-align: left;
}
.cid-uXsA9YhQLi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uXsA9YhQLi .carousel {
    min-height: 700px;
  }
  .cid-uXsA9YhQLi .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsA9YhQLi .carousel {
    min-height: 455px;
  }
  .cid-uXsA9YhQLi .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsA9YhQLi .carousel {
    min-height: 385px;
  }
  .cid-uXsA9YhQLi .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsA9YhQLi .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsA9YhQLi .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsA9YhQLi .carousel,
.cid-uXsA9YhQLi .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsA9YhQLi .item-wrapper {
  width: 100%;
}
.cid-uXsA9YhQLi .carousel-caption {
  bottom: 40px;
}
.cid-uXsA9YhQLi .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsA9YhQLi .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsA9YhQLi .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsA9YhQLi .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsA9YhQLi .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-uXsA9YhQLi .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsA9YhQLi .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsA9YhQLi .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsA9YhQLi .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsA9YhQLi .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-uXsA9YhQLi .carousel-indicators li.active,
.cid-uXsA9YhQLi .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsA9YhQLi .carousel-indicators li::after,
.cid-uXsA9YhQLi .carousel-indicators li::before {
  content: none;
}
.cid-uXsA9YhQLi .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsA9YhQLi .carousel-indicators {
    display: none !important;
  }
}
.cid-uXszSedx9e {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-uXszSedx9e .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXszSedx9e .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXszSedx9e .mbr-text,
.cid-uXszSedx9e .mbr-section-btn {
  text-align: left;
}
.cid-uXszSO5udp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-uXszSO5udp .carousel {
    min-height: 700px;
  }
  .cid-uXszSO5udp .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXszSO5udp .carousel {
    min-height: 455px;
  }
  .cid-uXszSO5udp .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXszSO5udp .carousel {
    min-height: 385px;
  }
  .cid-uXszSO5udp .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXszSO5udp .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXszSO5udp .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXszSO5udp .carousel,
.cid-uXszSO5udp .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXszSO5udp .item-wrapper {
  width: 100%;
}
.cid-uXszSO5udp .carousel-caption {
  bottom: 40px;
}
.cid-uXszSO5udp .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXszSO5udp .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXszSO5udp .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXszSO5udp .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXszSO5udp .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-uXszSO5udp .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXszSO5udp .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXszSO5udp .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXszSO5udp .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXszSO5udp .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-uXszSO5udp .carousel-indicators li.active,
.cid-uXszSO5udp .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXszSO5udp .carousel-indicators li::after,
.cid-uXszSO5udp .carousel-indicators li::before {
  content: none;
}
.cid-uXszSO5udp .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXszSO5udp .carousel-indicators {
    display: none !important;
  }
}
.cid-uXszpMT5eR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uXszpMT5eR .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXszpMT5eR .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXszpMT5eR .mbr-text,
.cid-uXszpMT5eR .mbr-section-btn {
  text-align: left;
}
.cid-uXszqvQTMj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uXszqvQTMj .carousel {
    min-height: 700px;
  }
  .cid-uXszqvQTMj .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXszqvQTMj .carousel {
    min-height: 455px;
  }
  .cid-uXszqvQTMj .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXszqvQTMj .carousel {
    min-height: 385px;
  }
  .cid-uXszqvQTMj .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXszqvQTMj .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXszqvQTMj .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXszqvQTMj .carousel,
.cid-uXszqvQTMj .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXszqvQTMj .item-wrapper {
  width: 100%;
}
.cid-uXszqvQTMj .carousel-caption {
  bottom: 40px;
}
.cid-uXszqvQTMj .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXszqvQTMj .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXszqvQTMj .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXszqvQTMj .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXszqvQTMj .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-uXszqvQTMj .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXszqvQTMj .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXszqvQTMj .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXszqvQTMj .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXszqvQTMj .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-uXszqvQTMj .carousel-indicators li.active,
.cid-uXszqvQTMj .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXszqvQTMj .carousel-indicators li::after,
.cid-uXszqvQTMj .carousel-indicators li::before {
  content: none;
}
.cid-uXszqvQTMj .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXszqvQTMj .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsyZzEOmR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-uXsyZzEOmR .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsyZzEOmR .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsyZzEOmR .mbr-text,
.cid-uXsyZzEOmR .mbr-section-btn {
  text-align: left;
}
.cid-uXsyYKf6hN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-uXsyYKf6hN .carousel {
    min-height: 700px;
  }
  .cid-uXsyYKf6hN .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsyYKf6hN .carousel {
    min-height: 455px;
  }
  .cid-uXsyYKf6hN .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsyYKf6hN .carousel {
    min-height: 385px;
  }
  .cid-uXsyYKf6hN .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsyYKf6hN .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsyYKf6hN .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsyYKf6hN .carousel,
.cid-uXsyYKf6hN .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsyYKf6hN .item-wrapper {
  width: 100%;
}
.cid-uXsyYKf6hN .carousel-caption {
  bottom: 40px;
}
.cid-uXsyYKf6hN .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsyYKf6hN .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsyYKf6hN .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsyYKf6hN .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsyYKf6hN .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-uXsyYKf6hN .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsyYKf6hN .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsyYKf6hN .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsyYKf6hN .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsyYKf6hN .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-uXsyYKf6hN .carousel-indicators li.active,
.cid-uXsyYKf6hN .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsyYKf6hN .carousel-indicators li::after,
.cid-uXsyYKf6hN .carousel-indicators li::before {
  content: none;
}
.cid-uXsyYKf6hN .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsyYKf6hN .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsyvdQSiy {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uXsyvdQSiy .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsyvdQSiy .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsyvdQSiy .mbr-text,
.cid-uXsyvdQSiy .mbr-section-btn {
  text-align: left;
}
.cid-uXsyuzILHN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uXsyuzILHN .carousel {
    min-height: 700px;
  }
  .cid-uXsyuzILHN .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsyuzILHN .carousel {
    min-height: 455px;
  }
  .cid-uXsyuzILHN .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsyuzILHN .carousel {
    min-height: 385px;
  }
  .cid-uXsyuzILHN .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsyuzILHN .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsyuzILHN .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsyuzILHN .carousel,
.cid-uXsyuzILHN .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsyuzILHN .item-wrapper {
  width: 100%;
}
.cid-uXsyuzILHN .carousel-caption {
  bottom: 40px;
}
.cid-uXsyuzILHN .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsyuzILHN .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsyuzILHN .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsyuzILHN .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsyuzILHN .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-uXsyuzILHN .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsyuzILHN .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsyuzILHN .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsyuzILHN .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsyuzILHN .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-uXsyuzILHN .carousel-indicators li.active,
.cid-uXsyuzILHN .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsyuzILHN .carousel-indicators li::after,
.cid-uXsyuzILHN .carousel-indicators li::before {
  content: none;
}
.cid-uXsyuzILHN .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsyuzILHN .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsycGFk7R {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-uXsycGFk7R .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsycGFk7R .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsycGFk7R .mbr-text,
.cid-uXsycGFk7R .mbr-section-btn {
  text-align: left;
}
.cid-uXsydpLS2S {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-uXsydpLS2S .carousel {
    min-height: 700px;
  }
  .cid-uXsydpLS2S .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsydpLS2S .carousel {
    min-height: 455px;
  }
  .cid-uXsydpLS2S .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsydpLS2S .carousel {
    min-height: 385px;
  }
  .cid-uXsydpLS2S .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsydpLS2S .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsydpLS2S .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsydpLS2S .carousel,
.cid-uXsydpLS2S .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsydpLS2S .item-wrapper {
  width: 100%;
}
.cid-uXsydpLS2S .carousel-caption {
  bottom: 40px;
}
.cid-uXsydpLS2S .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsydpLS2S .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsydpLS2S .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsydpLS2S .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsydpLS2S .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-uXsydpLS2S .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsydpLS2S .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsydpLS2S .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsydpLS2S .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsydpLS2S .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-uXsydpLS2S .carousel-indicators li.active,
.cid-uXsydpLS2S .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsydpLS2S .carousel-indicators li::after,
.cid-uXsydpLS2S .carousel-indicators li::before {
  content: none;
}
.cid-uXsydpLS2S .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsydpLS2S .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsxIfLgtx {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uXsxIfLgtx .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsxIfLgtx .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsxIfLgtx .mbr-text,
.cid-uXsxIfLgtx .mbr-section-btn {
  text-align: left;
}
.cid-uXsxIOqz3Q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uXsxIOqz3Q .carousel {
    min-height: 700px;
  }
  .cid-uXsxIOqz3Q .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsxIOqz3Q .carousel {
    min-height: 455px;
  }
  .cid-uXsxIOqz3Q .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsxIOqz3Q .carousel {
    min-height: 385px;
  }
  .cid-uXsxIOqz3Q .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsxIOqz3Q .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsxIOqz3Q .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsxIOqz3Q .carousel,
.cid-uXsxIOqz3Q .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsxIOqz3Q .item-wrapper {
  width: 100%;
}
.cid-uXsxIOqz3Q .carousel-caption {
  bottom: 40px;
}
.cid-uXsxIOqz3Q .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsxIOqz3Q .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsxIOqz3Q .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsxIOqz3Q .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsxIOqz3Q .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-uXsxIOqz3Q .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsxIOqz3Q .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsxIOqz3Q .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsxIOqz3Q .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsxIOqz3Q .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-uXsxIOqz3Q .carousel-indicators li.active,
.cid-uXsxIOqz3Q .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsxIOqz3Q .carousel-indicators li::after,
.cid-uXsxIOqz3Q .carousel-indicators li::before {
  content: none;
}
.cid-uXsxIOqz3Q .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsxIOqz3Q .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsxkNM9KB {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-uXsxkNM9KB .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsxkNM9KB .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsxkNM9KB .mbr-text,
.cid-uXsxkNM9KB .mbr-section-btn {
  text-align: left;
}
.cid-uXsxlsaTRq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-uXsxlsaTRq .carousel {
    min-height: 700px;
  }
  .cid-uXsxlsaTRq .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXsxlsaTRq .carousel {
    min-height: 455px;
  }
  .cid-uXsxlsaTRq .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXsxlsaTRq .carousel {
    min-height: 385px;
  }
  .cid-uXsxlsaTRq .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXsxlsaTRq .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXsxlsaTRq .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXsxlsaTRq .carousel,
.cid-uXsxlsaTRq .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXsxlsaTRq .item-wrapper {
  width: 100%;
}
.cid-uXsxlsaTRq .carousel-caption {
  bottom: 40px;
}
.cid-uXsxlsaTRq .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXsxlsaTRq .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXsxlsaTRq .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXsxlsaTRq .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXsxlsaTRq .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-uXsxlsaTRq .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXsxlsaTRq .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXsxlsaTRq .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXsxlsaTRq .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXsxlsaTRq .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-uXsxlsaTRq .carousel-indicators li.active,
.cid-uXsxlsaTRq .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXsxlsaTRq .carousel-indicators li::after,
.cid-uXsxlsaTRq .carousel-indicators li::before {
  content: none;
}
.cid-uXsxlsaTRq .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXsxlsaTRq .carousel-indicators {
    display: none !important;
  }
}
.cid-uXswW4Qiqh {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uXswW4Qiqh .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXswW4Qiqh .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXswW4Qiqh .mbr-text,
.cid-uXswW4Qiqh .mbr-section-btn {
  text-align: left;
}
.cid-uXswWyQNFW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uXswWyQNFW .carousel {
    min-height: 700px;
  }
  .cid-uXswWyQNFW .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXswWyQNFW .carousel {
    min-height: 455px;
  }
  .cid-uXswWyQNFW .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXswWyQNFW .carousel {
    min-height: 385px;
  }
  .cid-uXswWyQNFW .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXswWyQNFW .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXswWyQNFW .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXswWyQNFW .carousel,
.cid-uXswWyQNFW .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXswWyQNFW .item-wrapper {
  width: 100%;
}
.cid-uXswWyQNFW .carousel-caption {
  bottom: 40px;
}
.cid-uXswWyQNFW .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXswWyQNFW .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXswWyQNFW .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXswWyQNFW .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXswWyQNFW .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-uXswWyQNFW .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXswWyQNFW .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXswWyQNFW .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXswWyQNFW .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXswWyQNFW .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-uXswWyQNFW .carousel-indicators li.active,
.cid-uXswWyQNFW .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXswWyQNFW .carousel-indicators li::after,
.cid-uXswWyQNFW .carousel-indicators li::before {
  content: none;
}
.cid-uXswWyQNFW .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXswWyQNFW .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsvLwRUF1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-uXsvLwRUF1 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsvLwRUF1 .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsvLwRUF1 .mbr-text,
.cid-uXsvLwRUF1 .mbr-section-btn {
  text-align: justify;
}
.cid-uXswC9Ldie {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-uXswC9Ldie .carousel {
    min-height: 700px;
  }
  .cid-uXswC9Ldie .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXswC9Ldie .carousel {
    min-height: 455px;
  }
  .cid-uXswC9Ldie .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXswC9Ldie .carousel {
    min-height: 385px;
  }
  .cid-uXswC9Ldie .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uXswC9Ldie .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXswC9Ldie .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXswC9Ldie .carousel,
.cid-uXswC9Ldie .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXswC9Ldie .item-wrapper {
  width: 100%;
}
.cid-uXswC9Ldie .carousel-caption {
  bottom: 40px;
}
.cid-uXswC9Ldie .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXswC9Ldie .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXswC9Ldie .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXswC9Ldie .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXswC9Ldie .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-uXswC9Ldie .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXswC9Ldie .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXswC9Ldie .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXswC9Ldie .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXswC9Ldie .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-uXswC9Ldie .carousel-indicators li.active,
.cid-uXswC9Ldie .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXswC9Ldie .carousel-indicators li::after,
.cid-uXswC9Ldie .carousel-indicators li::before {
  content: none;
}
.cid-uXswC9Ldie .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXswC9Ldie .carousel-indicators {
    display: none !important;
  }
}
.cid-uXsw6O4oWy {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uXsw6O4oWy .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXsw6O4oWy .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uXsw6O4oWy .mbr-text,
.cid-uXsw6O4oWy .mbr-section-btn {
  text-align: left;
}
.cid-uBce9Z7zCZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-uBce9Z7zCZ .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBce9Z7zCZ .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBce9Z7zCZ .mbr-text,
.cid-uBce9Z7zCZ .mbr-section-btn {
  text-align: left;
}
.cid-uBceaP9bKQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-uBceaP9bKQ .carousel {
    min-height: 700px;
  }
  .cid-uBceaP9bKQ .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBceaP9bKQ .carousel {
    min-height: 455px;
  }
  .cid-uBceaP9bKQ .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBceaP9bKQ .carousel {
    min-height: 385px;
  }
  .cid-uBceaP9bKQ .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBceaP9bKQ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBceaP9bKQ .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBceaP9bKQ .carousel,
.cid-uBceaP9bKQ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBceaP9bKQ .item-wrapper {
  width: 100%;
}
.cid-uBceaP9bKQ .carousel-caption {
  bottom: 40px;
}
.cid-uBceaP9bKQ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBceaP9bKQ .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBceaP9bKQ .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBceaP9bKQ .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBceaP9bKQ .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-uBceaP9bKQ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBceaP9bKQ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBceaP9bKQ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBceaP9bKQ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBceaP9bKQ .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-uBceaP9bKQ .carousel-indicators li.active,
.cid-uBceaP9bKQ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBceaP9bKQ .carousel-indicators li::after,
.cid-uBceaP9bKQ .carousel-indicators li::before {
  content: none;
}
.cid-uBceaP9bKQ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBceaP9bKQ .carousel-indicators {
    display: none !important;
  }
}
.cid-uBchflKfUv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uBchflKfUv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBchflKfUv .row {
  flex-direction: row-reverse;
}
.cid-uBchflKfUv img {
  width: 100%;
}
.cid-sau1959oFl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffe161;
}
.cid-sau1959oFl .mbr-text,
.cid-sau1959oFl .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-sau1959oFl .mbr-text,
  .cid-sau1959oFl .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-sau1959oFl .mbr-text,
  .cid-sau1959oFl .mbr-section-title {
    text-align: center;
  }
}
.cid-sau1959oFl a.btn {
  height: 100%;
  margin: 0;
}
.cid-sau1959oFl .mbr-section-btn {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
}
.cid-sau1959oFl .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-sau1959oFl .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sau1959oFl .justify-content-center {
  align-items: center;
}
.cid-saucCyQz9S {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-saucCyQz9S .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-saucCyQz9S .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-saucCyQz9S .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-saucCyQz9S .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-saucCyQz9S .list {
    margin-bottom: 0rem;
  }
}
.cid-saucCyQz9S .mbr-text {
  color: #000000;
}
.cid-saucCyQz9S .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-saucCyQz9S .mbr-iconfont {
  color: black;
}
.cid-saucCyQz9S H5 {
  color: #000000;
}
.cid-satZmjwkyp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-satZmjwkyp nav.navbar {
  position: fixed;
}
.cid-satZmjwkyp .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-satZmjwkyp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-satZmjwkyp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-satZmjwkyp .dropdown-item:hover,
.cid-satZmjwkyp .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-satZmjwkyp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-satZmjwkyp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-satZmjwkyp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-satZmjwkyp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-satZmjwkyp .nav-link {
  position: relative;
}
.cid-satZmjwkyp .container {
  display: flex;
  margin: auto;
}
.cid-satZmjwkyp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-satZmjwkyp .dropdown-menu,
.cid-satZmjwkyp .navbar.opened {
  background: #ffffff !important;
}
.cid-satZmjwkyp .nav-item:focus,
.cid-satZmjwkyp .nav-link:focus {
  outline: none;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-satZmjwkyp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-satZmjwkyp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-satZmjwkyp .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-satZmjwkyp .navbar.opened {
  transition: all .3s;
}
.cid-satZmjwkyp .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-satZmjwkyp .navbar .navbar-logo img {
  width: auto;
}
.cid-satZmjwkyp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-satZmjwkyp .navbar.collapsed {
  justify-content: center;
}
.cid-satZmjwkyp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-satZmjwkyp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-satZmjwkyp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-satZmjwkyp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-satZmjwkyp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-satZmjwkyp .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-satZmjwkyp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-satZmjwkyp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-satZmjwkyp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-satZmjwkyp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-satZmjwkyp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-satZmjwkyp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-satZmjwkyp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-satZmjwkyp .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-satZmjwkyp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-satZmjwkyp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-satZmjwkyp .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-satZmjwkyp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-satZmjwkyp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-satZmjwkyp .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-satZmjwkyp .navbar.navbar-short {
  min-height: 60px;
}
.cid-satZmjwkyp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-satZmjwkyp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-satZmjwkyp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-satZmjwkyp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-satZmjwkyp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-satZmjwkyp .dropdown-item.active,
.cid-satZmjwkyp .dropdown-item:active {
  background-color: transparent;
}
.cid-satZmjwkyp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-satZmjwkyp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-satZmjwkyp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-satZmjwkyp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-satZmjwkyp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-satZmjwkyp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-satZmjwkyp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-satZmjwkyp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-satZmjwkyp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-satZmjwkyp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-satZmjwkyp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-satZmjwkyp .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-satZmjwkyp .navbar {
    height: 70px;
  }
  .cid-satZmjwkyp .navbar.opened {
    height: auto;
  }
  .cid-satZmjwkyp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sjTlFuFeN9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sjTlFuFeN9 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sjTlFuFeN9 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sjTlFuFeN9 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sjTlFuFeN9 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sjTlFuFeN9 .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-sjTlFuFeN9 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sjTlFuFeN9 .carousel-control,
.cid-sjTlFuFeN9 .close {
  background: #1b1b1b;
}
.cid-sjTlFuFeN9 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sjTlFuFeN9 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sjTlFuFeN9 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sjTlFuFeN9 .carousel-control-next span {
  margin-left: 5px;
}
.cid-sjTlFuFeN9 .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-sjTlFuFeN9 .close::before {
  content: '\e91a';
}
.cid-sjTlFuFeN9 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sjTlFuFeN9 .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-sjTlFuFeN9 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjTlFuFeN9 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sjTlFuFeN9 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sjTlFuFeN9 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sjTlFuFeN9 .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-sjTlFuFeN9 .carousel-indicators li.active,
.cid-sjTlFuFeN9 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sjTlFuFeN9 .carousel-indicators li::after,
.cid-sjTlFuFeN9 .carousel-indicators li::before {
  content: none;
}
.cid-sjTlFuFeN9 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sjTlFuFeN9 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sjTlFuFeN9 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sjTlFuFeN9 .carousel-indicators {
    display: none;
  }
}
.cid-sjTlFuFeN9 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sjTlFuFeN9 .carousel-inner > .active {
  display: block;
}
.cid-sjTlFuFeN9 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjTlFuFeN9 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjTlFuFeN9 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sjTlFuFeN9 .carousel-control,
  .cid-sjTlFuFeN9 .carousel-indicators,
  .cid-sjTlFuFeN9 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sjTlFuFeN9 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sjTlFuFeN9 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sjTlFuFeN9 .carousel-indicators .active,
.cid-sjTlFuFeN9 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sjTlFuFeN9 .carousel-indicators .active {
  background: #fff;
}
.cid-sjTlFuFeN9 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sjTlFuFeN9 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sjTlFuFeN9 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sjTlFuFeN9 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sjTlFuFeN9 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sjTlFuFeN9 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sjTlFuFeN9 .carousel {
  width: 100%;
}
.cid-sjTlFuFeN9 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sjTlFuFeN9 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sjTlFuFeN9 .modal.fade .modal-dialog,
.cid-sjTlFuFeN9 .modal.in .modal-dialog {
  transform: none;
}
.cid-sjTlFuFeN9 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sjTlFuFeN9 H6 {
  text-align: center;
}
.cid-saurMRIFQP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-saucCyQz9S {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-saucCyQz9S .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-saucCyQz9S .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-saucCyQz9S .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-saucCyQz9S .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-saucCyQz9S .list {
    margin-bottom: 0rem;
  }
}
.cid-saucCyQz9S .mbr-text {
  color: #000000;
}
.cid-saucCyQz9S .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-saucCyQz9S .mbr-iconfont {
  color: black;
}
.cid-saucCyQz9S H5 {
  color: #000000;
}
.cid-satZmjwkyp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-satZmjwkyp nav.navbar {
  position: fixed;
}
.cid-satZmjwkyp .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-satZmjwkyp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-satZmjwkyp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-satZmjwkyp .dropdown-item:hover,
.cid-satZmjwkyp .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-satZmjwkyp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-satZmjwkyp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-satZmjwkyp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-satZmjwkyp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-satZmjwkyp .nav-link {
  position: relative;
}
.cid-satZmjwkyp .container {
  display: flex;
  margin: auto;
}
.cid-satZmjwkyp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-satZmjwkyp .dropdown-menu,
.cid-satZmjwkyp .navbar.opened {
  background: #ffffff !important;
}
.cid-satZmjwkyp .nav-item:focus,
.cid-satZmjwkyp .nav-link:focus {
  outline: none;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-satZmjwkyp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-satZmjwkyp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-satZmjwkyp .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-satZmjwkyp .navbar.opened {
  transition: all .3s;
}
.cid-satZmjwkyp .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-satZmjwkyp .navbar .navbar-logo img {
  width: auto;
}
.cid-satZmjwkyp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-satZmjwkyp .navbar.collapsed {
  justify-content: center;
}
.cid-satZmjwkyp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-satZmjwkyp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-satZmjwkyp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-satZmjwkyp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-satZmjwkyp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-satZmjwkyp .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-satZmjwkyp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-satZmjwkyp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-satZmjwkyp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-satZmjwkyp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-satZmjwkyp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-satZmjwkyp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-satZmjwkyp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-satZmjwkyp .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-satZmjwkyp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-satZmjwkyp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-satZmjwkyp .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-satZmjwkyp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-satZmjwkyp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-satZmjwkyp .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-satZmjwkyp .navbar.navbar-short {
  min-height: 60px;
}
.cid-satZmjwkyp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-satZmjwkyp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-satZmjwkyp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-satZmjwkyp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-satZmjwkyp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-satZmjwkyp .dropdown-item.active,
.cid-satZmjwkyp .dropdown-item:active {
  background-color: transparent;
}
.cid-satZmjwkyp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-satZmjwkyp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-satZmjwkyp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-satZmjwkyp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-satZmjwkyp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-satZmjwkyp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-satZmjwkyp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-satZmjwkyp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-satZmjwkyp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-satZmjwkyp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-satZmjwkyp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-satZmjwkyp .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-satZmjwkyp .navbar {
    height: 70px;
  }
  .cid-satZmjwkyp .navbar.opened {
    height: auto;
  }
  .cid-satZmjwkyp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sjTh79rRBX {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sjTh79rRBX .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sjTh79rRBX .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sjTh79rRBX .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sjTh79rRBX .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sjTh79rRBX .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-sjTh79rRBX .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sjTh79rRBX .carousel-control,
.cid-sjTh79rRBX .close {
  background: #1b1b1b;
}
.cid-sjTh79rRBX .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sjTh79rRBX .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sjTh79rRBX .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sjTh79rRBX .carousel-control-next span {
  margin-left: 5px;
}
.cid-sjTh79rRBX .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-sjTh79rRBX .close::before {
  content: '\e91a';
}
.cid-sjTh79rRBX .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sjTh79rRBX .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-sjTh79rRBX .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjTh79rRBX .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sjTh79rRBX .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sjTh79rRBX .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sjTh79rRBX .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-sjTh79rRBX .carousel-indicators li.active,
.cid-sjTh79rRBX .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sjTh79rRBX .carousel-indicators li::after,
.cid-sjTh79rRBX .carousel-indicators li::before {
  content: none;
}
.cid-sjTh79rRBX .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sjTh79rRBX .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sjTh79rRBX .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sjTh79rRBX .carousel-indicators {
    display: none;
  }
}
.cid-sjTh79rRBX .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sjTh79rRBX .carousel-inner > .active {
  display: block;
}
.cid-sjTh79rRBX .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjTh79rRBX .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjTh79rRBX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sjTh79rRBX .carousel-control,
  .cid-sjTh79rRBX .carousel-indicators,
  .cid-sjTh79rRBX .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sjTh79rRBX .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sjTh79rRBX .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sjTh79rRBX .carousel-indicators .active,
.cid-sjTh79rRBX .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sjTh79rRBX .carousel-indicators .active {
  background: #fff;
}
.cid-sjTh79rRBX .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sjTh79rRBX .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sjTh79rRBX .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sjTh79rRBX .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sjTh79rRBX .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sjTh79rRBX .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sjTh79rRBX .carousel {
  width: 100%;
}
.cid-sjTh79rRBX .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sjTh79rRBX .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sjTh79rRBX .modal.fade .modal-dialog,
.cid-sjTh79rRBX .modal.in .modal-dialog {
  transform: none;
}
.cid-sjTh79rRBX .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sjTh79rRBX H6 {
  text-align: center;
}
.cid-sauzYLKKwP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sauzYLKKwP .text-wrapper {
    padding: 2rem;
  }
}
.cid-sauzYLKKwP .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-sauzYLKKwP .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sauzYLKKwP .mbr-text {
  text-align: center;
}
.cid-saucCyQz9S {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-saucCyQz9S .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-saucCyQz9S .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-saucCyQz9S .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-saucCyQz9S .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-saucCyQz9S .list {
    margin-bottom: 0rem;
  }
}
.cid-saucCyQz9S .mbr-text {
  color: #000000;
}
.cid-saucCyQz9S .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-saucCyQz9S .mbr-iconfont {
  color: black;
}
.cid-saucCyQz9S H5 {
  color: #000000;
}
.cid-satZmjwkyp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-satZmjwkyp nav.navbar {
  position: fixed;
}
.cid-satZmjwkyp .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-satZmjwkyp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-satZmjwkyp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-satZmjwkyp .dropdown-item:hover,
.cid-satZmjwkyp .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-satZmjwkyp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-satZmjwkyp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-satZmjwkyp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-satZmjwkyp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-satZmjwkyp .nav-link {
  position: relative;
}
.cid-satZmjwkyp .container {
  display: flex;
  margin: auto;
}
.cid-satZmjwkyp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-satZmjwkyp .dropdown-menu,
.cid-satZmjwkyp .navbar.opened {
  background: #ffffff !important;
}
.cid-satZmjwkyp .nav-item:focus,
.cid-satZmjwkyp .nav-link:focus {
  outline: none;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-satZmjwkyp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-satZmjwkyp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-satZmjwkyp .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-satZmjwkyp .navbar.opened {
  transition: all .3s;
}
.cid-satZmjwkyp .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-satZmjwkyp .navbar .navbar-logo img {
  width: auto;
}
.cid-satZmjwkyp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-satZmjwkyp .navbar.collapsed {
  justify-content: center;
}
.cid-satZmjwkyp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-satZmjwkyp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-satZmjwkyp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-satZmjwkyp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-satZmjwkyp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-satZmjwkyp .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-satZmjwkyp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-satZmjwkyp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-satZmjwkyp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-satZmjwkyp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-satZmjwkyp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-satZmjwkyp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-satZmjwkyp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-satZmjwkyp .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-satZmjwkyp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-satZmjwkyp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-satZmjwkyp .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-satZmjwkyp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-satZmjwkyp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-satZmjwkyp .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-satZmjwkyp .navbar.navbar-short {
  min-height: 60px;
}
.cid-satZmjwkyp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-satZmjwkyp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-satZmjwkyp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-satZmjwkyp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-satZmjwkyp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-satZmjwkyp .dropdown-item.active,
.cid-satZmjwkyp .dropdown-item:active {
  background-color: transparent;
}
.cid-satZmjwkyp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-satZmjwkyp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-satZmjwkyp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-satZmjwkyp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-satZmjwkyp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-satZmjwkyp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-satZmjwkyp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-satZmjwkyp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-satZmjwkyp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-satZmjwkyp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-satZmjwkyp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-satZmjwkyp .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-satZmjwkyp .navbar {
    height: 70px;
  }
  .cid-satZmjwkyp .navbar.opened {
    height: auto;
  }
  .cid-satZmjwkyp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sjTh3czRvA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sjTh3czRvA .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sjTh3czRvA .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sjTh3czRvA .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sjTh3czRvA .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sjTh3czRvA .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-sjTh3czRvA .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sjTh3czRvA .carousel-control,
.cid-sjTh3czRvA .close {
  background: #1b1b1b;
}
.cid-sjTh3czRvA .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sjTh3czRvA .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sjTh3czRvA .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sjTh3czRvA .carousel-control-next span {
  margin-left: 5px;
}
.cid-sjTh3czRvA .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-sjTh3czRvA .close::before {
  content: '\e91a';
}
.cid-sjTh3czRvA .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sjTh3czRvA .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-sjTh3czRvA .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjTh3czRvA .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sjTh3czRvA .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sjTh3czRvA .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sjTh3czRvA .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-sjTh3czRvA .carousel-indicators li.active,
.cid-sjTh3czRvA .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sjTh3czRvA .carousel-indicators li::after,
.cid-sjTh3czRvA .carousel-indicators li::before {
  content: none;
}
.cid-sjTh3czRvA .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sjTh3czRvA .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sjTh3czRvA .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sjTh3czRvA .carousel-indicators {
    display: none;
  }
}
.cid-sjTh3czRvA .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sjTh3czRvA .carousel-inner > .active {
  display: block;
}
.cid-sjTh3czRvA .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjTh3czRvA .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjTh3czRvA .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sjTh3czRvA .carousel-control,
  .cid-sjTh3czRvA .carousel-indicators,
  .cid-sjTh3czRvA .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sjTh3czRvA .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sjTh3czRvA .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sjTh3czRvA .carousel-indicators .active,
.cid-sjTh3czRvA .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sjTh3czRvA .carousel-indicators .active {
  background: #fff;
}
.cid-sjTh3czRvA .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sjTh3czRvA .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sjTh3czRvA .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sjTh3czRvA .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sjTh3czRvA .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sjTh3czRvA .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sjTh3czRvA .carousel {
  width: 100%;
}
.cid-sjTh3czRvA .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sjTh3czRvA .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sjTh3czRvA .modal.fade .modal-dialog,
.cid-sjTh3czRvA .modal.in .modal-dialog {
  transform: none;
}
.cid-sjTh3czRvA .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sjTh3czRvA H6 {
  text-align: center;
}
.cid-saucCyQz9S {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-saucCyQz9S .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-saucCyQz9S .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-saucCyQz9S .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-saucCyQz9S .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-saucCyQz9S .list {
    margin-bottom: 0rem;
  }
}
.cid-saucCyQz9S .mbr-text {
  color: #000000;
}
.cid-saucCyQz9S .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-saucCyQz9S .mbr-iconfont {
  color: black;
}
.cid-saucCyQz9S H5 {
  color: #000000;
}
.cid-satZmjwkyp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-satZmjwkyp nav.navbar {
  position: fixed;
}
.cid-satZmjwkyp .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-satZmjwkyp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-satZmjwkyp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-satZmjwkyp .dropdown-item:hover,
.cid-satZmjwkyp .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-satZmjwkyp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-satZmjwkyp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-satZmjwkyp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-satZmjwkyp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-satZmjwkyp .nav-link {
  position: relative;
}
.cid-satZmjwkyp .container {
  display: flex;
  margin: auto;
}
.cid-satZmjwkyp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-satZmjwkyp .dropdown-menu,
.cid-satZmjwkyp .navbar.opened {
  background: #ffffff !important;
}
.cid-satZmjwkyp .nav-item:focus,
.cid-satZmjwkyp .nav-link:focus {
  outline: none;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-satZmjwkyp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-satZmjwkyp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-satZmjwkyp .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-satZmjwkyp .navbar.opened {
  transition: all .3s;
}
.cid-satZmjwkyp .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-satZmjwkyp .navbar .navbar-logo img {
  width: auto;
}
.cid-satZmjwkyp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-satZmjwkyp .navbar.collapsed {
  justify-content: center;
}
.cid-satZmjwkyp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-satZmjwkyp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-satZmjwkyp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-satZmjwkyp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-satZmjwkyp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-satZmjwkyp .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-satZmjwkyp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-satZmjwkyp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-satZmjwkyp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-satZmjwkyp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-satZmjwkyp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-satZmjwkyp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-satZmjwkyp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-satZmjwkyp .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-satZmjwkyp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-satZmjwkyp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-satZmjwkyp .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-satZmjwkyp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-satZmjwkyp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-satZmjwkyp .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-satZmjwkyp .navbar.navbar-short {
  min-height: 60px;
}
.cid-satZmjwkyp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-satZmjwkyp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-satZmjwkyp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-satZmjwkyp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-satZmjwkyp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-satZmjwkyp .dropdown-item.active,
.cid-satZmjwkyp .dropdown-item:active {
  background-color: transparent;
}
.cid-satZmjwkyp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-satZmjwkyp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-satZmjwkyp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-satZmjwkyp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-satZmjwkyp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-satZmjwkyp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-satZmjwkyp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-satZmjwkyp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-satZmjwkyp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-satZmjwkyp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-satZmjwkyp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-satZmjwkyp .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-satZmjwkyp .navbar {
    height: 70px;
  }
  .cid-satZmjwkyp .navbar.opened {
    height: auto;
  }
  .cid-satZmjwkyp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sjTfijqaSV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sjTfijqaSV .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sjTfijqaSV .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sjTfijqaSV .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sjTfijqaSV .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sjTfijqaSV .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-sjTfijqaSV .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sjTfijqaSV .carousel-control,
.cid-sjTfijqaSV .close {
  background: #1b1b1b;
}
.cid-sjTfijqaSV .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sjTfijqaSV .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sjTfijqaSV .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sjTfijqaSV .carousel-control-next span {
  margin-left: 5px;
}
.cid-sjTfijqaSV .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-sjTfijqaSV .close::before {
  content: '\e91a';
}
.cid-sjTfijqaSV .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sjTfijqaSV .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-sjTfijqaSV .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjTfijqaSV .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sjTfijqaSV .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sjTfijqaSV .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sjTfijqaSV .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-sjTfijqaSV .carousel-indicators li.active,
.cid-sjTfijqaSV .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sjTfijqaSV .carousel-indicators li::after,
.cid-sjTfijqaSV .carousel-indicators li::before {
  content: none;
}
.cid-sjTfijqaSV .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sjTfijqaSV .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sjTfijqaSV .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sjTfijqaSV .carousel-indicators {
    display: none;
  }
}
.cid-sjTfijqaSV .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sjTfijqaSV .carousel-inner > .active {
  display: block;
}
.cid-sjTfijqaSV .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjTfijqaSV .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjTfijqaSV .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sjTfijqaSV .carousel-control,
  .cid-sjTfijqaSV .carousel-indicators,
  .cid-sjTfijqaSV .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sjTfijqaSV .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sjTfijqaSV .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sjTfijqaSV .carousel-indicators .active,
.cid-sjTfijqaSV .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sjTfijqaSV .carousel-indicators .active {
  background: #fff;
}
.cid-sjTfijqaSV .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sjTfijqaSV .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sjTfijqaSV .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sjTfijqaSV .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sjTfijqaSV .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sjTfijqaSV .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sjTfijqaSV .carousel {
  width: 100%;
}
.cid-sjTfijqaSV .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sjTfijqaSV .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sjTfijqaSV .modal.fade .modal-dialog,
.cid-sjTfijqaSV .modal.in .modal-dialog {
  transform: none;
}
.cid-sjTfijqaSV .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sjTfijqaSV H6 {
  text-align: center;
}
.cid-saucCyQz9S {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-saucCyQz9S .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-saucCyQz9S .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-saucCyQz9S .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-saucCyQz9S .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-saucCyQz9S .list {
    margin-bottom: 0rem;
  }
}
.cid-saucCyQz9S .mbr-text {
  color: #000000;
}
.cid-saucCyQz9S .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-saucCyQz9S .mbr-iconfont {
  color: black;
}
.cid-saucCyQz9S H5 {
  color: #000000;
}
.cid-satZmjwkyp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-satZmjwkyp nav.navbar {
  position: fixed;
}
.cid-satZmjwkyp .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-satZmjwkyp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-satZmjwkyp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-satZmjwkyp .dropdown-item:hover,
.cid-satZmjwkyp .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-satZmjwkyp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-satZmjwkyp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-satZmjwkyp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-satZmjwkyp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-satZmjwkyp .nav-link {
  position: relative;
}
.cid-satZmjwkyp .container {
  display: flex;
  margin: auto;
}
.cid-satZmjwkyp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-satZmjwkyp .dropdown-menu,
.cid-satZmjwkyp .navbar.opened {
  background: #ffffff !important;
}
.cid-satZmjwkyp .nav-item:focus,
.cid-satZmjwkyp .nav-link:focus {
  outline: none;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-satZmjwkyp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-satZmjwkyp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-satZmjwkyp .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-satZmjwkyp .navbar.opened {
  transition: all .3s;
}
.cid-satZmjwkyp .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-satZmjwkyp .navbar .navbar-logo img {
  width: auto;
}
.cid-satZmjwkyp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-satZmjwkyp .navbar.collapsed {
  justify-content: center;
}
.cid-satZmjwkyp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-satZmjwkyp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-satZmjwkyp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-satZmjwkyp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-satZmjwkyp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-satZmjwkyp .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-satZmjwkyp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-satZmjwkyp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-satZmjwkyp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-satZmjwkyp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-satZmjwkyp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-satZmjwkyp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-satZmjwkyp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-satZmjwkyp .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-satZmjwkyp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-satZmjwkyp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-satZmjwkyp .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-satZmjwkyp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-satZmjwkyp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-satZmjwkyp .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-satZmjwkyp .navbar.navbar-short {
  min-height: 60px;
}
.cid-satZmjwkyp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-satZmjwkyp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-satZmjwkyp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-satZmjwkyp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-satZmjwkyp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-satZmjwkyp .dropdown-item.active,
.cid-satZmjwkyp .dropdown-item:active {
  background-color: transparent;
}
.cid-satZmjwkyp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-satZmjwkyp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-satZmjwkyp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-satZmjwkyp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-satZmjwkyp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-satZmjwkyp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-satZmjwkyp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-satZmjwkyp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-satZmjwkyp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-satZmjwkyp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-satZmjwkyp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-satZmjwkyp .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-satZmjwkyp .navbar {
    height: 70px;
  }
  .cid-satZmjwkyp .navbar.opened {
    height: auto;
  }
  .cid-satZmjwkyp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sjTf7gHZd2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sjTf7gHZd2 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sjTf7gHZd2 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sjTf7gHZd2 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sjTf7gHZd2 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sjTf7gHZd2 .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-sjTf7gHZd2 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sjTf7gHZd2 .carousel-control,
.cid-sjTf7gHZd2 .close {
  background: #1b1b1b;
}
.cid-sjTf7gHZd2 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sjTf7gHZd2 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sjTf7gHZd2 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sjTf7gHZd2 .carousel-control-next span {
  margin-left: 5px;
}
.cid-sjTf7gHZd2 .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-sjTf7gHZd2 .close::before {
  content: '\e91a';
}
.cid-sjTf7gHZd2 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sjTf7gHZd2 .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-sjTf7gHZd2 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjTf7gHZd2 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sjTf7gHZd2 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sjTf7gHZd2 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sjTf7gHZd2 .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-sjTf7gHZd2 .carousel-indicators li.active,
.cid-sjTf7gHZd2 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sjTf7gHZd2 .carousel-indicators li::after,
.cid-sjTf7gHZd2 .carousel-indicators li::before {
  content: none;
}
.cid-sjTf7gHZd2 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sjTf7gHZd2 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sjTf7gHZd2 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sjTf7gHZd2 .carousel-indicators {
    display: none;
  }
}
.cid-sjTf7gHZd2 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sjTf7gHZd2 .carousel-inner > .active {
  display: block;
}
.cid-sjTf7gHZd2 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjTf7gHZd2 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjTf7gHZd2 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sjTf7gHZd2 .carousel-control,
  .cid-sjTf7gHZd2 .carousel-indicators,
  .cid-sjTf7gHZd2 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sjTf7gHZd2 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sjTf7gHZd2 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sjTf7gHZd2 .carousel-indicators .active,
.cid-sjTf7gHZd2 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sjTf7gHZd2 .carousel-indicators .active {
  background: #fff;
}
.cid-sjTf7gHZd2 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sjTf7gHZd2 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sjTf7gHZd2 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sjTf7gHZd2 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sjTf7gHZd2 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sjTf7gHZd2 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sjTf7gHZd2 .carousel {
  width: 100%;
}
.cid-sjTf7gHZd2 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sjTf7gHZd2 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sjTf7gHZd2 .modal.fade .modal-dialog,
.cid-sjTf7gHZd2 .modal.in .modal-dialog {
  transform: none;
}
.cid-sjTf7gHZd2 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sjTf7gHZd2 H6 {
  text-align: center;
}
.cid-sauxaugEPt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sauxaugEPt .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sauxaugEPt form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-sauxaugEPt form.mbr-form {
    padding: 3rem 2rem;
    width: 80%;
  }
}
@media (max-width: 991px) {
  .cid-sauxaugEPt form.mbr-form {
    padding: 1rem;
  }
}
.cid-sauxaugEPt form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-sauxaugEPt form.mbr-form .mbr-section-btn .btn {
  width: 100%;
}
.cid-saucCyQz9S {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-saucCyQz9S .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-saucCyQz9S .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-saucCyQz9S .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-saucCyQz9S .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-saucCyQz9S .list {
    margin-bottom: 0rem;
  }
}
.cid-saucCyQz9S .mbr-text {
  color: #000000;
}
.cid-saucCyQz9S .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-saucCyQz9S .mbr-iconfont {
  color: black;
}
.cid-saucCyQz9S H5 {
  color: #000000;
}
.cid-satZmjwkyp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-satZmjwkyp nav.navbar {
  position: fixed;
}
.cid-satZmjwkyp .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-satZmjwkyp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-satZmjwkyp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-satZmjwkyp .dropdown-item:hover,
.cid-satZmjwkyp .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-satZmjwkyp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-satZmjwkyp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-satZmjwkyp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-satZmjwkyp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-satZmjwkyp .nav-link {
  position: relative;
}
.cid-satZmjwkyp .container {
  display: flex;
  margin: auto;
}
.cid-satZmjwkyp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-satZmjwkyp .dropdown-menu,
.cid-satZmjwkyp .navbar.opened {
  background: #ffffff !important;
}
.cid-satZmjwkyp .nav-item:focus,
.cid-satZmjwkyp .nav-link:focus {
  outline: none;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-satZmjwkyp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-satZmjwkyp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-satZmjwkyp .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-satZmjwkyp .navbar.opened {
  transition: all .3s;
}
.cid-satZmjwkyp .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-satZmjwkyp .navbar .navbar-logo img {
  width: auto;
}
.cid-satZmjwkyp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-satZmjwkyp .navbar.collapsed {
  justify-content: center;
}
.cid-satZmjwkyp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-satZmjwkyp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-satZmjwkyp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-satZmjwkyp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-satZmjwkyp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-satZmjwkyp .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-satZmjwkyp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-satZmjwkyp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-satZmjwkyp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-satZmjwkyp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-satZmjwkyp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-satZmjwkyp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-satZmjwkyp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-satZmjwkyp .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-satZmjwkyp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-satZmjwkyp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-satZmjwkyp .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-satZmjwkyp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-satZmjwkyp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-satZmjwkyp .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-satZmjwkyp .navbar.navbar-short {
  min-height: 60px;
}
.cid-satZmjwkyp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-satZmjwkyp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-satZmjwkyp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-satZmjwkyp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-satZmjwkyp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-satZmjwkyp .dropdown-item.active,
.cid-satZmjwkyp .dropdown-item:active {
  background-color: transparent;
}
.cid-satZmjwkyp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-satZmjwkyp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-satZmjwkyp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-satZmjwkyp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-satZmjwkyp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-satZmjwkyp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-satZmjwkyp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-satZmjwkyp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-satZmjwkyp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-satZmjwkyp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-satZmjwkyp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-satZmjwkyp .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-satZmjwkyp .navbar {
    height: 70px;
  }
  .cid-satZmjwkyp .navbar.opened {
    height: auto;
  }
  .cid-satZmjwkyp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sjTf2vveZF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sjTf2vveZF .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sjTf2vveZF .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sjTf2vveZF .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sjTf2vveZF .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sjTf2vveZF .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-sjTf2vveZF .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sjTf2vveZF .carousel-control,
.cid-sjTf2vveZF .close {
  background: #1b1b1b;
}
.cid-sjTf2vveZF .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sjTf2vveZF .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sjTf2vveZF .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sjTf2vveZF .carousel-control-next span {
  margin-left: 5px;
}
.cid-sjTf2vveZF .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-sjTf2vveZF .close::before {
  content: '\e91a';
}
.cid-sjTf2vveZF .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sjTf2vveZF .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-sjTf2vveZF .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjTf2vveZF .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sjTf2vveZF .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sjTf2vveZF .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sjTf2vveZF .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-sjTf2vveZF .carousel-indicators li.active,
.cid-sjTf2vveZF .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sjTf2vveZF .carousel-indicators li::after,
.cid-sjTf2vveZF .carousel-indicators li::before {
  content: none;
}
.cid-sjTf2vveZF .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sjTf2vveZF .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sjTf2vveZF .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sjTf2vveZF .carousel-indicators {
    display: none;
  }
}
.cid-sjTf2vveZF .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sjTf2vveZF .carousel-inner > .active {
  display: block;
}
.cid-sjTf2vveZF .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjTf2vveZF .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjTf2vveZF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sjTf2vveZF .carousel-control,
  .cid-sjTf2vveZF .carousel-indicators,
  .cid-sjTf2vveZF .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sjTf2vveZF .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sjTf2vveZF .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sjTf2vveZF .carousel-indicators .active,
.cid-sjTf2vveZF .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sjTf2vveZF .carousel-indicators .active {
  background: #fff;
}
.cid-sjTf2vveZF .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sjTf2vveZF .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sjTf2vveZF .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sjTf2vveZF .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sjTf2vveZF .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sjTf2vveZF .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sjTf2vveZF .carousel {
  width: 100%;
}
.cid-sjTf2vveZF .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sjTf2vveZF .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sjTf2vveZF .modal.fade .modal-dialog,
.cid-sjTf2vveZF .modal.in .modal-dialog {
  transform: none;
}
.cid-sjTf2vveZF .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sjTf2vveZF H6 {
  text-align: center;
}
.cid-sjTmPhkpkN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sjTmPhkpkN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sjTmPhkpkN img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sjTmPhkpkN .text-wrapper {
    padding: 2rem;
  }
}
.cid-sjTmPhkpkN .mbr-text {
  text-align: center;
}
.cid-sjTmPhkpkN .mbr-section-title {
  text-align: center;
}
.cid-sjTAL6F39P {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-sjTAL6F39P .mbr-section-subtitle {
  text-align: left;
}
.cid-sjTBC8HYev {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-sjTBC8HYev .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sjTBC8HYev .row {
  flex-direction: row-reverse;
}
.cid-sjTBC8HYev img {
  width: 100%;
}
.cid-sauCq8t4SH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-saucCyQz9S {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-saucCyQz9S .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-saucCyQz9S .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-saucCyQz9S .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-saucCyQz9S .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-saucCyQz9S .list {
    margin-bottom: 0rem;
  }
}
.cid-saucCyQz9S .mbr-text {
  color: #000000;
}
.cid-saucCyQz9S .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-saucCyQz9S .mbr-iconfont {
  color: black;
}
.cid-saucCyQz9S H5 {
  color: #000000;
}
.cid-satZmjwkyp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-satZmjwkyp nav.navbar {
  position: fixed;
}
.cid-satZmjwkyp .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-satZmjwkyp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-satZmjwkyp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-satZmjwkyp .dropdown-item:hover,
.cid-satZmjwkyp .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-satZmjwkyp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-satZmjwkyp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-satZmjwkyp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-satZmjwkyp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-satZmjwkyp .nav-link {
  position: relative;
}
.cid-satZmjwkyp .container {
  display: flex;
  margin: auto;
}
.cid-satZmjwkyp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-satZmjwkyp .dropdown-menu,
.cid-satZmjwkyp .navbar.opened {
  background: #ffffff !important;
}
.cid-satZmjwkyp .nav-item:focus,
.cid-satZmjwkyp .nav-link:focus {
  outline: none;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-satZmjwkyp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-satZmjwkyp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-satZmjwkyp .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-satZmjwkyp .navbar.opened {
  transition: all .3s;
}
.cid-satZmjwkyp .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-satZmjwkyp .navbar .navbar-logo img {
  width: auto;
}
.cid-satZmjwkyp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-satZmjwkyp .navbar.collapsed {
  justify-content: center;
}
.cid-satZmjwkyp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-satZmjwkyp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-satZmjwkyp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-satZmjwkyp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-satZmjwkyp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-satZmjwkyp .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-satZmjwkyp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-satZmjwkyp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-satZmjwkyp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-satZmjwkyp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-satZmjwkyp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-satZmjwkyp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-satZmjwkyp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-satZmjwkyp .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-satZmjwkyp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-satZmjwkyp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-satZmjwkyp .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-satZmjwkyp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-satZmjwkyp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-satZmjwkyp .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-satZmjwkyp .navbar.navbar-short {
  min-height: 60px;
}
.cid-satZmjwkyp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-satZmjwkyp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-satZmjwkyp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-satZmjwkyp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-satZmjwkyp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-satZmjwkyp .dropdown-item.active,
.cid-satZmjwkyp .dropdown-item:active {
  background-color: transparent;
}
.cid-satZmjwkyp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-satZmjwkyp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-satZmjwkyp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-satZmjwkyp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-satZmjwkyp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-satZmjwkyp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-satZmjwkyp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-satZmjwkyp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-satZmjwkyp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-satZmjwkyp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-satZmjwkyp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-satZmjwkyp .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-satZmjwkyp .navbar {
    height: 70px;
  }
  .cid-satZmjwkyp .navbar.opened {
    height: auto;
  }
  .cid-satZmjwkyp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sjTeYcugGc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sjTeYcugGc .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sjTeYcugGc .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sjTeYcugGc .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sjTeYcugGc .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sjTeYcugGc .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-sjTeYcugGc .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sjTeYcugGc .carousel-control,
.cid-sjTeYcugGc .close {
  background: #1b1b1b;
}
.cid-sjTeYcugGc .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sjTeYcugGc .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sjTeYcugGc .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sjTeYcugGc .carousel-control-next span {
  margin-left: 5px;
}
.cid-sjTeYcugGc .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-sjTeYcugGc .close::before {
  content: '\e91a';
}
.cid-sjTeYcugGc .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sjTeYcugGc .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-sjTeYcugGc .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjTeYcugGc .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sjTeYcugGc .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sjTeYcugGc .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sjTeYcugGc .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-sjTeYcugGc .carousel-indicators li.active,
.cid-sjTeYcugGc .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sjTeYcugGc .carousel-indicators li::after,
.cid-sjTeYcugGc .carousel-indicators li::before {
  content: none;
}
.cid-sjTeYcugGc .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sjTeYcugGc .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sjTeYcugGc .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sjTeYcugGc .carousel-indicators {
    display: none;
  }
}
.cid-sjTeYcugGc .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sjTeYcugGc .carousel-inner > .active {
  display: block;
}
.cid-sjTeYcugGc .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjTeYcugGc .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjTeYcugGc .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sjTeYcugGc .carousel-control,
  .cid-sjTeYcugGc .carousel-indicators,
  .cid-sjTeYcugGc .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sjTeYcugGc .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sjTeYcugGc .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sjTeYcugGc .carousel-indicators .active,
.cid-sjTeYcugGc .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sjTeYcugGc .carousel-indicators .active {
  background: #fff;
}
.cid-sjTeYcugGc .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sjTeYcugGc .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sjTeYcugGc .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sjTeYcugGc .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sjTeYcugGc .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sjTeYcugGc .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sjTeYcugGc .carousel {
  width: 100%;
}
.cid-sjTeYcugGc .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sjTeYcugGc .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sjTeYcugGc .modal.fade .modal-dialog,
.cid-sjTeYcugGc .modal.in .modal-dialog {
  transform: none;
}
.cid-sjTeYcugGc .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sjTeYcugGc H6 {
  text-align: center;
}
.cid-saucCyQz9S {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-saucCyQz9S .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-saucCyQz9S .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-saucCyQz9S .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-saucCyQz9S .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-saucCyQz9S .list {
    margin-bottom: 0rem;
  }
}
.cid-saucCyQz9S .mbr-text {
  color: #000000;
}
.cid-saucCyQz9S .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-saucCyQz9S .mbr-iconfont {
  color: black;
}
.cid-saucCyQz9S H5 {
  color: #000000;
}
.cid-satZmjwkyp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-satZmjwkyp nav.navbar {
  position: fixed;
}
.cid-satZmjwkyp .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-satZmjwkyp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-satZmjwkyp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-satZmjwkyp .dropdown-item:hover,
.cid-satZmjwkyp .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-satZmjwkyp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-satZmjwkyp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-satZmjwkyp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-satZmjwkyp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-satZmjwkyp .nav-link {
  position: relative;
}
.cid-satZmjwkyp .container {
  display: flex;
  margin: auto;
}
.cid-satZmjwkyp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-satZmjwkyp .dropdown-menu,
.cid-satZmjwkyp .navbar.opened {
  background: #ffffff !important;
}
.cid-satZmjwkyp .nav-item:focus,
.cid-satZmjwkyp .nav-link:focus {
  outline: none;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-satZmjwkyp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-satZmjwkyp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-satZmjwkyp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-satZmjwkyp .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-satZmjwkyp .navbar.opened {
  transition: all .3s;
}
.cid-satZmjwkyp .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-satZmjwkyp .navbar .navbar-logo img {
  width: auto;
}
.cid-satZmjwkyp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-satZmjwkyp .navbar.collapsed {
  justify-content: center;
}
.cid-satZmjwkyp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-satZmjwkyp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-satZmjwkyp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-satZmjwkyp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-satZmjwkyp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-satZmjwkyp .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-satZmjwkyp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-satZmjwkyp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-satZmjwkyp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-satZmjwkyp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-satZmjwkyp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-satZmjwkyp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-satZmjwkyp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-satZmjwkyp .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-satZmjwkyp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-satZmjwkyp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-satZmjwkyp .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-satZmjwkyp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-satZmjwkyp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-satZmjwkyp .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-satZmjwkyp .navbar.navbar-short {
  min-height: 60px;
}
.cid-satZmjwkyp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-satZmjwkyp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-satZmjwkyp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-satZmjwkyp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-satZmjwkyp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-satZmjwkyp .dropdown-item.active,
.cid-satZmjwkyp .dropdown-item:active {
  background-color: transparent;
}
.cid-satZmjwkyp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-satZmjwkyp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-satZmjwkyp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-satZmjwkyp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-satZmjwkyp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-satZmjwkyp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-satZmjwkyp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-satZmjwkyp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-satZmjwkyp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-satZmjwkyp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-satZmjwkyp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-satZmjwkyp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-satZmjwkyp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-satZmjwkyp .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-satZmjwkyp .navbar {
    height: 70px;
  }
  .cid-satZmjwkyp .navbar.opened {
    height: auto;
  }
  .cid-satZmjwkyp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sjTeKrZgIw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sjTeKrZgIw .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sjTeKrZgIw .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sjTeKrZgIw .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sjTeKrZgIw .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sjTeKrZgIw .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-sjTeKrZgIw .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sjTeKrZgIw .carousel-control,
.cid-sjTeKrZgIw .close {
  background: #1b1b1b;
}
.cid-sjTeKrZgIw .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sjTeKrZgIw .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sjTeKrZgIw .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sjTeKrZgIw .carousel-control-next span {
  margin-left: 5px;
}
.cid-sjTeKrZgIw .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-sjTeKrZgIw .close::before {
  content: '\e91a';
}
.cid-sjTeKrZgIw .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sjTeKrZgIw .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-sjTeKrZgIw .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjTeKrZgIw .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sjTeKrZgIw .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sjTeKrZgIw .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sjTeKrZgIw .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-sjTeKrZgIw .carousel-indicators li.active,
.cid-sjTeKrZgIw .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sjTeKrZgIw .carousel-indicators li::after,
.cid-sjTeKrZgIw .carousel-indicators li::before {
  content: none;
}
.cid-sjTeKrZgIw .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sjTeKrZgIw .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sjTeKrZgIw .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sjTeKrZgIw .carousel-indicators {
    display: none;
  }
}
.cid-sjTeKrZgIw .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sjTeKrZgIw .carousel-inner > .active {
  display: block;
}
.cid-sjTeKrZgIw .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjTeKrZgIw .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjTeKrZgIw .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sjTeKrZgIw .carousel-control,
  .cid-sjTeKrZgIw .carousel-indicators,
  .cid-sjTeKrZgIw .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sjTeKrZgIw .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sjTeKrZgIw .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sjTeKrZgIw .carousel-indicators .active,
.cid-sjTeKrZgIw .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sjTeKrZgIw .carousel-indicators .active {
  background: #fff;
}
.cid-sjTeKrZgIw .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sjTeKrZgIw .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sjTeKrZgIw .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sjTeKrZgIw .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sjTeKrZgIw .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sjTeKrZgIw .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sjTeKrZgIw .carousel {
  width: 100%;
}
.cid-sjTeKrZgIw .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sjTeKrZgIw .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sjTeKrZgIw .modal.fade .modal-dialog,
.cid-sjTeKrZgIw .modal.in .modal-dialog {
  transform: none;
}
.cid-sjTeKrZgIw .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sjTeKrZgIw H6 {
  text-align: center;
}
.cid-sauBpgs0Io {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-saucCyQz9S {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-saucCyQz9S .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-saucCyQz9S .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-saucCyQz9S .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-saucCyQz9S .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-saucCyQz9S .list {
    margin-bottom: 0rem;
  }
}
.cid-saucCyQz9S .mbr-text {
  color: #000000;
}
.cid-saucCyQz9S .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-saucCyQz9S .mbr-iconfont {
  color: black;
}
.cid-saucCyQz9S H5 {
  color: #000000;
}
.cid-ste62aX59j {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ste62aX59j nav.navbar {
  position: fixed;
}
.cid-ste62aX59j .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-ste62aX59j .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ste62aX59j .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ste62aX59j .dropdown-item:hover,
.cid-ste62aX59j .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-ste62aX59j .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ste62aX59j .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ste62aX59j .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-ste62aX59j .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ste62aX59j .nav-link {
  position: relative;
}
.cid-ste62aX59j .container {
  display: flex;
  margin: auto;
}
.cid-ste62aX59j .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ste62aX59j .dropdown-menu,
.cid-ste62aX59j .navbar.opened {
  background: #ffffff !important;
}
.cid-ste62aX59j .nav-item:focus,
.cid-ste62aX59j .nav-link:focus {
  outline: none;
}
.cid-ste62aX59j .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ste62aX59j .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ste62aX59j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-ste62aX59j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ste62aX59j .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ste62aX59j .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ste62aX59j .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ste62aX59j .navbar.opened {
  transition: all .3s;
}
.cid-ste62aX59j .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-ste62aX59j .navbar .navbar-logo img {
  width: auto;
}
.cid-ste62aX59j .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ste62aX59j .navbar.collapsed {
  justify-content: center;
}
.cid-ste62aX59j .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ste62aX59j .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ste62aX59j .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-ste62aX59j .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ste62aX59j .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ste62aX59j .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-ste62aX59j .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ste62aX59j .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ste62aX59j .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ste62aX59j .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ste62aX59j .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ste62aX59j .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ste62aX59j .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ste62aX59j .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-ste62aX59j .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ste62aX59j .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ste62aX59j .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ste62aX59j .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ste62aX59j .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ste62aX59j .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ste62aX59j .navbar.navbar-short {
  min-height: 60px;
}
.cid-ste62aX59j .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ste62aX59j .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ste62aX59j .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ste62aX59j .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ste62aX59j .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ste62aX59j .dropdown-item.active,
.cid-ste62aX59j .dropdown-item:active {
  background-color: transparent;
}
.cid-ste62aX59j .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ste62aX59j .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ste62aX59j .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ste62aX59j .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ste62aX59j .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ste62aX59j .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ste62aX59j ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ste62aX59j .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ste62aX59j button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-ste62aX59j button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ste62aX59j button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ste62aX59j button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ste62aX59j button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ste62aX59j button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ste62aX59j nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ste62aX59j nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ste62aX59j nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ste62aX59j nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ste62aX59j .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ste62aX59j a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ste62aX59j .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-ste62aX59j .navbar {
    height: 70px;
  }
  .cid-ste62aX59j .navbar.opened {
    height: auto;
  }
  .cid-ste62aX59j .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ste62bmRlV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ste62bmRlV .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-ste62bmRlV .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-ste62bmRlV .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-ste62bmRlV .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-ste62bmRlV .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-ste62bmRlV .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-ste62bmRlV .carousel-control,
.cid-ste62bmRlV .close {
  background: #1b1b1b;
}
.cid-ste62bmRlV .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ste62bmRlV .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ste62bmRlV .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ste62bmRlV .carousel-control-next span {
  margin-left: 5px;
}
.cid-ste62bmRlV .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-ste62bmRlV .close::before {
  content: '\e91a';
}
.cid-ste62bmRlV .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ste62bmRlV .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-ste62bmRlV .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ste62bmRlV .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ste62bmRlV .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ste62bmRlV .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ste62bmRlV .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-ste62bmRlV .carousel-indicators li.active,
.cid-ste62bmRlV .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ste62bmRlV .carousel-indicators li::after,
.cid-ste62bmRlV .carousel-indicators li::before {
  content: none;
}
.cid-ste62bmRlV .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ste62bmRlV .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ste62bmRlV .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ste62bmRlV .carousel-indicators {
    display: none;
  }
}
.cid-ste62bmRlV .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ste62bmRlV .carousel-inner > .active {
  display: block;
}
.cid-ste62bmRlV .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ste62bmRlV .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ste62bmRlV .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ste62bmRlV .carousel-control,
  .cid-ste62bmRlV .carousel-indicators,
  .cid-ste62bmRlV .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ste62bmRlV .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ste62bmRlV .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ste62bmRlV .carousel-indicators .active,
.cid-ste62bmRlV .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ste62bmRlV .carousel-indicators .active {
  background: #fff;
}
.cid-ste62bmRlV .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ste62bmRlV .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ste62bmRlV .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ste62bmRlV .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ste62bmRlV .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ste62bmRlV .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ste62bmRlV .carousel {
  width: 100%;
}
.cid-ste62bmRlV .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ste62bmRlV .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ste62bmRlV .modal.fade .modal-dialog,
.cid-ste62bmRlV .modal.in .modal-dialog {
  transform: none;
}
.cid-ste62bmRlV .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ste62bmRlV H6 {
  text-align: center;
}
.cid-ste69mDOJd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ste69mDOJd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ste69mDOJd .row {
  flex-direction: row-reverse;
}
.cid-ste69mDOJd img {
  width: 100%;
}
.cid-ste62d1nDX {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ste62d1nDX .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-ste62d1nDX .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ste62d1nDX .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-ste62d1nDX .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ste62d1nDX .list {
    margin-bottom: 0rem;
  }
}
.cid-ste62d1nDX .mbr-text {
  color: #000000;
}
.cid-ste62d1nDX .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-ste62d1nDX .mbr-iconfont {
  color: black;
}
.cid-ste62d1nDX H5 {
  color: #000000;
}
.cid-stebCFRhXc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-stebCFRhXc nav.navbar {
  position: fixed;
}
.cid-stebCFRhXc .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-stebCFRhXc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-stebCFRhXc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-stebCFRhXc .dropdown-item:hover,
.cid-stebCFRhXc .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-stebCFRhXc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-stebCFRhXc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-stebCFRhXc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-stebCFRhXc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-stebCFRhXc .nav-link {
  position: relative;
}
.cid-stebCFRhXc .container {
  display: flex;
  margin: auto;
}
.cid-stebCFRhXc .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-stebCFRhXc .dropdown-menu,
.cid-stebCFRhXc .navbar.opened {
  background: #ffffff !important;
}
.cid-stebCFRhXc .nav-item:focus,
.cid-stebCFRhXc .nav-link:focus {
  outline: none;
}
.cid-stebCFRhXc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-stebCFRhXc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stebCFRhXc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-stebCFRhXc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-stebCFRhXc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stebCFRhXc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-stebCFRhXc .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-stebCFRhXc .navbar.opened {
  transition: all .3s;
}
.cid-stebCFRhXc .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-stebCFRhXc .navbar .navbar-logo img {
  width: auto;
}
.cid-stebCFRhXc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-stebCFRhXc .navbar.collapsed {
  justify-content: center;
}
.cid-stebCFRhXc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stebCFRhXc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stebCFRhXc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-stebCFRhXc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stebCFRhXc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-stebCFRhXc .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-stebCFRhXc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-stebCFRhXc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-stebCFRhXc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-stebCFRhXc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stebCFRhXc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stebCFRhXc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stebCFRhXc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-stebCFRhXc .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-stebCFRhXc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-stebCFRhXc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-stebCFRhXc .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-stebCFRhXc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-stebCFRhXc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-stebCFRhXc .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-stebCFRhXc .navbar.navbar-short {
  min-height: 60px;
}
.cid-stebCFRhXc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-stebCFRhXc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-stebCFRhXc .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-stebCFRhXc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-stebCFRhXc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stebCFRhXc .dropdown-item.active,
.cid-stebCFRhXc .dropdown-item:active {
  background-color: transparent;
}
.cid-stebCFRhXc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-stebCFRhXc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-stebCFRhXc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-stebCFRhXc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-stebCFRhXc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-stebCFRhXc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stebCFRhXc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-stebCFRhXc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-stebCFRhXc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-stebCFRhXc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-stebCFRhXc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-stebCFRhXc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-stebCFRhXc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-stebCFRhXc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-stebCFRhXc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-stebCFRhXc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-stebCFRhXc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-stebCFRhXc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-stebCFRhXc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-stebCFRhXc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-stebCFRhXc .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-stebCFRhXc .navbar {
    height: 70px;
  }
  .cid-stebCFRhXc .navbar.opened {
    height: auto;
  }
  .cid-stebCFRhXc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-stebCGCAWL {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-stebCGCAWL .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-stebCGCAWL .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-stebCGCAWL .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-stebCGCAWL .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-stebCGCAWL .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-stebCGCAWL .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-stebCGCAWL .carousel-control,
.cid-stebCGCAWL .close {
  background: #1b1b1b;
}
.cid-stebCGCAWL .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-stebCGCAWL .carousel-control-prev span {
  margin-right: 5px;
}
.cid-stebCGCAWL .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-stebCGCAWL .carousel-control-next span {
  margin-left: 5px;
}
.cid-stebCGCAWL .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-stebCGCAWL .close::before {
  content: '\e91a';
}
.cid-stebCGCAWL .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-stebCGCAWL .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-stebCGCAWL .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stebCGCAWL .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-stebCGCAWL .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-stebCGCAWL .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-stebCGCAWL .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-stebCGCAWL .carousel-indicators li.active,
.cid-stebCGCAWL .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-stebCGCAWL .carousel-indicators li::after,
.cid-stebCGCAWL .carousel-indicators li::before {
  content: none;
}
.cid-stebCGCAWL .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-stebCGCAWL .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-stebCGCAWL .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-stebCGCAWL .carousel-indicators {
    display: none;
  }
}
.cid-stebCGCAWL .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-stebCGCAWL .carousel-inner > .active {
  display: block;
}
.cid-stebCGCAWL .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stebCGCAWL .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-stebCGCAWL .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-stebCGCAWL .carousel-control,
  .cid-stebCGCAWL .carousel-indicators,
  .cid-stebCGCAWL .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-stebCGCAWL .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-stebCGCAWL .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-stebCGCAWL .carousel-indicators .active,
.cid-stebCGCAWL .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-stebCGCAWL .carousel-indicators .active {
  background: #fff;
}
.cid-stebCGCAWL .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-stebCGCAWL .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-stebCGCAWL .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-stebCGCAWL .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-stebCGCAWL .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-stebCGCAWL .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-stebCGCAWL .carousel {
  width: 100%;
}
.cid-stebCGCAWL .modal-backdrop.in {
  opacity: 0.8;
}
.cid-stebCGCAWL .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-stebCGCAWL .modal.fade .modal-dialog,
.cid-stebCGCAWL .modal.in .modal-dialog {
  transform: none;
}
.cid-stebCGCAWL .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-stebCGCAWL H6 {
  text-align: center;
}
.cid-stebCHi0Zz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-stebCHi0Zz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-stebCHi0Zz .row {
  flex-direction: row-reverse;
}
.cid-stebCHi0Zz img {
  width: 100%;
}
.cid-stebCHALRK {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-stebCHALRK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-stebCHALRK .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-stebCHALRK .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-stebCHALRK .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-stebCHALRK .list {
    margin-bottom: 0rem;
  }
}
.cid-stebCHALRK .mbr-text {
  color: #000000;
}
.cid-stebCHALRK .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-stebCHALRK .mbr-iconfont {
  color: black;
}
.cid-stebCHALRK H5 {
  color: #000000;
}
.cid-sU9pBlIiUx {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sU9pBlIiUx nav.navbar {
  position: fixed;
}
.cid-sU9pBlIiUx .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-sU9pBlIiUx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sU9pBlIiUx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sU9pBlIiUx .dropdown-item:hover,
.cid-sU9pBlIiUx .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sU9pBlIiUx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sU9pBlIiUx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sU9pBlIiUx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sU9pBlIiUx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sU9pBlIiUx .nav-link {
  position: relative;
}
.cid-sU9pBlIiUx .container {
  display: flex;
  margin: auto;
}
.cid-sU9pBlIiUx .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sU9pBlIiUx .dropdown-menu,
.cid-sU9pBlIiUx .navbar.opened {
  background: #ffffff !important;
}
.cid-sU9pBlIiUx .nav-item:focus,
.cid-sU9pBlIiUx .nav-link:focus {
  outline: none;
}
.cid-sU9pBlIiUx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sU9pBlIiUx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sU9pBlIiUx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-sU9pBlIiUx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sU9pBlIiUx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sU9pBlIiUx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sU9pBlIiUx .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sU9pBlIiUx .navbar.opened {
  transition: all .3s;
}
.cid-sU9pBlIiUx .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sU9pBlIiUx .navbar .navbar-logo img {
  width: auto;
}
.cid-sU9pBlIiUx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sU9pBlIiUx .navbar.collapsed {
  justify-content: center;
}
.cid-sU9pBlIiUx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sU9pBlIiUx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sU9pBlIiUx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sU9pBlIiUx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sU9pBlIiUx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sU9pBlIiUx .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-sU9pBlIiUx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sU9pBlIiUx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sU9pBlIiUx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sU9pBlIiUx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sU9pBlIiUx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sU9pBlIiUx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sU9pBlIiUx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sU9pBlIiUx .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-sU9pBlIiUx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sU9pBlIiUx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sU9pBlIiUx .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sU9pBlIiUx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sU9pBlIiUx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sU9pBlIiUx .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sU9pBlIiUx .navbar.navbar-short {
  min-height: 60px;
}
.cid-sU9pBlIiUx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sU9pBlIiUx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sU9pBlIiUx .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sU9pBlIiUx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sU9pBlIiUx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sU9pBlIiUx .dropdown-item.active,
.cid-sU9pBlIiUx .dropdown-item:active {
  background-color: transparent;
}
.cid-sU9pBlIiUx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sU9pBlIiUx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sU9pBlIiUx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sU9pBlIiUx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sU9pBlIiUx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sU9pBlIiUx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sU9pBlIiUx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sU9pBlIiUx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sU9pBlIiUx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sU9pBlIiUx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sU9pBlIiUx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sU9pBlIiUx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sU9pBlIiUx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sU9pBlIiUx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sU9pBlIiUx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sU9pBlIiUx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sU9pBlIiUx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sU9pBlIiUx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sU9pBlIiUx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sU9pBlIiUx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sU9pBlIiUx .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-sU9pBlIiUx .navbar {
    height: 70px;
  }
  .cid-sU9pBlIiUx .navbar.opened {
    height: auto;
  }
  .cid-sU9pBlIiUx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sU9pBm0U9U {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sU9pBm0U9U .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sU9pBm0U9U .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sU9pBm0U9U .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sU9pBm0U9U .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sU9pBm0U9U .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-sU9pBm0U9U .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sU9pBm0U9U .carousel-control,
.cid-sU9pBm0U9U .close {
  background: #1b1b1b;
}
.cid-sU9pBm0U9U .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sU9pBm0U9U .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sU9pBm0U9U .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sU9pBm0U9U .carousel-control-next span {
  margin-left: 5px;
}
.cid-sU9pBm0U9U .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-sU9pBm0U9U .close::before {
  content: '\e91a';
}
.cid-sU9pBm0U9U .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sU9pBm0U9U .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-sU9pBm0U9U .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sU9pBm0U9U .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sU9pBm0U9U .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sU9pBm0U9U .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sU9pBm0U9U .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-sU9pBm0U9U .carousel-indicators li.active,
.cid-sU9pBm0U9U .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sU9pBm0U9U .carousel-indicators li::after,
.cid-sU9pBm0U9U .carousel-indicators li::before {
  content: none;
}
.cid-sU9pBm0U9U .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sU9pBm0U9U .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sU9pBm0U9U .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sU9pBm0U9U .carousel-indicators {
    display: none;
  }
}
.cid-sU9pBm0U9U .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sU9pBm0U9U .carousel-inner > .active {
  display: block;
}
.cid-sU9pBm0U9U .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sU9pBm0U9U .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sU9pBm0U9U .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sU9pBm0U9U .carousel-control,
  .cid-sU9pBm0U9U .carousel-indicators,
  .cid-sU9pBm0U9U .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sU9pBm0U9U .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sU9pBm0U9U .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sU9pBm0U9U .carousel-indicators .active,
.cid-sU9pBm0U9U .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sU9pBm0U9U .carousel-indicators .active {
  background: #fff;
}
.cid-sU9pBm0U9U .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sU9pBm0U9U .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sU9pBm0U9U .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sU9pBm0U9U .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sU9pBm0U9U .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sU9pBm0U9U .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sU9pBm0U9U .carousel {
  width: 100%;
}
.cid-sU9pBm0U9U .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sU9pBm0U9U .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sU9pBm0U9U .modal.fade .modal-dialog,
.cid-sU9pBm0U9U .modal.in .modal-dialog {
  transform: none;
}
.cid-sU9pBm0U9U .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sU9pBm0U9U H6 {
  text-align: center;
}
.cid-uonOLkL8HO {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-uonOLkL8HO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uonOLkL8HO .row {
  flex-direction: row-reverse;
}
.cid-uonOLkL8HO img {
  width: 100%;
}
.cid-uonOKqNBAU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffb18a;
}
.cid-uonOKqNBAU .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uonOKqNBAU .image-wrap img {
    display: block;
    margin: auto;
    width: 20%;
  }
}
.cid-uonOKqNBAU .mbr-text,
.cid-uonOKqNBAU .mbr-section-btn {
  text-align: center;
}
.cid-uonOIOJEt6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffb18a;
}
.cid-uonOIOJEt6 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uonOIOJEt6 .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-uonOIOJEt6 .mbr-text,
.cid-uonOIOJEt6 .mbr-section-btn {
  text-align: left;
}
.cid-t8ywxwHRxk {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-t8ywxwHRxk .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t8ywxwHRxk .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-t8ywxwHRxk .mbr-text,
.cid-t8ywxwHRxk .mbr-section-btn {
  text-align: left;
}
.cid-t8ywwGAy3D {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-t8ywwGAy3D .carousel {
    min-height: 700px;
  }
  .cid-t8ywwGAy3D .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-t8ywwGAy3D .carousel {
    min-height: 455px;
  }
  .cid-t8ywwGAy3D .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-t8ywwGAy3D .carousel {
    min-height: 385px;
  }
  .cid-t8ywwGAy3D .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-t8ywwGAy3D .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-t8ywwGAy3D .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-t8ywwGAy3D .carousel,
.cid-t8ywwGAy3D .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t8ywwGAy3D .item-wrapper {
  width: 100%;
}
.cid-t8ywwGAy3D .carousel-caption {
  bottom: 40px;
}
.cid-t8ywwGAy3D .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-t8ywwGAy3D .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-t8ywwGAy3D .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-t8ywwGAy3D .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t8ywwGAy3D .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-t8ywwGAy3D .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8ywwGAy3D .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t8ywwGAy3D .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t8ywwGAy3D .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-t8ywwGAy3D .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-t8ywwGAy3D .carousel-indicators li.active,
.cid-t8ywwGAy3D .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t8ywwGAy3D .carousel-indicators li::after,
.cid-t8ywwGAy3D .carousel-indicators li::before {
  content: none;
}
.cid-t8ywwGAy3D .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t8ywwGAy3D .carousel-indicators {
    display: none !important;
  }
}
.cid-t8ywvTpwDg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-t8ywvTpwDg .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t8ywvTpwDg .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-t8ywvTpwDg .mbr-text,
.cid-t8ywvTpwDg .mbr-section-btn {
  text-align: left;
}
.cid-t8ywua0oDo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
@media (min-width: 992px) {
  .cid-t8ywua0oDo .carousel {
    min-height: 700px;
  }
  .cid-t8ywua0oDo .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-t8ywua0oDo .carousel {
    min-height: 455px;
  }
  .cid-t8ywua0oDo .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-t8ywua0oDo .carousel {
    min-height: 385px;
  }
  .cid-t8ywua0oDo .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-t8ywua0oDo .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-t8ywua0oDo .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-t8ywua0oDo .carousel,
.cid-t8ywua0oDo .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t8ywua0oDo .item-wrapper {
  width: 100%;
}
.cid-t8ywua0oDo .carousel-caption {
  bottom: 40px;
}
.cid-t8ywua0oDo .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-t8ywua0oDo .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-t8ywua0oDo .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-t8ywua0oDo .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t8ywua0oDo .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-t8ywua0oDo .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8ywua0oDo .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t8ywua0oDo .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t8ywua0oDo .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-t8ywua0oDo .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-t8ywua0oDo .carousel-indicators li.active,
.cid-t8ywua0oDo .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t8ywua0oDo .carousel-indicators li::after,
.cid-t8ywua0oDo .carousel-indicators li::before {
  content: none;
}
.cid-t8ywua0oDo .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t8ywua0oDo .carousel-indicators {
    display: none !important;
  }
}
.cid-t8ywtj62l2 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-t8ywtj62l2 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t8ywtj62l2 .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-t8ywtj62l2 .mbr-text,
.cid-t8ywtj62l2 .mbr-section-btn {
  text-align: left;
}
.cid-t8ywsEFMjZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-t8ywsEFMjZ .carousel {
    min-height: 700px;
  }
  .cid-t8ywsEFMjZ .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-t8ywsEFMjZ .carousel {
    min-height: 455px;
  }
  .cid-t8ywsEFMjZ .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-t8ywsEFMjZ .carousel {
    min-height: 385px;
  }
  .cid-t8ywsEFMjZ .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-t8ywsEFMjZ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-t8ywsEFMjZ .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-t8ywsEFMjZ .carousel,
.cid-t8ywsEFMjZ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t8ywsEFMjZ .item-wrapper {
  width: 100%;
}
.cid-t8ywsEFMjZ .carousel-caption {
  bottom: 40px;
}
.cid-t8ywsEFMjZ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-t8ywsEFMjZ .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-t8ywsEFMjZ .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-t8ywsEFMjZ .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t8ywsEFMjZ .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-t8ywsEFMjZ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8ywsEFMjZ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t8ywsEFMjZ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t8ywsEFMjZ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-t8ywsEFMjZ .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-t8ywsEFMjZ .carousel-indicators li.active,
.cid-t8ywsEFMjZ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t8ywsEFMjZ .carousel-indicators li::after,
.cid-t8ywsEFMjZ .carousel-indicators li::before {
  content: none;
}
.cid-t8ywsEFMjZ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t8ywsEFMjZ .carousel-indicators {
    display: none !important;
  }
}
.cid-t8ywrDJ6zC {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-t8ywrDJ6zC .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t8ywrDJ6zC .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-t8ywrDJ6zC .mbr-text,
.cid-t8ywrDJ6zC .mbr-section-btn {
  text-align: left;
}
.cid-t8ywqhgbrB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
@media (min-width: 992px) {
  .cid-t8ywqhgbrB .carousel {
    min-height: 700px;
  }
  .cid-t8ywqhgbrB .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-t8ywqhgbrB .carousel {
    min-height: 455px;
  }
  .cid-t8ywqhgbrB .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-t8ywqhgbrB .carousel {
    min-height: 385px;
  }
  .cid-t8ywqhgbrB .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-t8ywqhgbrB .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-t8ywqhgbrB .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-t8ywqhgbrB .carousel,
.cid-t8ywqhgbrB .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t8ywqhgbrB .item-wrapper {
  width: 100%;
}
.cid-t8ywqhgbrB .carousel-caption {
  bottom: 40px;
}
.cid-t8ywqhgbrB .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-t8ywqhgbrB .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-t8ywqhgbrB .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-t8ywqhgbrB .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t8ywqhgbrB .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-t8ywqhgbrB .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8ywqhgbrB .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t8ywqhgbrB .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t8ywqhgbrB .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-t8ywqhgbrB .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-t8ywqhgbrB .carousel-indicators li.active,
.cid-t8ywqhgbrB .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t8ywqhgbrB .carousel-indicators li::after,
.cid-t8ywqhgbrB .carousel-indicators li::before {
  content: none;
}
.cid-t8ywqhgbrB .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t8ywqhgbrB .carousel-indicators {
    display: none !important;
  }
}
.cid-t8ywnqyMlG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-t8ywnqyMlG .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t8ywnqyMlG .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-t8ywnqyMlG .mbr-text,
.cid-t8ywnqyMlG .mbr-section-btn {
  text-align: left;
}
.cid-t8ywmKWDKW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-t8ywmKWDKW .carousel {
    min-height: 700px;
  }
  .cid-t8ywmKWDKW .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-t8ywmKWDKW .carousel {
    min-height: 455px;
  }
  .cid-t8ywmKWDKW .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-t8ywmKWDKW .carousel {
    min-height: 385px;
  }
  .cid-t8ywmKWDKW .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-t8ywmKWDKW .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-t8ywmKWDKW .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-t8ywmKWDKW .carousel,
.cid-t8ywmKWDKW .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t8ywmKWDKW .item-wrapper {
  width: 100%;
}
.cid-t8ywmKWDKW .carousel-caption {
  bottom: 40px;
}
.cid-t8ywmKWDKW .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-t8ywmKWDKW .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-t8ywmKWDKW .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-t8ywmKWDKW .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t8ywmKWDKW .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-t8ywmKWDKW .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8ywmKWDKW .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t8ywmKWDKW .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t8ywmKWDKW .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-t8ywmKWDKW .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-t8ywmKWDKW .carousel-indicators li.active,
.cid-t8ywmKWDKW .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t8ywmKWDKW .carousel-indicators li::after,
.cid-t8ywmKWDKW .carousel-indicators li::before {
  content: none;
}
.cid-t8ywmKWDKW .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t8ywmKWDKW .carousel-indicators {
    display: none !important;
  }
}
.cid-t8ywUccSJm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffb5b5;
}
.cid-t8ywUccSJm .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t8ywUccSJm .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-sYtOJQ6q9W {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-sYtOJQ6q9W .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sYtOJQ6q9W .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-sYtOJQ6q9W .mbr-text,
.cid-sYtOJQ6q9W .mbr-section-btn {
  text-align: left;
}
.cid-sYtOOwERIQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-sYtOOwERIQ .carousel {
    min-height: 700px;
  }
  .cid-sYtOOwERIQ .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sYtOOwERIQ .carousel {
    min-height: 455px;
  }
  .cid-sYtOOwERIQ .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sYtOOwERIQ .carousel {
    min-height: 385px;
  }
  .cid-sYtOOwERIQ .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-sYtOOwERIQ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sYtOOwERIQ .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sYtOOwERIQ .carousel,
.cid-sYtOOwERIQ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sYtOOwERIQ .item-wrapper {
  width: 100%;
}
.cid-sYtOOwERIQ .carousel-caption {
  bottom: 40px;
}
.cid-sYtOOwERIQ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sYtOOwERIQ .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sYtOOwERIQ .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sYtOOwERIQ .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sYtOOwERIQ .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-sYtOOwERIQ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sYtOOwERIQ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sYtOOwERIQ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sYtOOwERIQ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sYtOOwERIQ .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-sYtOOwERIQ .carousel-indicators li.active,
.cid-sYtOOwERIQ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sYtOOwERIQ .carousel-indicators li::after,
.cid-sYtOOwERIQ .carousel-indicators li::before {
  content: none;
}
.cid-sYtOOwERIQ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sYtOOwERIQ .carousel-indicators {
    display: none !important;
  }
}
.cid-sYtOI4b6jB {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-sYtOI4b6jB .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sYtOI4b6jB .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-sYtOI4b6jB .mbr-text,
.cid-sYtOI4b6jB .mbr-section-btn {
  text-align: left;
}
.cid-sYtOIyN2qE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
@media (min-width: 992px) {
  .cid-sYtOIyN2qE .carousel {
    min-height: 600px;
  }
  .cid-sYtOIyN2qE .carousel img {
    max-height: 600px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sYtOIyN2qE .carousel {
    min-height: 390px;
  }
  .cid-sYtOIyN2qE .carousel img {
    max-height: 390px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sYtOIyN2qE .carousel {
    min-height: 330px;
  }
  .cid-sYtOIyN2qE .carousel img {
    max-height: 330px;
    object-fit: contain;
  }
  .cid-sYtOIyN2qE .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sYtOIyN2qE .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sYtOIyN2qE .carousel,
.cid-sYtOIyN2qE .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sYtOIyN2qE .item-wrapper {
  width: 100%;
}
.cid-sYtOIyN2qE .carousel-caption {
  bottom: 40px;
}
.cid-sYtOIyN2qE .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sYtOIyN2qE .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sYtOIyN2qE .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sYtOIyN2qE .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sYtOIyN2qE .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-sYtOIyN2qE .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sYtOIyN2qE .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sYtOIyN2qE .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sYtOIyN2qE .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sYtOIyN2qE .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-sYtOIyN2qE .carousel-indicators li.active,
.cid-sYtOIyN2qE .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sYtOIyN2qE .carousel-indicators li::after,
.cid-sYtOIyN2qE .carousel-indicators li::before {
  content: none;
}
.cid-sYtOIyN2qE .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sYtOIyN2qE .carousel-indicators {
    display: none !important;
  }
}
.cid-sU9qxdIHwW {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-sU9qxdIHwW .mbr-section-subtitle {
  text-align: left;
}
.cid-sU9qxYAZ4O {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-sU9qyDpRsW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-sU9qyDpRsW .carousel {
    min-height: 700px;
  }
  .cid-sU9qyDpRsW .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sU9qyDpRsW .carousel {
    min-height: 455px;
  }
  .cid-sU9qyDpRsW .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sU9qyDpRsW .carousel {
    min-height: 385px;
  }
  .cid-sU9qyDpRsW .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-sU9qyDpRsW .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sU9qyDpRsW .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sU9qyDpRsW .carousel,
.cid-sU9qyDpRsW .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sU9qyDpRsW .item-wrapper {
  width: 100%;
}
.cid-sU9qyDpRsW .carousel-caption {
  bottom: 40px;
}
.cid-sU9qyDpRsW .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sU9qyDpRsW .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sU9qyDpRsW .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sU9qyDpRsW .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sU9qyDpRsW .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-sU9qyDpRsW .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sU9qyDpRsW .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sU9qyDpRsW .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sU9qyDpRsW .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sU9qyDpRsW .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-sU9qyDpRsW .carousel-indicators li.active,
.cid-sU9qyDpRsW .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sU9qyDpRsW .carousel-indicators li::after,
.cid-sU9qyDpRsW .carousel-indicators li::before {
  content: none;
}
.cid-sU9qyDpRsW .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sU9qyDpRsW .carousel-indicators {
    display: none !important;
  }
}
.cid-sU9qzQ1NkH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffb18a;
}
@media (max-width: 991px) {
  .cid-sU9qzQ1NkH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sU9qzQ1NkH .row {
  flex-direction: row-reverse;
}
.cid-sU9qzQ1NkH img {
  width: 100%;
}
.cid-sU9quXp6zy {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-sU9quXp6zy .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sU9quXp6zy .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-sU9quXp6zy .mbr-text,
.cid-sU9quXp6zy .mbr-section-btn {
  text-align: left;
}
.cid-sU9qwcRm20 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-sU9qwcRm20 .carousel {
    min-height: 500px;
  }
  .cid-sU9qwcRm20 .carousel img {
    max-height: 500px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sU9qwcRm20 .carousel {
    min-height: 325px;
  }
  .cid-sU9qwcRm20 .carousel img {
    max-height: 325px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sU9qwcRm20 .carousel {
    min-height: 275px;
  }
  .cid-sU9qwcRm20 .carousel img {
    max-height: 275px;
    object-fit: contain;
  }
  .cid-sU9qwcRm20 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sU9qwcRm20 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sU9qwcRm20 .carousel,
.cid-sU9qwcRm20 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sU9qwcRm20 .item-wrapper {
  width: 100%;
}
.cid-sU9qwcRm20 .carousel-caption {
  bottom: 40px;
}
.cid-sU9qwcRm20 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sU9qwcRm20 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sU9qwcRm20 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sU9qwcRm20 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sU9qwcRm20 .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-sU9qwcRm20 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sU9qwcRm20 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sU9qwcRm20 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sU9qwcRm20 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sU9qwcRm20 .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-sU9qwcRm20 .carousel-indicators li.active,
.cid-sU9qwcRm20 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sU9qwcRm20 .carousel-indicators li::after,
.cid-sU9qwcRm20 .carousel-indicators li::before {
  content: none;
}
.cid-sU9qwcRm20 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sU9qwcRm20 .carousel-indicators {
    display: none !important;
  }
}
.cid-sU9qtghD7l {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-sU9qtghD7l .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sU9qtghD7l .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-sU9qtghD7l .mbr-text,
.cid-sU9qtghD7l .mbr-section-btn {
  text-align: left;
}
.cid-sU9qsgsRIG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-sU9qsgsRIG .carousel {
    min-height: 600px;
  }
  .cid-sU9qsgsRIG .carousel img {
    max-height: 600px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sU9qsgsRIG .carousel {
    min-height: 390px;
  }
  .cid-sU9qsgsRIG .carousel img {
    max-height: 390px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sU9qsgsRIG .carousel {
    min-height: 330px;
  }
  .cid-sU9qsgsRIG .carousel img {
    max-height: 330px;
    object-fit: contain;
  }
  .cid-sU9qsgsRIG .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sU9qsgsRIG .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sU9qsgsRIG .carousel,
.cid-sU9qsgsRIG .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sU9qsgsRIG .item-wrapper {
  width: 100%;
}
.cid-sU9qsgsRIG .carousel-caption {
  bottom: 40px;
}
.cid-sU9qsgsRIG .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sU9qsgsRIG .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sU9qsgsRIG .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sU9qsgsRIG .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sU9qsgsRIG .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-sU9qsgsRIG .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sU9qsgsRIG .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sU9qsgsRIG .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sU9qsgsRIG .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sU9qsgsRIG .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-sU9qsgsRIG .carousel-indicators li.active,
.cid-sU9qsgsRIG .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sU9qsgsRIG .carousel-indicators li::after,
.cid-sU9qsgsRIG .carousel-indicators li::before {
  content: none;
}
.cid-sU9qsgsRIG .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sU9qsgsRIG .carousel-indicators {
    display: none !important;
  }
}
.cid-sU9qrcHjVg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sU9qrcHjVg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sU9qrcHjVg .row {
  flex-direction: row-reverse;
}
.cid-sU9qrcHjVg img {
  width: 100%;
}
.cid-sU9pBnnIpy {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sU9pBnnIpy .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sU9pBnnIpy .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sU9pBnnIpy .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-sU9pBnnIpy .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sU9pBnnIpy .list {
    margin-bottom: 0rem;
  }
}
.cid-sU9pBnnIpy .mbr-text {
  color: #000000;
}
.cid-sU9pBnnIpy .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-sU9pBnnIpy .mbr-iconfont {
  color: black;
}
.cid-sU9pBnnIpy H5 {
  color: #000000;
}
.cid-uBciVj9Y2c {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uBciVj9Y2c nav.navbar {
  position: fixed;
}
.cid-uBciVj9Y2c .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-uBciVj9Y2c .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBciVj9Y2c .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBciVj9Y2c .dropdown-item:hover,
.cid-uBciVj9Y2c .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uBciVj9Y2c .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBciVj9Y2c .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBciVj9Y2c .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uBciVj9Y2c .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBciVj9Y2c .nav-link {
  position: relative;
}
.cid-uBciVj9Y2c .container {
  display: flex;
  margin: auto;
}
.cid-uBciVj9Y2c .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uBciVj9Y2c .dropdown-menu,
.cid-uBciVj9Y2c .navbar.opened {
  background: #ffffff !important;
}
.cid-uBciVj9Y2c .nav-item:focus,
.cid-uBciVj9Y2c .nav-link:focus {
  outline: none;
}
.cid-uBciVj9Y2c .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBciVj9Y2c .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBciVj9Y2c .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-uBciVj9Y2c .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBciVj9Y2c .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBciVj9Y2c .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBciVj9Y2c .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uBciVj9Y2c .navbar.opened {
  transition: all .3s;
}
.cid-uBciVj9Y2c .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uBciVj9Y2c .navbar .navbar-logo img {
  width: auto;
}
.cid-uBciVj9Y2c .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBciVj9Y2c .navbar.collapsed {
  justify-content: center;
}
.cid-uBciVj9Y2c .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBciVj9Y2c .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBciVj9Y2c .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uBciVj9Y2c .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBciVj9Y2c .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBciVj9Y2c .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-uBciVj9Y2c .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBciVj9Y2c .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uBciVj9Y2c .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uBciVj9Y2c .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBciVj9Y2c .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBciVj9Y2c .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBciVj9Y2c .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBciVj9Y2c .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-uBciVj9Y2c .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBciVj9Y2c .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBciVj9Y2c .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBciVj9Y2c .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBciVj9Y2c .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBciVj9Y2c .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uBciVj9Y2c .navbar.navbar-short {
  min-height: 60px;
}
.cid-uBciVj9Y2c .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBciVj9Y2c .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uBciVj9Y2c .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uBciVj9Y2c .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBciVj9Y2c .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBciVj9Y2c .dropdown-item.active,
.cid-uBciVj9Y2c .dropdown-item:active {
  background-color: transparent;
}
.cid-uBciVj9Y2c .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBciVj9Y2c .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBciVj9Y2c .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBciVj9Y2c .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uBciVj9Y2c .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBciVj9Y2c .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBciVj9Y2c ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBciVj9Y2c .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uBciVj9Y2c button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uBciVj9Y2c button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uBciVj9Y2c button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uBciVj9Y2c button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uBciVj9Y2c button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uBciVj9Y2c button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uBciVj9Y2c nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBciVj9Y2c nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uBciVj9Y2c nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uBciVj9Y2c nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBciVj9Y2c .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uBciVj9Y2c a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBciVj9Y2c .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-uBciVj9Y2c .navbar {
    height: 70px;
  }
  .cid-uBciVj9Y2c .navbar.opened {
    height: auto;
  }
  .cid-uBciVj9Y2c .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBciVjVX8X {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uBciVjVX8X .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uBciVjVX8X .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uBciVjVX8X .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uBciVjVX8X .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uBciVjVX8X .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-uBciVjVX8X .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uBciVjVX8X .carousel-control,
.cid-uBciVjVX8X .close {
  background: #1b1b1b;
}
.cid-uBciVjVX8X .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uBciVjVX8X .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uBciVjVX8X .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uBciVjVX8X .carousel-control-next span {
  margin-left: 5px;
}
.cid-uBciVjVX8X .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-uBciVjVX8X .close::before {
  content: '\e91a';
}
.cid-uBciVjVX8X .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uBciVjVX8X .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-uBciVjVX8X .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBciVjVX8X .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBciVjVX8X .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBciVjVX8X .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uBciVjVX8X .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-uBciVjVX8X .carousel-indicators li.active,
.cid-uBciVjVX8X .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBciVjVX8X .carousel-indicators li::after,
.cid-uBciVjVX8X .carousel-indicators li::before {
  content: none;
}
.cid-uBciVjVX8X .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBciVjVX8X .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uBciVjVX8X .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uBciVjVX8X .carousel-indicators {
    display: none;
  }
}
.cid-uBciVjVX8X .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBciVjVX8X .carousel-inner > .active {
  display: block;
}
.cid-uBciVjVX8X .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBciVjVX8X .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uBciVjVX8X .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uBciVjVX8X .carousel-control,
  .cid-uBciVjVX8X .carousel-indicators,
  .cid-uBciVjVX8X .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uBciVjVX8X .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uBciVjVX8X .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uBciVjVX8X .carousel-indicators .active,
.cid-uBciVjVX8X .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uBciVjVX8X .carousel-indicators .active {
  background: #fff;
}
.cid-uBciVjVX8X .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uBciVjVX8X .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uBciVjVX8X .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uBciVjVX8X .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uBciVjVX8X .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uBciVjVX8X .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uBciVjVX8X .carousel {
  width: 100%;
}
.cid-uBciVjVX8X .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uBciVjVX8X .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uBciVjVX8X .modal.fade .modal-dialog,
.cid-uBciVjVX8X .modal.in .modal-dialog {
  transform: none;
}
.cid-uBciVjVX8X .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uBciVjVX8X H6 {
  text-align: center;
}
.cid-uBciVkLWp8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBcmuC1bn5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uBcmuC1bn5 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBcmuC1bn5 .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBcmuC1bn5 .mbr-text,
.cid-uBcmuC1bn5 .mbr-section-btn {
  text-align: left;
}
.cid-uBcmtYPP55 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBcmtYPP55 .carousel {
    min-height: 700px;
  }
  .cid-uBcmtYPP55 .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcmtYPP55 .carousel {
    min-height: 455px;
  }
  .cid-uBcmtYPP55 .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcmtYPP55 .carousel {
    min-height: 385px;
  }
  .cid-uBcmtYPP55 .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcmtYPP55 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcmtYPP55 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcmtYPP55 .carousel,
.cid-uBcmtYPP55 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcmtYPP55 .item-wrapper {
  width: 100%;
}
.cid-uBcmtYPP55 .carousel-caption {
  bottom: 40px;
}
.cid-uBcmtYPP55 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcmtYPP55 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcmtYPP55 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcmtYPP55 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcmtYPP55 .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-uBcmtYPP55 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcmtYPP55 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcmtYPP55 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcmtYPP55 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcmtYPP55 .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-uBcmtYPP55 .carousel-indicators li.active,
.cid-uBcmtYPP55 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcmtYPP55 .carousel-indicators li::after,
.cid-uBcmtYPP55 .carousel-indicators li::before {
  content: none;
}
.cid-uBcmtYPP55 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcmtYPP55 .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcmtbpyOM {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-uBcmtbpyOM .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBcmtbpyOM .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBcmtbpyOM .mbr-text,
.cid-uBcmtbpyOM .mbr-section-btn {
  text-align: left;
}
.cid-uBcmsBhM2a {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-uBcmsBhM2a .carousel {
    min-height: 700px;
  }
  .cid-uBcmsBhM2a .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcmsBhM2a .carousel {
    min-height: 455px;
  }
  .cid-uBcmsBhM2a .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcmsBhM2a .carousel {
    min-height: 385px;
  }
  .cid-uBcmsBhM2a .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcmsBhM2a .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcmsBhM2a .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcmsBhM2a .carousel,
.cid-uBcmsBhM2a .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcmsBhM2a .item-wrapper {
  width: 100%;
}
.cid-uBcmsBhM2a .carousel-caption {
  bottom: 40px;
}
.cid-uBcmsBhM2a .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcmsBhM2a .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcmsBhM2a .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcmsBhM2a .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcmsBhM2a .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-uBcmsBhM2a .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcmsBhM2a .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcmsBhM2a .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcmsBhM2a .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcmsBhM2a .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-uBcmsBhM2a .carousel-indicators li.active,
.cid-uBcmsBhM2a .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcmsBhM2a .carousel-indicators li::after,
.cid-uBcmsBhM2a .carousel-indicators li::before {
  content: none;
}
.cid-uBcmsBhM2a .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcmsBhM2a .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcmrjVRQU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uBcmrjVRQU .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBcmrjVRQU .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBcmrjVRQU .mbr-text,
.cid-uBcmrjVRQU .mbr-section-btn {
  text-align: left;
}
.cid-uBcmqIfbqE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBcmqIfbqE .carousel {
    min-height: 700px;
  }
  .cid-uBcmqIfbqE .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcmqIfbqE .carousel {
    min-height: 455px;
  }
  .cid-uBcmqIfbqE .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcmqIfbqE .carousel {
    min-height: 385px;
  }
  .cid-uBcmqIfbqE .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcmqIfbqE .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcmqIfbqE .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcmqIfbqE .carousel,
.cid-uBcmqIfbqE .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcmqIfbqE .item-wrapper {
  width: 100%;
}
.cid-uBcmqIfbqE .carousel-caption {
  bottom: 40px;
}
.cid-uBcmqIfbqE .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcmqIfbqE .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcmqIfbqE .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcmqIfbqE .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcmqIfbqE .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-uBcmqIfbqE .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcmqIfbqE .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcmqIfbqE .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcmqIfbqE .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcmqIfbqE .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-uBcmqIfbqE .carousel-indicators li.active,
.cid-uBcmqIfbqE .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcmqIfbqE .carousel-indicators li::after,
.cid-uBcmqIfbqE .carousel-indicators li::before {
  content: none;
}
.cid-uBcmqIfbqE .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcmqIfbqE .carousel-indicators {
    display: none !important;
  }
}
.cid-uBog2uDEW6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-uBog2uDEW6 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBog2uDEW6 .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBog2uDEW6 .mbr-text,
.cid-uBog2uDEW6 .mbr-section-btn {
  text-align: left;
}
.cid-uBog1lYMie {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-uBog1lYMie .carousel {
    min-height: 700px;
  }
  .cid-uBog1lYMie .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBog1lYMie .carousel {
    min-height: 455px;
  }
  .cid-uBog1lYMie .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBog1lYMie .carousel {
    min-height: 385px;
  }
  .cid-uBog1lYMie .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBog1lYMie .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBog1lYMie .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBog1lYMie .carousel,
.cid-uBog1lYMie .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBog1lYMie .item-wrapper {
  width: 100%;
}
.cid-uBog1lYMie .carousel-caption {
  bottom: 40px;
}
.cid-uBog1lYMie .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBog1lYMie .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBog1lYMie .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBog1lYMie .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBog1lYMie .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-uBog1lYMie .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBog1lYMie .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBog1lYMie .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBog1lYMie .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBog1lYMie .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-uBog1lYMie .carousel-indicators li.active,
.cid-uBog1lYMie .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBog1lYMie .carousel-indicators li::after,
.cid-uBog1lYMie .carousel-indicators li::before {
  content: none;
}
.cid-uBog1lYMie .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBog1lYMie .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcmpaPl8J {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #6ec7f2;
}
.cid-uBcmpaPl8J .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBcmpaPl8J .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBcmpaPl8J .mbr-text,
.cid-uBcmpaPl8J .mbr-section-btn {
  text-align: left;
}
.cid-uBcmnBtjBU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #6ec7f2;
}
@media (min-width: 992px) {
  .cid-uBcmnBtjBU .carousel {
    min-height: 700px;
  }
  .cid-uBcmnBtjBU .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcmnBtjBU .carousel {
    min-height: 455px;
  }
  .cid-uBcmnBtjBU .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcmnBtjBU .carousel {
    min-height: 385px;
  }
  .cid-uBcmnBtjBU .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcmnBtjBU .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcmnBtjBU .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcmnBtjBU .carousel,
.cid-uBcmnBtjBU .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcmnBtjBU .item-wrapper {
  width: 100%;
}
.cid-uBcmnBtjBU .carousel-caption {
  bottom: 40px;
}
.cid-uBcmnBtjBU .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcmnBtjBU .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcmnBtjBU .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcmnBtjBU .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcmnBtjBU .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-uBcmnBtjBU .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcmnBtjBU .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcmnBtjBU .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcmnBtjBU .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcmnBtjBU .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-uBcmnBtjBU .carousel-indicators li.active,
.cid-uBcmnBtjBU .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcmnBtjBU .carousel-indicators li::after,
.cid-uBcmnBtjBU .carousel-indicators li::before {
  content: none;
}
.cid-uBcmnBtjBU .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcmnBtjBU .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcmm3bk3u {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uBcmm3bk3u .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBcmm3bk3u .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBcmm3bk3u .mbr-text,
.cid-uBcmm3bk3u .mbr-section-btn {
  text-align: left;
}
.cid-uBcmkT8Klf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBcmkT8Klf .carousel {
    min-height: 700px;
  }
  .cid-uBcmkT8Klf .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcmkT8Klf .carousel {
    min-height: 455px;
  }
  .cid-uBcmkT8Klf .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcmkT8Klf .carousel {
    min-height: 385px;
  }
  .cid-uBcmkT8Klf .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcmkT8Klf .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcmkT8Klf .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcmkT8Klf .carousel,
.cid-uBcmkT8Klf .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcmkT8Klf .item-wrapper {
  width: 100%;
}
.cid-uBcmkT8Klf .carousel-caption {
  bottom: 40px;
}
.cid-uBcmkT8Klf .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcmkT8Klf .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcmkT8Klf .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcmkT8Klf .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcmkT8Klf .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-uBcmkT8Klf .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcmkT8Klf .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcmkT8Klf .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcmkT8Klf .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcmkT8Klf .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-uBcmkT8Klf .carousel-indicators li.active,
.cid-uBcmkT8Klf .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcmkT8Klf .carousel-indicators li::after,
.cid-uBcmkT8Klf .carousel-indicators li::before {
  content: none;
}
.cid-uBcmkT8Klf .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcmkT8Klf .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcmjJ6YLM {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffb18a;
}
.cid-uBcmjJ6YLM .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBcmjJ6YLM .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBcmjJ6YLM .mbr-text,
.cid-uBcmjJ6YLM .mbr-section-btn {
  text-align: left;
}
.cid-uBcmhSpEHs {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-uBcmhSpEHs .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBcmhSpEHs .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBcmhSpEHs .mbr-text,
.cid-uBcmhSpEHs .mbr-section-btn {
  text-align: left;
}
.cid-uBcmgZhJSg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-uBcmgZhJSg .carousel {
    min-height: 700px;
  }
  .cid-uBcmgZhJSg .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcmgZhJSg .carousel {
    min-height: 455px;
  }
  .cid-uBcmgZhJSg .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcmgZhJSg .carousel {
    min-height: 385px;
  }
  .cid-uBcmgZhJSg .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcmgZhJSg .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcmgZhJSg .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcmgZhJSg .carousel,
.cid-uBcmgZhJSg .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcmgZhJSg .item-wrapper {
  width: 100%;
}
.cid-uBcmgZhJSg .carousel-caption {
  bottom: 40px;
}
.cid-uBcmgZhJSg .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcmgZhJSg .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcmgZhJSg .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcmgZhJSg .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcmgZhJSg .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-uBcmgZhJSg .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcmgZhJSg .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcmgZhJSg .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcmgZhJSg .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcmgZhJSg .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-uBcmgZhJSg .carousel-indicators li.active,
.cid-uBcmgZhJSg .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcmgZhJSg .carousel-indicators li::after,
.cid-uBcmgZhJSg .carousel-indicators li::before {
  content: none;
}
.cid-uBcmgZhJSg .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcmgZhJSg .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcmeQ0Jug {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e43f3f;
}
.cid-uBcmeQ0Jug .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBcmeQ0Jug .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBcmeQ0Jug .mbr-text,
.cid-uBcmeQ0Jug .mbr-section-btn {
  text-align: left;
}
.cid-uBcmdL3I3c {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e43f3f;
}
@media (min-width: 992px) {
  .cid-uBcmdL3I3c .carousel {
    min-height: 700px;
  }
  .cid-uBcmdL3I3c .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcmdL3I3c .carousel {
    min-height: 455px;
  }
  .cid-uBcmdL3I3c .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcmdL3I3c .carousel {
    min-height: 385px;
  }
  .cid-uBcmdL3I3c .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcmdL3I3c .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcmdL3I3c .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcmdL3I3c .carousel,
.cid-uBcmdL3I3c .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcmdL3I3c .item-wrapper {
  width: 100%;
}
.cid-uBcmdL3I3c .carousel-caption {
  bottom: 40px;
}
.cid-uBcmdL3I3c .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcmdL3I3c .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcmdL3I3c .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcmdL3I3c .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcmdL3I3c .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-uBcmdL3I3c .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcmdL3I3c .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcmdL3I3c .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcmdL3I3c .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcmdL3I3c .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-uBcmdL3I3c .carousel-indicators li.active,
.cid-uBcmdL3I3c .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcmdL3I3c .carousel-indicators li::after,
.cid-uBcmdL3I3c .carousel-indicators li::before {
  content: none;
}
.cid-uBcmdL3I3c .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcmdL3I3c .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcmcLeAhL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uBcmcLeAhL .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBcmcLeAhL .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBcmcLeAhL .mbr-text,
.cid-uBcmcLeAhL .mbr-section-btn {
  text-align: left;
}
.cid-uBcmbwpk0u {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBcmbwpk0u .carousel {
    min-height: 700px;
  }
  .cid-uBcmbwpk0u .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcmbwpk0u .carousel {
    min-height: 455px;
  }
  .cid-uBcmbwpk0u .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcmbwpk0u .carousel {
    min-height: 385px;
  }
  .cid-uBcmbwpk0u .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcmbwpk0u .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcmbwpk0u .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcmbwpk0u .carousel,
.cid-uBcmbwpk0u .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcmbwpk0u .item-wrapper {
  width: 100%;
}
.cid-uBcmbwpk0u .carousel-caption {
  bottom: 40px;
}
.cid-uBcmbwpk0u .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcmbwpk0u .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcmbwpk0u .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcmbwpk0u .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcmbwpk0u .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-uBcmbwpk0u .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcmbwpk0u .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcmbwpk0u .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcmbwpk0u .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcmbwpk0u .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-uBcmbwpk0u .carousel-indicators li.active,
.cid-uBcmbwpk0u .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcmbwpk0u .carousel-indicators li::after,
.cid-uBcmbwpk0u .carousel-indicators li::before {
  content: none;
}
.cid-uBcmbwpk0u .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcmbwpk0u .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcm9Zc7Rn {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #6ec7f2;
}
.cid-uBcm9Zc7Rn .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBcm9Zc7Rn .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBcm9Zc7Rn .mbr-text,
.cid-uBcm9Zc7Rn .mbr-section-btn {
  text-align: left;
}
.cid-uBcm9jMyvO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #6ec7f2;
}
@media (min-width: 992px) {
  .cid-uBcm9jMyvO .carousel {
    min-height: 700px;
  }
  .cid-uBcm9jMyvO .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcm9jMyvO .carousel {
    min-height: 455px;
  }
  .cid-uBcm9jMyvO .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcm9jMyvO .carousel {
    min-height: 385px;
  }
  .cid-uBcm9jMyvO .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcm9jMyvO .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcm9jMyvO .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcm9jMyvO .carousel,
.cid-uBcm9jMyvO .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcm9jMyvO .item-wrapper {
  width: 100%;
}
.cid-uBcm9jMyvO .carousel-caption {
  bottom: 40px;
}
.cid-uBcm9jMyvO .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcm9jMyvO .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcm9jMyvO .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcm9jMyvO .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcm9jMyvO .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-uBcm9jMyvO .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcm9jMyvO .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcm9jMyvO .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcm9jMyvO .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcm9jMyvO .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-uBcm9jMyvO .carousel-indicators li.active,
.cid-uBcm9jMyvO .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcm9jMyvO .carousel-indicators li::after,
.cid-uBcm9jMyvO .carousel-indicators li::before {
  content: none;
}
.cid-uBcm9jMyvO .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcm9jMyvO .carousel-indicators {
    display: none !important;
  }
}
.cid-uBclBjvCQe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #0c551b;
}
@media (max-width: 991px) {
  .cid-uBclBjvCQe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBclBjvCQe .row {
  flex-direction: row-reverse;
}
.cid-uBclBjvCQe img {
  width: 100%;
}
.cid-uBclAfjIOK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uBclAfjIOK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBclAfjIOK .row {
  flex-direction: row-reverse;
}
.cid-uBclAfjIOK img {
  width: 100%;
}
.cid-uBclzeRGqN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uBclzeRGqN .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBclzeRGqN .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBclzeRGqN .mbr-text,
.cid-uBclzeRGqN .mbr-section-btn {
  text-align: left;
}
.cid-uBclyplSWA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBclyplSWA .carousel {
    min-height: 700px;
  }
  .cid-uBclyplSWA .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBclyplSWA .carousel {
    min-height: 455px;
  }
  .cid-uBclyplSWA .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBclyplSWA .carousel {
    min-height: 385px;
  }
  .cid-uBclyplSWA .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBclyplSWA .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBclyplSWA .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBclyplSWA .carousel,
.cid-uBclyplSWA .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBclyplSWA .item-wrapper {
  width: 100%;
}
.cid-uBclyplSWA .carousel-caption {
  bottom: 40px;
}
.cid-uBclyplSWA .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBclyplSWA .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBclyplSWA .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBclyplSWA .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBclyplSWA .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-uBclyplSWA .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBclyplSWA .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBclyplSWA .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBclyplSWA .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBclyplSWA .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-uBclyplSWA .carousel-indicators li.active,
.cid-uBclyplSWA .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBclyplSWA .carousel-indicators li::after,
.cid-uBclyplSWA .carousel-indicators li::before {
  content: none;
}
.cid-uBclyplSWA .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBclyplSWA .carousel-indicators {
    display: none !important;
  }
}
.cid-uBclsV0Ylp {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-uBclsV0Ylp .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBclsV0Ylp .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBclsV0Ylp .mbr-text,
.cid-uBclsV0Ylp .mbr-section-btn {
  text-align: left;
}
.cid-uBclr3V1Hr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-uBclr3V1Hr .carousel {
    min-height: 700px;
  }
  .cid-uBclr3V1Hr .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBclr3V1Hr .carousel {
    min-height: 455px;
  }
  .cid-uBclr3V1Hr .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBclr3V1Hr .carousel {
    min-height: 385px;
  }
  .cid-uBclr3V1Hr .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBclr3V1Hr .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBclr3V1Hr .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBclr3V1Hr .carousel,
.cid-uBclr3V1Hr .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBclr3V1Hr .item-wrapper {
  width: 100%;
}
.cid-uBclr3V1Hr .carousel-caption {
  bottom: 40px;
}
.cid-uBclr3V1Hr .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBclr3V1Hr .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBclr3V1Hr .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBclr3V1Hr .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBclr3V1Hr .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-uBclr3V1Hr .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBclr3V1Hr .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBclr3V1Hr .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBclr3V1Hr .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBclr3V1Hr .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-uBclr3V1Hr .carousel-indicators li.active,
.cid-uBclr3V1Hr .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBclr3V1Hr .carousel-indicators li::after,
.cid-uBclr3V1Hr .carousel-indicators li::before {
  content: none;
}
.cid-uBclr3V1Hr .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBclr3V1Hr .carousel-indicators {
    display: none !important;
  }
}
.cid-uBclpzpV3W {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uBclpzpV3W .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBclpzpV3W .row {
  flex-direction: row-reverse;
}
.cid-uBclpzpV3W img {
  width: 100%;
}
.cid-uBclokfJu4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uBclokfJu4 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBclokfJu4 .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBclokfJu4 .mbr-text,
.cid-uBclokfJu4 .mbr-section-btn {
  text-align: left;
}
.cid-uBclnoIeiK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBclnoIeiK .carousel {
    min-height: 700px;
  }
  .cid-uBclnoIeiK .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBclnoIeiK .carousel {
    min-height: 455px;
  }
  .cid-uBclnoIeiK .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBclnoIeiK .carousel {
    min-height: 385px;
  }
  .cid-uBclnoIeiK .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBclnoIeiK .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBclnoIeiK .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBclnoIeiK .carousel,
.cid-uBclnoIeiK .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBclnoIeiK .item-wrapper {
  width: 100%;
}
.cid-uBclnoIeiK .carousel-caption {
  bottom: 40px;
}
.cid-uBclnoIeiK .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBclnoIeiK .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBclnoIeiK .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBclnoIeiK .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBclnoIeiK .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-uBclnoIeiK .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBclnoIeiK .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBclnoIeiK .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBclnoIeiK .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBclnoIeiK .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-uBclnoIeiK .carousel-indicators li.active,
.cid-uBclnoIeiK .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBclnoIeiK .carousel-indicators li::after,
.cid-uBclnoIeiK .carousel-indicators li::before {
  content: none;
}
.cid-uBclnoIeiK .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBclnoIeiK .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcljMJMZw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #6ec7f2;
}
.cid-uBcljMJMZw .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBcljMJMZw .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBcljMJMZw .mbr-text,
.cid-uBcljMJMZw .mbr-section-btn {
  text-align: left;
}
.cid-uBcliTg0DZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #6ec7f2;
}
@media (min-width: 992px) {
  .cid-uBcliTg0DZ .carousel {
    min-height: 700px;
  }
  .cid-uBcliTg0DZ .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcliTg0DZ .carousel {
    min-height: 455px;
  }
  .cid-uBcliTg0DZ .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcliTg0DZ .carousel {
    min-height: 385px;
  }
  .cid-uBcliTg0DZ .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcliTg0DZ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcliTg0DZ .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcliTg0DZ .carousel,
.cid-uBcliTg0DZ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcliTg0DZ .item-wrapper {
  width: 100%;
}
.cid-uBcliTg0DZ .carousel-caption {
  bottom: 40px;
}
.cid-uBcliTg0DZ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcliTg0DZ .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcliTg0DZ .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcliTg0DZ .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcliTg0DZ .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-uBcliTg0DZ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcliTg0DZ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcliTg0DZ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcliTg0DZ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcliTg0DZ .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-uBcliTg0DZ .carousel-indicators li.active,
.cid-uBcliTg0DZ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcliTg0DZ .carousel-indicators li::after,
.cid-uBcliTg0DZ .carousel-indicators li::before {
  content: none;
}
.cid-uBcliTg0DZ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcliTg0DZ .carousel-indicators {
    display: none !important;
  }
}
.cid-uBciVlhhIC {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-uBciVlhhIC .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBciVlhhIC .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBciVlhhIC .mbr-text,
.cid-uBciVlhhIC .mbr-section-btn {
  text-align: left;
}
.cid-uBciVlMlAY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-uBciVlMlAY .carousel {
    min-height: 700px;
  }
  .cid-uBciVlMlAY .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBciVlMlAY .carousel {
    min-height: 455px;
  }
  .cid-uBciVlMlAY .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBciVlMlAY .carousel {
    min-height: 385px;
  }
  .cid-uBciVlMlAY .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBciVlMlAY .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBciVlMlAY .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBciVlMlAY .carousel,
.cid-uBciVlMlAY .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBciVlMlAY .item-wrapper {
  width: 100%;
}
.cid-uBciVlMlAY .carousel-caption {
  bottom: 40px;
}
.cid-uBciVlMlAY .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBciVlMlAY .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBciVlMlAY .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBciVlMlAY .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBciVlMlAY .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-uBciVlMlAY .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBciVlMlAY .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBciVlMlAY .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBciVlMlAY .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBciVlMlAY .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-uBciVlMlAY .carousel-indicators li.active,
.cid-uBciVlMlAY .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBciVlMlAY .carousel-indicators li::after,
.cid-uBciVlMlAY .carousel-indicators li::before {
  content: none;
}
.cid-uBciVlMlAY .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBciVlMlAY .carousel-indicators {
    display: none !important;
  }
}
.cid-uBciVmtlbI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uBciVmtlbI .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBciVmtlbI .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBciVmtlbI .mbr-text,
.cid-uBciVmtlbI .mbr-section-btn {
  text-align: left;
}
.cid-uBciVmXzg4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBciVmXzg4 .carousel {
    min-height: 700px;
  }
  .cid-uBciVmXzg4 .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBciVmXzg4 .carousel {
    min-height: 455px;
  }
  .cid-uBciVmXzg4 .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBciVmXzg4 .carousel {
    min-height: 385px;
  }
  .cid-uBciVmXzg4 .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBciVmXzg4 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBciVmXzg4 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBciVmXzg4 .carousel,
.cid-uBciVmXzg4 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBciVmXzg4 .item-wrapper {
  width: 100%;
}
.cid-uBciVmXzg4 .carousel-caption {
  bottom: 40px;
}
.cid-uBciVmXzg4 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBciVmXzg4 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBciVmXzg4 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBciVmXzg4 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBciVmXzg4 .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-uBciVmXzg4 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBciVmXzg4 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBciVmXzg4 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBciVmXzg4 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBciVmXzg4 .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-uBciVmXzg4 .carousel-indicators li.active,
.cid-uBciVmXzg4 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBciVmXzg4 .carousel-indicators li::after,
.cid-uBciVmXzg4 .carousel-indicators li::before {
  content: none;
}
.cid-uBciVmXzg4 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBciVmXzg4 .carousel-indicators {
    display: none !important;
  }
}
.cid-uBciVnHMWe {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #6ec7f2;
}
.cid-uBciVnHMWe .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBciVnHMWe .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBciVnHMWe .mbr-text,
.cid-uBciVnHMWe .mbr-section-btn {
  text-align: left;
}
.cid-uBciVognCT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #6ec7f2;
}
@media (min-width: 992px) {
  .cid-uBciVognCT .carousel {
    min-height: 700px;
  }
  .cid-uBciVognCT .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBciVognCT .carousel {
    min-height: 455px;
  }
  .cid-uBciVognCT .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBciVognCT .carousel {
    min-height: 385px;
  }
  .cid-uBciVognCT .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBciVognCT .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBciVognCT .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBciVognCT .carousel,
.cid-uBciVognCT .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBciVognCT .item-wrapper {
  width: 100%;
}
.cid-uBciVognCT .carousel-caption {
  bottom: 40px;
}
.cid-uBciVognCT .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBciVognCT .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBciVognCT .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBciVognCT .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBciVognCT .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-uBciVognCT .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBciVognCT .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBciVognCT .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBciVognCT .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBciVognCT .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-uBciVognCT .carousel-indicators li.active,
.cid-uBciVognCT .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBciVognCT .carousel-indicators li::after,
.cid-uBciVognCT .carousel-indicators li::before {
  content: none;
}
.cid-uBciVognCT .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBciVognCT .carousel-indicators {
    display: none !important;
  }
}
.cid-uBciVoQgbr {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uBciVoQgbr .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBciVoQgbr .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBciVoQgbr .mbr-text,
.cid-uBciVoQgbr .mbr-section-btn {
  text-align: left;
}
.cid-uBciVpoVcN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBciVpoVcN .carousel {
    min-height: 700px;
  }
  .cid-uBciVpoVcN .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBciVpoVcN .carousel {
    min-height: 455px;
  }
  .cid-uBciVpoVcN .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBciVpoVcN .carousel {
    min-height: 385px;
  }
  .cid-uBciVpoVcN .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBciVpoVcN .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBciVpoVcN .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBciVpoVcN .carousel,
.cid-uBciVpoVcN .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBciVpoVcN .item-wrapper {
  width: 100%;
}
.cid-uBciVpoVcN .carousel-caption {
  bottom: 40px;
}
.cid-uBciVpoVcN .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBciVpoVcN .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBciVpoVcN .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBciVpoVcN .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBciVpoVcN .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-uBciVpoVcN .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBciVpoVcN .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBciVpoVcN .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBciVpoVcN .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBciVpoVcN .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-uBciVpoVcN .carousel-indicators li.active,
.cid-uBciVpoVcN .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBciVpoVcN .carousel-indicators li::after,
.cid-uBciVpoVcN .carousel-indicators li::before {
  content: none;
}
.cid-uBciVpoVcN .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBciVpoVcN .carousel-indicators {
    display: none !important;
  }
}
.cid-uBciVq6GMh {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #42ad6f;
}
.cid-uBciVq6GMh .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBciVq6GMh .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBciVq6GMh .mbr-text,
.cid-uBciVq6GMh .mbr-section-btn {
  text-align: left;
}
.cid-uBciVqLoBg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #42ad6f;
}
@media (min-width: 992px) {
  .cid-uBciVqLoBg .carousel {
    min-height: 700px;
  }
  .cid-uBciVqLoBg .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBciVqLoBg .carousel {
    min-height: 455px;
  }
  .cid-uBciVqLoBg .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBciVqLoBg .carousel {
    min-height: 385px;
  }
  .cid-uBciVqLoBg .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBciVqLoBg .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBciVqLoBg .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBciVqLoBg .carousel,
.cid-uBciVqLoBg .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBciVqLoBg .item-wrapper {
  width: 100%;
}
.cid-uBciVqLoBg .carousel-caption {
  bottom: 40px;
}
.cid-uBciVqLoBg .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBciVqLoBg .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBciVqLoBg .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBciVqLoBg .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBciVqLoBg .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-uBciVqLoBg .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBciVqLoBg .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBciVqLoBg .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBciVqLoBg .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBciVqLoBg .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-uBciVqLoBg .carousel-indicators li.active,
.cid-uBciVqLoBg .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBciVqLoBg .carousel-indicators li::after,
.cid-uBciVqLoBg .carousel-indicators li::before {
  content: none;
}
.cid-uBciVqLoBg .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBciVqLoBg .carousel-indicators {
    display: none !important;
  }
}
.cid-uBciVrqu6e {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uBciVrqu6e .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBciVrqu6e .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBciVrqu6e .mbr-text,
.cid-uBciVrqu6e .mbr-section-btn {
  text-align: left;
}
.cid-uBciVs1SXe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBciVs1SXe .carousel {
    min-height: 700px;
  }
  .cid-uBciVs1SXe .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBciVs1SXe .carousel {
    min-height: 455px;
  }
  .cid-uBciVs1SXe .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBciVs1SXe .carousel {
    min-height: 385px;
  }
  .cid-uBciVs1SXe .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBciVs1SXe .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBciVs1SXe .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBciVs1SXe .carousel,
.cid-uBciVs1SXe .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBciVs1SXe .item-wrapper {
  width: 100%;
}
.cid-uBciVs1SXe .carousel-caption {
  bottom: 40px;
}
.cid-uBciVs1SXe .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBciVs1SXe .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBciVs1SXe .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBciVs1SXe .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBciVs1SXe .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-uBciVs1SXe .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBciVs1SXe .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBciVs1SXe .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBciVs1SXe .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBciVs1SXe .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-uBciVs1SXe .carousel-indicators li.active,
.cid-uBciVs1SXe .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBciVs1SXe .carousel-indicators li::after,
.cid-uBciVs1SXe .carousel-indicators li::before {
  content: none;
}
.cid-uBciVs1SXe .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBciVs1SXe .carousel-indicators {
    display: none !important;
  }
}
.cid-uBciVszklj {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-uBciVszklj .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBciVszklj .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBciVszklj .mbr-text,
.cid-uBciVszklj .mbr-section-btn {
  text-align: left;
}
.cid-uBciVt8Byz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
@media (min-width: 992px) {
  .cid-uBciVt8Byz .carousel {
    min-height: 700px;
  }
  .cid-uBciVt8Byz .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBciVt8Byz .carousel {
    min-height: 455px;
  }
  .cid-uBciVt8Byz .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBciVt8Byz .carousel {
    min-height: 385px;
  }
  .cid-uBciVt8Byz .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBciVt8Byz .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBciVt8Byz .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBciVt8Byz .carousel,
.cid-uBciVt8Byz .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBciVt8Byz .item-wrapper {
  width: 100%;
}
.cid-uBciVt8Byz .carousel-caption {
  bottom: 40px;
}
.cid-uBciVt8Byz .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBciVt8Byz .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBciVt8Byz .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBciVt8Byz .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBciVt8Byz .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-uBciVt8Byz .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBciVt8Byz .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBciVt8Byz .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBciVt8Byz .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBciVt8Byz .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-uBciVt8Byz .carousel-indicators li.active,
.cid-uBciVt8Byz .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBciVt8Byz .carousel-indicators li::after,
.cid-uBciVt8Byz .carousel-indicators li::before {
  content: none;
}
.cid-uBciVt8Byz .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBciVt8Byz .carousel-indicators {
    display: none !important;
  }
}
.cid-uBciVtJPd5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-uBciVtJPd5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBciVtJPd5 .row {
  flex-direction: row-reverse;
}
.cid-uBciVtJPd5 img {
  width: 100%;
}
.cid-uBciVuiqgN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffb5b5;
}
.cid-uBciVuiqgN .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBciVuiqgN .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBciVuiqgN .mbr-text,
.cid-uBciVuiqgN .mbr-section-btn {
  text-align: left;
}
.cid-uBciVuPcgQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffb5b5;
}
.cid-uBciVvl9YH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uBciVvl9YH .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBciVvl9YH .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBciVvl9YH .mbr-text,
.cid-uBciVvl9YH .mbr-section-btn {
  text-align: left;
}
.cid-uBciVvULfe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBciVvULfe .carousel {
    min-height: 700px;
  }
  .cid-uBciVvULfe .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBciVvULfe .carousel {
    min-height: 455px;
  }
  .cid-uBciVvULfe .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBciVvULfe .carousel {
    min-height: 385px;
  }
  .cid-uBciVvULfe .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBciVvULfe .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBciVvULfe .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBciVvULfe .carousel,
.cid-uBciVvULfe .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBciVvULfe .item-wrapper {
  width: 100%;
}
.cid-uBciVvULfe .carousel-caption {
  bottom: 40px;
}
.cid-uBciVvULfe .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBciVvULfe .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBciVvULfe .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBciVvULfe .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBciVvULfe .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-uBciVvULfe .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBciVvULfe .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBciVvULfe .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBciVvULfe .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBciVvULfe .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-uBciVvULfe .carousel-indicators li.active,
.cid-uBciVvULfe .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBciVvULfe .carousel-indicators li::after,
.cid-uBciVvULfe .carousel-indicators li::before {
  content: none;
}
.cid-uBciVvULfe .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBciVvULfe .carousel-indicators {
    display: none !important;
  }
}
.cid-uBciVwBrs2 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-uBciVwBrs2 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBciVwBrs2 .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBciVwBrs2 .mbr-text,
.cid-uBciVwBrs2 .mbr-section-btn {
  text-align: left;
}
.cid-uBciVxeHLr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
@media (min-width: 992px) {
  .cid-uBciVxeHLr .carousel {
    min-height: 700px;
  }
  .cid-uBciVxeHLr .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBciVxeHLr .carousel {
    min-height: 455px;
  }
  .cid-uBciVxeHLr .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBciVxeHLr .carousel {
    min-height: 385px;
  }
  .cid-uBciVxeHLr .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBciVxeHLr .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBciVxeHLr .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBciVxeHLr .carousel,
.cid-uBciVxeHLr .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBciVxeHLr .item-wrapper {
  width: 100%;
}
.cid-uBciVxeHLr .carousel-caption {
  bottom: 40px;
}
.cid-uBciVxeHLr .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBciVxeHLr .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBciVxeHLr .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBciVxeHLr .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBciVxeHLr .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-uBciVxeHLr .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBciVxeHLr .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBciVxeHLr .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBciVxeHLr .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBciVxeHLr .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-uBciVxeHLr .carousel-indicators li.active,
.cid-uBciVxeHLr .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBciVxeHLr .carousel-indicators li::after,
.cid-uBciVxeHLr .carousel-indicators li::before {
  content: none;
}
.cid-uBciVxeHLr .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBciVxeHLr .carousel-indicators {
    display: none !important;
  }
}
.cid-uBciVy8uHI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uBciVy8uHI .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBciVy8uHI .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBciVy8uHI .mbr-text,
.cid-uBciVy8uHI .mbr-section-btn {
  text-align: left;
}
.cid-uBciVyNBO4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBciVyNBO4 .carousel {
    min-height: 700px;
  }
  .cid-uBciVyNBO4 .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBciVyNBO4 .carousel {
    min-height: 455px;
  }
  .cid-uBciVyNBO4 .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBciVyNBO4 .carousel {
    min-height: 385px;
  }
  .cid-uBciVyNBO4 .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBciVyNBO4 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBciVyNBO4 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBciVyNBO4 .carousel,
.cid-uBciVyNBO4 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBciVyNBO4 .item-wrapper {
  width: 100%;
}
.cid-uBciVyNBO4 .carousel-caption {
  bottom: 40px;
}
.cid-uBciVyNBO4 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBciVyNBO4 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBciVyNBO4 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBciVyNBO4 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBciVyNBO4 .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-uBciVyNBO4 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBciVyNBO4 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBciVyNBO4 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBciVyNBO4 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBciVyNBO4 .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-uBciVyNBO4 .carousel-indicators li.active,
.cid-uBciVyNBO4 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBciVyNBO4 .carousel-indicators li::after,
.cid-uBciVyNBO4 .carousel-indicators li::before {
  content: none;
}
.cid-uBciVyNBO4 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBciVyNBO4 .carousel-indicators {
    display: none !important;
  }
}
.cid-uBciVzy6MI {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ff8a8a;
}
.cid-uBciVzy6MI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBciVzy6MI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uBciVzy6MI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBciVzy6MI .row {
  flex-direction: row-reverse;
}
.cid-uBciVzy6MI img {
  width: 100%;
}
.cid-uBciVA8E47 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-uBciVA8E47 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBciVA8E47 .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBciVA8E47 .mbr-text,
.cid-uBciVA8E47 .mbr-section-btn {
  text-align: left;
}
.cid-uBciVANkix {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-uBciVANkix .carousel {
    min-height: 700px;
  }
  .cid-uBciVANkix .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBciVANkix .carousel {
    min-height: 455px;
  }
  .cid-uBciVANkix .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBciVANkix .carousel {
    min-height: 385px;
  }
  .cid-uBciVANkix .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBciVANkix .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBciVANkix .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBciVANkix .carousel,
.cid-uBciVANkix .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBciVANkix .item-wrapper {
  width: 100%;
}
.cid-uBciVANkix .carousel-caption {
  bottom: 40px;
}
.cid-uBciVANkix .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBciVANkix .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBciVANkix .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBciVANkix .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBciVANkix .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-uBciVANkix .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBciVANkix .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBciVANkix .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBciVANkix .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBciVANkix .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-uBciVANkix .carousel-indicators li.active,
.cid-uBciVANkix .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBciVANkix .carousel-indicators li::after,
.cid-uBciVANkix .carousel-indicators li::before {
  content: none;
}
.cid-uBciVANkix .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBciVANkix .carousel-indicators {
    display: none !important;
  }
}
.cid-uBciVBysAQ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uBciVBysAQ .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBciVBysAQ .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBciVBysAQ .mbr-text,
.cid-uBciVBysAQ .mbr-section-btn {
  text-align: left;
}
.cid-uBciVCd1jW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBciVCd1jW .carousel {
    min-height: 700px;
  }
  .cid-uBciVCd1jW .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBciVCd1jW .carousel {
    min-height: 455px;
  }
  .cid-uBciVCd1jW .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBciVCd1jW .carousel {
    min-height: 385px;
  }
  .cid-uBciVCd1jW .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBciVCd1jW .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBciVCd1jW .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBciVCd1jW .carousel,
.cid-uBciVCd1jW .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBciVCd1jW .item-wrapper {
  width: 100%;
}
.cid-uBciVCd1jW .carousel-caption {
  bottom: 40px;
}
.cid-uBciVCd1jW .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBciVCd1jW .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBciVCd1jW .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBciVCd1jW .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBciVCd1jW .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-uBciVCd1jW .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBciVCd1jW .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBciVCd1jW .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBciVCd1jW .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBciVCd1jW .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-uBciVCd1jW .carousel-indicators li.active,
.cid-uBciVCd1jW .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBciVCd1jW .carousel-indicators li::after,
.cid-uBciVCd1jW .carousel-indicators li::before {
  content: none;
}
.cid-uBciVCd1jW .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBciVCd1jW .carousel-indicators {
    display: none !important;
  }
}
.cid-uBciVDbvyh {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-uBciVDbvyh .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBciVDbvyh .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBciVDbvyh .mbr-text,
.cid-uBciVDbvyh .mbr-section-btn {
  text-align: left;
}
.cid-uBciVDPecI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
@media (min-width: 992px) {
  .cid-uBciVDPecI .carousel {
    min-height: 700px;
  }
  .cid-uBciVDPecI .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBciVDPecI .carousel {
    min-height: 455px;
  }
  .cid-uBciVDPecI .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBciVDPecI .carousel {
    min-height: 385px;
  }
  .cid-uBciVDPecI .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBciVDPecI .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBciVDPecI .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBciVDPecI .carousel,
.cid-uBciVDPecI .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBciVDPecI .item-wrapper {
  width: 100%;
}
.cid-uBciVDPecI .carousel-caption {
  bottom: 40px;
}
.cid-uBciVDPecI .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBciVDPecI .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBciVDPecI .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBciVDPecI .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBciVDPecI .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-uBciVDPecI .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBciVDPecI .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBciVDPecI .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBciVDPecI .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBciVDPecI .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-uBciVDPecI .carousel-indicators li.active,
.cid-uBciVDPecI .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBciVDPecI .carousel-indicators li::after,
.cid-uBciVDPecI .carousel-indicators li::before {
  content: none;
}
.cid-uBciVDPecI .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBciVDPecI .carousel-indicators {
    display: none !important;
  }
}
.cid-uBciVEwZ7D {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uBciVEwZ7D .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBciVEwZ7D .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBciVEwZ7D .mbr-text,
.cid-uBciVEwZ7D .mbr-section-btn {
  text-align: left;
}
.cid-uBciVFbFC5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBciVFbFC5 .carousel {
    min-height: 700px;
  }
  .cid-uBciVFbFC5 .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBciVFbFC5 .carousel {
    min-height: 455px;
  }
  .cid-uBciVFbFC5 .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBciVFbFC5 .carousel {
    min-height: 385px;
  }
  .cid-uBciVFbFC5 .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBciVFbFC5 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBciVFbFC5 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBciVFbFC5 .carousel,
.cid-uBciVFbFC5 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBciVFbFC5 .item-wrapper {
  width: 100%;
}
.cid-uBciVFbFC5 .carousel-caption {
  bottom: 40px;
}
.cid-uBciVFbFC5 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBciVFbFC5 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBciVFbFC5 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBciVFbFC5 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBciVFbFC5 .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-uBciVFbFC5 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBciVFbFC5 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBciVFbFC5 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBciVFbFC5 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBciVFbFC5 .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-uBciVFbFC5 .carousel-indicators li.active,
.cid-uBciVFbFC5 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBciVFbFC5 .carousel-indicators li::after,
.cid-uBciVFbFC5 .carousel-indicators li::before {
  content: none;
}
.cid-uBciVFbFC5 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBciVFbFC5 .carousel-indicators {
    display: none !important;
  }
}
.cid-uBciVG01Mi {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #8caff0;
}
.cid-uBciVG01Mi .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBciVG01Mi .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBciVG01Mi .mbr-text,
.cid-uBciVG01Mi .mbr-section-btn {
  text-align: left;
}
.cid-uBciVGIPCP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #8caff0;
}
@media (min-width: 992px) {
  .cid-uBciVGIPCP .carousel {
    min-height: 700px;
  }
  .cid-uBciVGIPCP .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBciVGIPCP .carousel {
    min-height: 455px;
  }
  .cid-uBciVGIPCP .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBciVGIPCP .carousel {
    min-height: 385px;
  }
  .cid-uBciVGIPCP .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBciVGIPCP .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBciVGIPCP .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBciVGIPCP .carousel,
.cid-uBciVGIPCP .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBciVGIPCP .item-wrapper {
  width: 100%;
}
.cid-uBciVGIPCP .carousel-caption {
  bottom: 40px;
}
.cid-uBciVGIPCP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBciVGIPCP .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBciVGIPCP .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBciVGIPCP .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBciVGIPCP .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-uBciVGIPCP .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBciVGIPCP .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBciVGIPCP .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBciVGIPCP .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBciVGIPCP .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-uBciVGIPCP .carousel-indicators li.active,
.cid-uBciVGIPCP .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBciVGIPCP .carousel-indicators li::after,
.cid-uBciVGIPCP .carousel-indicators li::before {
  content: none;
}
.cid-uBciVGIPCP .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBciVGIPCP .carousel-indicators {
    display: none !important;
  }
}
.cid-uBciVHwsuI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uBciVHwsuI .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBciVHwsuI .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBciVHwsuI .mbr-text,
.cid-uBciVHwsuI .mbr-section-btn {
  text-align: left;
}
.cid-uBciVIaa8H {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBciVIaa8H .carousel {
    min-height: 700px;
  }
  .cid-uBciVIaa8H .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBciVIaa8H .carousel {
    min-height: 455px;
  }
  .cid-uBciVIaa8H .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBciVIaa8H .carousel {
    min-height: 385px;
  }
  .cid-uBciVIaa8H .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBciVIaa8H .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBciVIaa8H .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBciVIaa8H .carousel,
.cid-uBciVIaa8H .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBciVIaa8H .item-wrapper {
  width: 100%;
}
.cid-uBciVIaa8H .carousel-caption {
  bottom: 40px;
}
.cid-uBciVIaa8H .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBciVIaa8H .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBciVIaa8H .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBciVIaa8H .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBciVIaa8H .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-uBciVIaa8H .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBciVIaa8H .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBciVIaa8H .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBciVIaa8H .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBciVIaa8H .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-uBciVIaa8H .carousel-indicators li.active,
.cid-uBciVIaa8H .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBciVIaa8H .carousel-indicators li::after,
.cid-uBciVIaa8H .carousel-indicators li::before {
  content: none;
}
.cid-uBciVIaa8H .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBciVIaa8H .carousel-indicators {
    display: none !important;
  }
}
.cid-uBciVIWJTP {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #6592e6;
}
.cid-uBciVIWJTP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBciVIWJTP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uBciVIWJTP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBciVIWJTP .row {
  flex-direction: row-reverse;
}
.cid-uBciVIWJTP img {
  width: 100%;
}
.cid-uBciVJCfWT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uBciVJCfWT .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBciVJCfWT .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBciVJCfWT .mbr-text,
.cid-uBciVJCfWT .mbr-section-btn {
  text-align: left;
}
.cid-uBciVKh1nT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBciVKh1nT .carousel {
    min-height: 700px;
  }
  .cid-uBciVKh1nT .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBciVKh1nT .carousel {
    min-height: 455px;
  }
  .cid-uBciVKh1nT .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBciVKh1nT .carousel {
    min-height: 385px;
  }
  .cid-uBciVKh1nT .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBciVKh1nT .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBciVKh1nT .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBciVKh1nT .carousel,
.cid-uBciVKh1nT .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBciVKh1nT .item-wrapper {
  width: 100%;
}
.cid-uBciVKh1nT .carousel-caption {
  bottom: 40px;
}
.cid-uBciVKh1nT .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBciVKh1nT .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBciVKh1nT .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBciVKh1nT .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBciVKh1nT .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-uBciVKh1nT .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBciVKh1nT .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBciVKh1nT .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBciVKh1nT .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBciVKh1nT .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-uBciVKh1nT .carousel-indicators li.active,
.cid-uBciVKh1nT .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBciVKh1nT .carousel-indicators li::after,
.cid-uBciVKh1nT .carousel-indicators li::before {
  content: none;
}
.cid-uBciVKh1nT .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBciVKh1nT .carousel-indicators {
    display: none !important;
  }
}
.cid-uBciVL7asN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #b3ebfe;
}
.cid-uBciVL7asN h3 {
  font-weight: 300;
}
.cid-uBciVL7asN .card-img {
  width: initial;
}
.cid-uBciVL7asN .card-img .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-uBciVL7asN .media-container-row {
  word-wrap: break-word;
  padding-bottom: 2rem;
  min-height: 100%;
}
.cid-uBciVL7asN .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uBciVL7asN .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uBciVL7asN .mbr-text {
  color: #767676;
}
.cid-uBciVL7asN .media-container-column {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
}
.cid-uBciVL7asN .mbr-al-i-c {
  align-items: center;
}
.cid-uBciVL7asN .mbr-section-title {
  text-align: center;
}
.cid-uBciVLXcsU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #8caff0;
}
.cid-uBciVLXcsU .mbr-section-subtitle {
  text-align: left;
}
.cid-uBciVMI44A {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #8caff0;
}
@media (min-width: 992px) {
  .cid-uBciVMI44A .carousel {
    min-height: 700px;
  }
  .cid-uBciVMI44A .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBciVMI44A .carousel {
    min-height: 455px;
  }
  .cid-uBciVMI44A .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBciVMI44A .carousel {
    min-height: 385px;
  }
  .cid-uBciVMI44A .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBciVMI44A .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBciVMI44A .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBciVMI44A .carousel,
.cid-uBciVMI44A .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBciVMI44A .item-wrapper {
  width: 100%;
}
.cid-uBciVMI44A .carousel-caption {
  bottom: 40px;
}
.cid-uBciVMI44A .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBciVMI44A .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBciVMI44A .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBciVMI44A .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBciVMI44A .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-uBciVMI44A .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBciVMI44A .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBciVMI44A .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBciVMI44A .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBciVMI44A .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-uBciVMI44A .carousel-indicators li.active,
.cid-uBciVMI44A .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBciVMI44A .carousel-indicators li::after,
.cid-uBciVMI44A .carousel-indicators li::before {
  content: none;
}
.cid-uBciVMI44A .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBciVMI44A .carousel-indicators {
    display: none !important;
  }
}
.cid-uBciVNyHQd {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fff0b0;
}
.cid-uBciVNyHQd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBciVNyHQd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uBciVNyHQd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBciVNyHQd .row {
  flex-direction: row-reverse;
}
.cid-uBciVNyHQd img {
  width: 100%;
}
.cid-uBciVOfOpk {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #98dee8;
}
.cid-uBciVOfOpk .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBciVOfOpk .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBciVOfOpk .mbr-text,
.cid-uBciVOfOpk .mbr-section-btn {
  text-align: left;
}
.cid-uBciVP0rAL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #98dee8;
}
@media (min-width: 992px) {
  .cid-uBciVP0rAL .carousel {
    min-height: 700px;
  }
  .cid-uBciVP0rAL .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBciVP0rAL .carousel {
    min-height: 455px;
  }
  .cid-uBciVP0rAL .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBciVP0rAL .carousel {
    min-height: 385px;
  }
  .cid-uBciVP0rAL .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBciVP0rAL .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBciVP0rAL .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBciVP0rAL .carousel,
.cid-uBciVP0rAL .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBciVP0rAL .item-wrapper {
  width: 100%;
}
.cid-uBciVP0rAL .carousel-caption {
  bottom: 40px;
}
.cid-uBciVP0rAL .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBciVP0rAL .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBciVP0rAL .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBciVP0rAL .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBciVP0rAL .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-uBciVP0rAL .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBciVP0rAL .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBciVP0rAL .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBciVP0rAL .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBciVP0rAL .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-uBciVP0rAL .carousel-indicators li.active,
.cid-uBciVP0rAL .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBciVP0rAL .carousel-indicators li::after,
.cid-uBciVP0rAL .carousel-indicators li::before {
  content: none;
}
.cid-uBciVP0rAL .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBciVP0rAL .carousel-indicators {
    display: none !important;
  }
}
.cid-uBciVPULxK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uBciVPULxK .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBciVPULxK .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBciVPULxK .mbr-text,
.cid-uBciVPULxK .mbr-section-btn {
  text-align: left;
}
.cid-uBciVQKQFI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBciVQKQFI .carousel {
    min-height: 700px;
  }
  .cid-uBciVQKQFI .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBciVQKQFI .carousel {
    min-height: 455px;
  }
  .cid-uBciVQKQFI .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBciVQKQFI .carousel {
    min-height: 385px;
  }
  .cid-uBciVQKQFI .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBciVQKQFI .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBciVQKQFI .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBciVQKQFI .carousel,
.cid-uBciVQKQFI .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBciVQKQFI .item-wrapper {
  width: 100%;
}
.cid-uBciVQKQFI .carousel-caption {
  bottom: 40px;
}
.cid-uBciVQKQFI .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBciVQKQFI .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBciVQKQFI .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBciVQKQFI .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBciVQKQFI .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-uBciVQKQFI .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBciVQKQFI .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBciVQKQFI .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBciVQKQFI .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBciVQKQFI .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-uBciVQKQFI .carousel-indicators li.active,
.cid-uBciVQKQFI .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBciVQKQFI .carousel-indicators li::after,
.cid-uBciVQKQFI .carousel-indicators li::before {
  content: none;
}
.cid-uBciVQKQFI .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBciVQKQFI .carousel-indicators {
    display: none !important;
  }
}
.cid-uBciVRBtz9 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-uBciVRBtz9 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBciVRBtz9 .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBciVRBtz9 .mbr-text,
.cid-uBciVRBtz9 .mbr-section-btn {
  text-align: left;
}
.cid-uBciVSnhVO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
@media (min-width: 992px) {
  .cid-uBciVSnhVO .carousel {
    min-height: 700px;
  }
  .cid-uBciVSnhVO .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBciVSnhVO .carousel {
    min-height: 455px;
  }
  .cid-uBciVSnhVO .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBciVSnhVO .carousel {
    min-height: 385px;
  }
  .cid-uBciVSnhVO .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBciVSnhVO .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBciVSnhVO .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBciVSnhVO .carousel,
.cid-uBciVSnhVO .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBciVSnhVO .item-wrapper {
  width: 100%;
}
.cid-uBciVSnhVO .carousel-caption {
  bottom: 40px;
}
.cid-uBciVSnhVO .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBciVSnhVO .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBciVSnhVO .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBciVSnhVO .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBciVSnhVO .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-uBciVSnhVO .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBciVSnhVO .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBciVSnhVO .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBciVSnhVO .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBciVSnhVO .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-uBciVSnhVO .carousel-indicators li.active,
.cid-uBciVSnhVO .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBciVSnhVO .carousel-indicators li::after,
.cid-uBciVSnhVO .carousel-indicators li::before {
  content: none;
}
.cid-uBciVSnhVO .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBciVSnhVO .carousel-indicators {
    display: none !important;
  }
}
.cid-uBciVTjatU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uBciVTjatU .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBciVTjatU .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBciVTjatU .mbr-text,
.cid-uBciVTjatU .mbr-section-btn {
  text-align: left;
}
.cid-uBciVU1M9j {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fff0b0;
}
.cid-uBciVU1M9j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBciVU1M9j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uBciVU1M9j .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBciVU1M9j .row {
  flex-direction: row-reverse;
}
.cid-uBciVU1M9j img {
  width: 100%;
}
.cid-uBciVUKYDl {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-uBciVUKYDl .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBciVUKYDl .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBciVUKYDl .mbr-text,
.cid-uBciVUKYDl .mbr-section-btn {
  text-align: left;
}
.cid-uBciVVu8CM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
@media (min-width: 992px) {
  .cid-uBciVVu8CM .carousel {
    min-height: 700px;
  }
  .cid-uBciVVu8CM .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBciVVu8CM .carousel {
    min-height: 455px;
  }
  .cid-uBciVVu8CM .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBciVVu8CM .carousel {
    min-height: 385px;
  }
  .cid-uBciVVu8CM .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBciVVu8CM .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBciVVu8CM .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBciVVu8CM .carousel,
.cid-uBciVVu8CM .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBciVVu8CM .item-wrapper {
  width: 100%;
}
.cid-uBciVVu8CM .carousel-caption {
  bottom: 40px;
}
.cid-uBciVVu8CM .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBciVVu8CM .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBciVVu8CM .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBciVVu8CM .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBciVVu8CM .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-uBciVVu8CM .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBciVVu8CM .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBciVVu8CM .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBciVVu8CM .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBciVVu8CM .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-uBciVVu8CM .carousel-indicators li.active,
.cid-uBciVVu8CM .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBciVVu8CM .carousel-indicators li::after,
.cid-uBciVVu8CM .carousel-indicators li::before {
  content: none;
}
.cid-uBciVVu8CM .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBciVVu8CM .carousel-indicators {
    display: none !important;
  }
}
.cid-uBciVWkNgt {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uBciVWkNgt .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBciVWkNgt .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBciVWkNgt .mbr-text,
.cid-uBciVWkNgt .mbr-section-btn {
  text-align: left;
}
.cid-uBciVX4hBF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBciVX4hBF .carousel {
    min-height: 700px;
  }
  .cid-uBciVX4hBF .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBciVX4hBF .carousel {
    min-height: 455px;
  }
  .cid-uBciVX4hBF .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBciVX4hBF .carousel {
    min-height: 385px;
  }
  .cid-uBciVX4hBF .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBciVX4hBF .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBciVX4hBF .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBciVX4hBF .carousel,
.cid-uBciVX4hBF .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBciVX4hBF .item-wrapper {
  width: 100%;
}
.cid-uBciVX4hBF .carousel-caption {
  bottom: 40px;
}
.cid-uBciVX4hBF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBciVX4hBF .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBciVX4hBF .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBciVX4hBF .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBciVX4hBF .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-uBciVX4hBF .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBciVX4hBF .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBciVX4hBF .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBciVX4hBF .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBciVX4hBF .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-uBciVX4hBF .carousel-indicators li.active,
.cid-uBciVX4hBF .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBciVX4hBF .carousel-indicators li::after,
.cid-uBciVX4hBF .carousel-indicators li::before {
  content: none;
}
.cid-uBciVX4hBF .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBciVX4hBF .carousel-indicators {
    display: none !important;
  }
}
.cid-uBciVY2Nzu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffb5b5;
}
.cid-uBciVY2Nzu .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBciVY2Nzu .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBciVY2Nzu .mbr-text,
.cid-uBciVY2Nzu .mbr-section-btn {
  text-align: left;
}
.cid-uBciVYPxZ2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffb5b5;
}
@media (min-width: 992px) {
  .cid-uBciVYPxZ2 .carousel {
    min-height: 700px;
  }
  .cid-uBciVYPxZ2 .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBciVYPxZ2 .carousel {
    min-height: 455px;
  }
  .cid-uBciVYPxZ2 .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBciVYPxZ2 .carousel {
    min-height: 385px;
  }
  .cid-uBciVYPxZ2 .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBciVYPxZ2 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBciVYPxZ2 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBciVYPxZ2 .carousel,
.cid-uBciVYPxZ2 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBciVYPxZ2 .item-wrapper {
  width: 100%;
}
.cid-uBciVYPxZ2 .carousel-caption {
  bottom: 40px;
}
.cid-uBciVYPxZ2 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBciVYPxZ2 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBciVYPxZ2 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBciVYPxZ2 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBciVYPxZ2 .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-uBciVYPxZ2 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBciVYPxZ2 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBciVYPxZ2 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBciVYPxZ2 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBciVYPxZ2 .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-uBciVYPxZ2 .carousel-indicators li.active,
.cid-uBciVYPxZ2 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBciVYPxZ2 .carousel-indicators li::after,
.cid-uBciVYPxZ2 .carousel-indicators li::before {
  content: none;
}
.cid-uBciVYPxZ2 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBciVYPxZ2 .carousel-indicators {
    display: none !important;
  }
}
.cid-uBciVZIoDQ {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fff0b0;
}
.cid-uBciVZIoDQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBciVZIoDQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uBciVZIoDQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBciVZIoDQ .row {
  flex-direction: row-reverse;
}
.cid-uBciVZIoDQ img {
  width: 100%;
}
.cid-uBciW0yW91 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-uBciW0yW91 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBciW0yW91 .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBciW0yW91 .mbr-text,
.cid-uBciW0yW91 .mbr-section-btn {
  text-align: left;
}
.cid-uBciW1pJfF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
@media (min-width: 992px) {
  .cid-uBciW1pJfF .carousel {
    min-height: 700px;
  }
  .cid-uBciW1pJfF .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBciW1pJfF .carousel {
    min-height: 455px;
  }
  .cid-uBciW1pJfF .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBciW1pJfF .carousel {
    min-height: 385px;
  }
  .cid-uBciW1pJfF .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBciW1pJfF .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBciW1pJfF .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBciW1pJfF .carousel,
.cid-uBciW1pJfF .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBciW1pJfF .item-wrapper {
  width: 100%;
}
.cid-uBciW1pJfF .carousel-caption {
  bottom: 40px;
}
.cid-uBciW1pJfF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBciW1pJfF .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBciW1pJfF .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBciW1pJfF .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBciW1pJfF .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-uBciW1pJfF .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBciW1pJfF .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBciW1pJfF .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBciW1pJfF .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBciW1pJfF .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-uBciW1pJfF .carousel-indicators li.active,
.cid-uBciW1pJfF .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBciW1pJfF .carousel-indicators li::after,
.cid-uBciW1pJfF .carousel-indicators li::before {
  content: none;
}
.cid-uBciW1pJfF .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBciW1pJfF .carousel-indicators {
    display: none !important;
  }
}
.cid-uBciW2kzoT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uBciW2kzoT .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBciW2kzoT .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBciW2kzoT .mbr-text,
.cid-uBciW2kzoT .mbr-section-btn {
  text-align: left;
}
.cid-uBciW384Em {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBciW384Em .carousel {
    min-height: 700px;
  }
  .cid-uBciW384Em .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBciW384Em .carousel {
    min-height: 455px;
  }
  .cid-uBciW384Em .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBciW384Em .carousel {
    min-height: 385px;
  }
  .cid-uBciW384Em .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBciW384Em .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBciW384Em .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBciW384Em .carousel,
.cid-uBciW384Em .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBciW384Em .item-wrapper {
  width: 100%;
}
.cid-uBciW384Em .carousel-caption {
  bottom: 40px;
}
.cid-uBciW384Em .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBciW384Em .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBciW384Em .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBciW384Em .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBciW384Em .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-uBciW384Em .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBciW384Em .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBciW384Em .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBciW384Em .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBciW384Em .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-uBciW384Em .carousel-indicators li.active,
.cid-uBciW384Em .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBciW384Em .carousel-indicators li::after,
.cid-uBciW384Em .carousel-indicators li::before {
  content: none;
}
.cid-uBciW384Em .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBciW384Em .carousel-indicators {
    display: none !important;
  }
}
.cid-uBciXUHwBf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffe161;
}
.cid-uBciXUHwBf .mbr-text,
.cid-uBciXUHwBf .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-uBciXUHwBf .mbr-text,
  .cid-uBciXUHwBf .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uBciXUHwBf .mbr-text,
  .cid-uBciXUHwBf .mbr-section-title {
    text-align: center;
  }
}
.cid-uBciXUHwBf a.btn {
  height: 100%;
  margin: 0;
}
.cid-uBciXUHwBf .mbr-section-btn {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
}
.cid-uBciXUHwBf .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uBciXUHwBf .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uBciXUHwBf .justify-content-center {
  align-items: center;
}
.cid-uBciXW0Spd {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uBciXW0Spd .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uBciXW0Spd .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uBciXW0Spd .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uBciXW0Spd .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uBciXW0Spd .list {
    margin-bottom: 0rem;
  }
}
.cid-uBciXW0Spd .mbr-text {
  color: #000000;
}
.cid-uBciXW0Spd .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-uBciXW0Spd .mbr-iconfont {
  color: black;
}
.cid-uBciXW0Spd H5 {
  color: #000000;
}
.cid-uBcpAyQC0b {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uBcpAyQC0b nav.navbar {
  position: fixed;
}
.cid-uBcpAyQC0b .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-uBcpAyQC0b .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBcpAyQC0b .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBcpAyQC0b .dropdown-item:hover,
.cid-uBcpAyQC0b .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uBcpAyQC0b .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBcpAyQC0b .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBcpAyQC0b .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uBcpAyQC0b .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBcpAyQC0b .nav-link {
  position: relative;
}
.cid-uBcpAyQC0b .container {
  display: flex;
  margin: auto;
}
.cid-uBcpAyQC0b .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uBcpAyQC0b .dropdown-menu,
.cid-uBcpAyQC0b .navbar.opened {
  background: #ffffff !important;
}
.cid-uBcpAyQC0b .nav-item:focus,
.cid-uBcpAyQC0b .nav-link:focus {
  outline: none;
}
.cid-uBcpAyQC0b .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBcpAyQC0b .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBcpAyQC0b .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-uBcpAyQC0b .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBcpAyQC0b .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBcpAyQC0b .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBcpAyQC0b .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uBcpAyQC0b .navbar.opened {
  transition: all .3s;
}
.cid-uBcpAyQC0b .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uBcpAyQC0b .navbar .navbar-logo img {
  width: auto;
}
.cid-uBcpAyQC0b .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBcpAyQC0b .navbar.collapsed {
  justify-content: center;
}
.cid-uBcpAyQC0b .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBcpAyQC0b .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBcpAyQC0b .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uBcpAyQC0b .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBcpAyQC0b .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBcpAyQC0b .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-uBcpAyQC0b .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBcpAyQC0b .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uBcpAyQC0b .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uBcpAyQC0b .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBcpAyQC0b .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBcpAyQC0b .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBcpAyQC0b .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBcpAyQC0b .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-uBcpAyQC0b .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBcpAyQC0b .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBcpAyQC0b .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBcpAyQC0b .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBcpAyQC0b .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBcpAyQC0b .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uBcpAyQC0b .navbar.navbar-short {
  min-height: 60px;
}
.cid-uBcpAyQC0b .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBcpAyQC0b .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uBcpAyQC0b .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uBcpAyQC0b .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBcpAyQC0b .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBcpAyQC0b .dropdown-item.active,
.cid-uBcpAyQC0b .dropdown-item:active {
  background-color: transparent;
}
.cid-uBcpAyQC0b .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBcpAyQC0b .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBcpAyQC0b .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBcpAyQC0b .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uBcpAyQC0b .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBcpAyQC0b .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBcpAyQC0b ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBcpAyQC0b .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uBcpAyQC0b button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uBcpAyQC0b button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uBcpAyQC0b button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uBcpAyQC0b button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uBcpAyQC0b button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uBcpAyQC0b button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uBcpAyQC0b nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBcpAyQC0b nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uBcpAyQC0b nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uBcpAyQC0b nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBcpAyQC0b .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uBcpAyQC0b a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBcpAyQC0b .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-uBcpAyQC0b .navbar {
    height: 70px;
  }
  .cid-uBcpAyQC0b .navbar.opened {
    height: auto;
  }
  .cid-uBcpAyQC0b .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBcpAzzDWn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uBcpAzzDWn .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uBcpAzzDWn .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uBcpAzzDWn .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uBcpAzzDWn .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uBcpAzzDWn .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-uBcpAzzDWn .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uBcpAzzDWn .carousel-control,
.cid-uBcpAzzDWn .close {
  background: #1b1b1b;
}
.cid-uBcpAzzDWn .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uBcpAzzDWn .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uBcpAzzDWn .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uBcpAzzDWn .carousel-control-next span {
  margin-left: 5px;
}
.cid-uBcpAzzDWn .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-uBcpAzzDWn .close::before {
  content: '\e91a';
}
.cid-uBcpAzzDWn .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uBcpAzzDWn .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-uBcpAzzDWn .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcpAzzDWn .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcpAzzDWn .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcpAzzDWn .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uBcpAzzDWn .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-uBcpAzzDWn .carousel-indicators li.active,
.cid-uBcpAzzDWn .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcpAzzDWn .carousel-indicators li::after,
.cid-uBcpAzzDWn .carousel-indicators li::before {
  content: none;
}
.cid-uBcpAzzDWn .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcpAzzDWn .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uBcpAzzDWn .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uBcpAzzDWn .carousel-indicators {
    display: none;
  }
}
.cid-uBcpAzzDWn .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcpAzzDWn .carousel-inner > .active {
  display: block;
}
.cid-uBcpAzzDWn .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcpAzzDWn .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uBcpAzzDWn .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uBcpAzzDWn .carousel-control,
  .cid-uBcpAzzDWn .carousel-indicators,
  .cid-uBcpAzzDWn .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uBcpAzzDWn .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uBcpAzzDWn .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uBcpAzzDWn .carousel-indicators .active,
.cid-uBcpAzzDWn .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uBcpAzzDWn .carousel-indicators .active {
  background: #fff;
}
.cid-uBcpAzzDWn .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uBcpAzzDWn .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uBcpAzzDWn .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uBcpAzzDWn .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uBcpAzzDWn .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uBcpAzzDWn .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uBcpAzzDWn .carousel {
  width: 100%;
}
.cid-uBcpAzzDWn .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uBcpAzzDWn .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uBcpAzzDWn .modal.fade .modal-dialog,
.cid-uBcpAzzDWn .modal.in .modal-dialog {
  transform: none;
}
.cid-uBcpAzzDWn .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uBcpAzzDWn H6 {
  text-align: center;
}
.cid-uBcpAAmUSg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBcpBamtCH {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #2c7d4e;
}
.cid-uBcpBamtCH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBcpBamtCH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uBcpBamtCH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBcpBamtCH .row {
  flex-direction: row-reverse;
}
.cid-uBcpBamtCH img {
  width: 100%;
}
.cid-uBcpBaZEVC {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fff0b0;
}
.cid-uBcpBaZEVC .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uBcpBaZEVC .mbr-section-subtitle {
  text-align: left;
}
.cid-uBcpBbC2OH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBcpBbC2OH .carousel {
    min-height: 700px;
  }
  .cid-uBcpBbC2OH .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcpBbC2OH .carousel {
    min-height: 455px;
  }
  .cid-uBcpBbC2OH .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcpBbC2OH .carousel {
    min-height: 385px;
  }
  .cid-uBcpBbC2OH .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcpBbC2OH .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcpBbC2OH .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcpBbC2OH .carousel,
.cid-uBcpBbC2OH .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcpBbC2OH .item-wrapper {
  width: 100%;
}
.cid-uBcpBbC2OH .carousel-caption {
  bottom: 40px;
}
.cid-uBcpBbC2OH .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcpBbC2OH .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcpBbC2OH .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcpBbC2OH .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcpBbC2OH .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-uBcpBbC2OH .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcpBbC2OH .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcpBbC2OH .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcpBbC2OH .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcpBbC2OH .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-uBcpBbC2OH .carousel-indicators li.active,
.cid-uBcpBbC2OH .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcpBbC2OH .carousel-indicators li::after,
.cid-uBcpBbC2OH .carousel-indicators li::before {
  content: none;
}
.cid-uBcpBbC2OH .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcpBbC2OH .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcpBcl5Hb {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #2c7d4e;
}
.cid-uBcpBcl5Hb .mbr-section-subtitle {
  text-align: left;
}
.cid-uBcpBcXfl8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #2c7d4e;
}
@media (min-width: 992px) {
  .cid-uBcpBcXfl8 .carousel {
    min-height: 700px;
  }
  .cid-uBcpBcXfl8 .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcpBcXfl8 .carousel {
    min-height: 455px;
  }
  .cid-uBcpBcXfl8 .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcpBcXfl8 .carousel {
    min-height: 385px;
  }
  .cid-uBcpBcXfl8 .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcpBcXfl8 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcpBcXfl8 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcpBcXfl8 .carousel,
.cid-uBcpBcXfl8 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcpBcXfl8 .item-wrapper {
  width: 100%;
}
.cid-uBcpBcXfl8 .carousel-caption {
  bottom: 40px;
}
.cid-uBcpBcXfl8 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcpBcXfl8 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcpBcXfl8 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcpBcXfl8 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcpBcXfl8 .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-uBcpBcXfl8 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcpBcXfl8 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcpBcXfl8 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcpBcXfl8 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcpBcXfl8 .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-uBcpBcXfl8 .carousel-indicators li.active,
.cid-uBcpBcXfl8 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcpBcXfl8 .carousel-indicators li::after,
.cid-uBcpBcXfl8 .carousel-indicators li::before {
  content: none;
}
.cid-uBcpBcXfl8 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcpBcXfl8 .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcpBdDgc0 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-uBcpBdDgc0 .mbr-section-subtitle {
  text-align: left;
}
.cid-uBcpBehSWv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-uBcpBehSWv .carousel {
    min-height: 700px;
  }
  .cid-uBcpBehSWv .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcpBehSWv .carousel {
    min-height: 455px;
  }
  .cid-uBcpBehSWv .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcpBehSWv .carousel {
    min-height: 385px;
  }
  .cid-uBcpBehSWv .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcpBehSWv .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcpBehSWv .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcpBehSWv .carousel,
.cid-uBcpBehSWv .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcpBehSWv .item-wrapper {
  width: 100%;
}
.cid-uBcpBehSWv .carousel-caption {
  bottom: 40px;
}
.cid-uBcpBehSWv .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcpBehSWv .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcpBehSWv .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcpBehSWv .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcpBehSWv .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-uBcpBehSWv .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcpBehSWv .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcpBehSWv .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcpBehSWv .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcpBehSWv .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-uBcpBehSWv .carousel-indicators li.active,
.cid-uBcpBehSWv .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcpBehSWv .carousel-indicators li::after,
.cid-uBcpBehSWv .carousel-indicators li::before {
  content: none;
}
.cid-uBcpBehSWv .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcpBehSWv .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcpBf16mp {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fff0b0;
}
.cid-uBcpBf16mp .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uBcpBf16mp .mbr-section-subtitle {
  text-align: left;
}
.cid-uBcpBfEp2p {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBcpBfEp2p .carousel {
    min-height: 700px;
  }
  .cid-uBcpBfEp2p .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcpBfEp2p .carousel {
    min-height: 455px;
  }
  .cid-uBcpBfEp2p .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcpBfEp2p .carousel {
    min-height: 385px;
  }
  .cid-uBcpBfEp2p .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcpBfEp2p .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcpBfEp2p .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcpBfEp2p .carousel,
.cid-uBcpBfEp2p .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcpBfEp2p .item-wrapper {
  width: 100%;
}
.cid-uBcpBfEp2p .carousel-caption {
  bottom: 40px;
}
.cid-uBcpBfEp2p .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcpBfEp2p .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcpBfEp2p .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcpBfEp2p .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcpBfEp2p .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-uBcpBfEp2p .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcpBfEp2p .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcpBfEp2p .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcpBfEp2p .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcpBfEp2p .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-uBcpBfEp2p .carousel-indicators li.active,
.cid-uBcpBfEp2p .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcpBfEp2p .carousel-indicators li::after,
.cid-uBcpBfEp2p .carousel-indicators li::before {
  content: none;
}
.cid-uBcpBfEp2p .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcpBfEp2p .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcpBgpPJL {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-uBcpBgpPJL .mbr-section-subtitle {
  text-align: left;
}
.cid-uBcpBh4x3R {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-uBcpBh4x3R .carousel {
    min-height: 700px;
  }
  .cid-uBcpBh4x3R .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcpBh4x3R .carousel {
    min-height: 455px;
  }
  .cid-uBcpBh4x3R .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcpBh4x3R .carousel {
    min-height: 385px;
  }
  .cid-uBcpBh4x3R .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcpBh4x3R .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcpBh4x3R .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcpBh4x3R .carousel,
.cid-uBcpBh4x3R .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcpBh4x3R .item-wrapper {
  width: 100%;
}
.cid-uBcpBh4x3R .carousel-caption {
  bottom: 40px;
}
.cid-uBcpBh4x3R .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcpBh4x3R .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcpBh4x3R .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcpBh4x3R .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcpBh4x3R .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-uBcpBh4x3R .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcpBh4x3R .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcpBh4x3R .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcpBh4x3R .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcpBh4x3R .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-uBcpBh4x3R .carousel-indicators li.active,
.cid-uBcpBh4x3R .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcpBh4x3R .carousel-indicators li::after,
.cid-uBcpBh4x3R .carousel-indicators li::before {
  content: none;
}
.cid-uBcpBh4x3R .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcpBh4x3R .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcpBhO9N7 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fff0b0;
}
.cid-uBcpBhO9N7 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uBcpBhO9N7 .mbr-section-subtitle {
  text-align: left;
}
.cid-uBcpBixI5u {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBcpBixI5u .carousel {
    min-height: 700px;
  }
  .cid-uBcpBixI5u .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcpBixI5u .carousel {
    min-height: 455px;
  }
  .cid-uBcpBixI5u .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcpBixI5u .carousel {
    min-height: 385px;
  }
  .cid-uBcpBixI5u .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcpBixI5u .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcpBixI5u .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcpBixI5u .carousel,
.cid-uBcpBixI5u .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcpBixI5u .item-wrapper {
  width: 100%;
}
.cid-uBcpBixI5u .carousel-caption {
  bottom: 40px;
}
.cid-uBcpBixI5u .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcpBixI5u .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcpBixI5u .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcpBixI5u .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcpBixI5u .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-uBcpBixI5u .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcpBixI5u .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcpBixI5u .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcpBixI5u .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcpBixI5u .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-uBcpBixI5u .carousel-indicators li.active,
.cid-uBcpBixI5u .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcpBixI5u .carousel-indicators li::after,
.cid-uBcpBixI5u .carousel-indicators li::before {
  content: none;
}
.cid-uBcpBixI5u .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcpBixI5u .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcpBjlEtO {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-uBcpBjlEtO .mbr-section-subtitle {
  text-align: left;
}
.cid-uBcpBk5Cwn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
@media (min-width: 992px) {
  .cid-uBcpBk5Cwn .carousel {
    min-height: 700px;
  }
  .cid-uBcpBk5Cwn .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcpBk5Cwn .carousel {
    min-height: 455px;
  }
  .cid-uBcpBk5Cwn .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcpBk5Cwn .carousel {
    min-height: 385px;
  }
  .cid-uBcpBk5Cwn .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcpBk5Cwn .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcpBk5Cwn .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcpBk5Cwn .carousel,
.cid-uBcpBk5Cwn .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcpBk5Cwn .item-wrapper {
  width: 100%;
}
.cid-uBcpBk5Cwn .carousel-caption {
  bottom: 40px;
}
.cid-uBcpBk5Cwn .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcpBk5Cwn .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcpBk5Cwn .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcpBk5Cwn .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcpBk5Cwn .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-uBcpBk5Cwn .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcpBk5Cwn .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcpBk5Cwn .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcpBk5Cwn .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcpBk5Cwn .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-uBcpBk5Cwn .carousel-indicators li.active,
.cid-uBcpBk5Cwn .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcpBk5Cwn .carousel-indicators li::after,
.cid-uBcpBk5Cwn .carousel-indicators li::before {
  content: none;
}
.cid-uBcpBk5Cwn .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcpBk5Cwn .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcpBkRPXK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uBcpBkRPXK .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBcpBkRPXK .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBcpBkRPXK .mbr-text,
.cid-uBcpBkRPXK .mbr-section-btn {
  text-align: left;
}
.cid-uBcpBlzKlm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBcpBlzKlm .carousel {
    min-height: 700px;
  }
  .cid-uBcpBlzKlm .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcpBlzKlm .carousel {
    min-height: 455px;
  }
  .cid-uBcpBlzKlm .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcpBlzKlm .carousel {
    min-height: 385px;
  }
  .cid-uBcpBlzKlm .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcpBlzKlm .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcpBlzKlm .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcpBlzKlm .carousel,
.cid-uBcpBlzKlm .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcpBlzKlm .item-wrapper {
  width: 100%;
}
.cid-uBcpBlzKlm .carousel-caption {
  bottom: 40px;
}
.cid-uBcpBlzKlm .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcpBlzKlm .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcpBlzKlm .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcpBlzKlm .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcpBlzKlm .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-uBcpBlzKlm .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcpBlzKlm .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcpBlzKlm .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcpBlzKlm .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcpBlzKlm .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-uBcpBlzKlm .carousel-indicators li.active,
.cid-uBcpBlzKlm .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcpBlzKlm .carousel-indicators li::after,
.cid-uBcpBlzKlm .carousel-indicators li::before {
  content: none;
}
.cid-uBcpBlzKlm .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcpBlzKlm .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcpBmlx0P {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-uBcpBmlx0P .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uBcpBmlx0P .mbr-section-subtitle {
  text-align: left;
}
.cid-uBcpBn37Vk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
@media (min-width: 992px) {
  .cid-uBcpBn37Vk .carousel {
    min-height: 700px;
  }
  .cid-uBcpBn37Vk .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcpBn37Vk .carousel {
    min-height: 455px;
  }
  .cid-uBcpBn37Vk .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcpBn37Vk .carousel {
    min-height: 385px;
  }
  .cid-uBcpBn37Vk .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcpBn37Vk .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcpBn37Vk .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcpBn37Vk .carousel,
.cid-uBcpBn37Vk .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcpBn37Vk .item-wrapper {
  width: 100%;
}
.cid-uBcpBn37Vk .carousel-caption {
  bottom: 40px;
}
.cid-uBcpBn37Vk .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcpBn37Vk .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcpBn37Vk .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcpBn37Vk .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcpBn37Vk .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-uBcpBn37Vk .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcpBn37Vk .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcpBn37Vk .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcpBn37Vk .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcpBn37Vk .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-uBcpBn37Vk .carousel-indicators li.active,
.cid-uBcpBn37Vk .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcpBn37Vk .carousel-indicators li::after,
.cid-uBcpBn37Vk .carousel-indicators li::before {
  content: none;
}
.cid-uBcpBn37Vk .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcpBn37Vk .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcpBnZW4z {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fff0b0;
}
.cid-uBcpBnZW4z .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uBcpBnZW4z .mbr-section-subtitle {
  text-align: left;
}
.cid-uBcpBoIrOI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBcpBoIrOI .carousel {
    min-height: 700px;
  }
  .cid-uBcpBoIrOI .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcpBoIrOI .carousel {
    min-height: 455px;
  }
  .cid-uBcpBoIrOI .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcpBoIrOI .carousel {
    min-height: 385px;
  }
  .cid-uBcpBoIrOI .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcpBoIrOI .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcpBoIrOI .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcpBoIrOI .carousel,
.cid-uBcpBoIrOI .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcpBoIrOI .item-wrapper {
  width: 100%;
}
.cid-uBcpBoIrOI .carousel-caption {
  bottom: 40px;
}
.cid-uBcpBoIrOI .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcpBoIrOI .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcpBoIrOI .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcpBoIrOI .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcpBoIrOI .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-uBcpBoIrOI .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcpBoIrOI .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcpBoIrOI .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcpBoIrOI .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcpBoIrOI .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-uBcpBoIrOI .carousel-indicators li.active,
.cid-uBcpBoIrOI .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcpBoIrOI .carousel-indicators li::after,
.cid-uBcpBoIrOI .carousel-indicators li::before {
  content: none;
}
.cid-uBcpBoIrOI .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcpBoIrOI .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcpBpuOKu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffe885;
}
.cid-uBcpBpuOKu .mbr-section-subtitle {
  text-align: left;
}
.cid-uBcpBpuOKu .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uBcpBqeOFr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffe885;
}
@media (min-width: 992px) {
  .cid-uBcpBqeOFr .carousel {
    min-height: 600px;
  }
  .cid-uBcpBqeOFr .carousel img {
    max-height: 600px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcpBqeOFr .carousel {
    min-height: 390px;
  }
  .cid-uBcpBqeOFr .carousel img {
    max-height: 390px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcpBqeOFr .carousel {
    min-height: 330px;
  }
  .cid-uBcpBqeOFr .carousel img {
    max-height: 330px;
    object-fit: contain;
  }
  .cid-uBcpBqeOFr .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcpBqeOFr .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcpBqeOFr .carousel,
.cid-uBcpBqeOFr .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcpBqeOFr .item-wrapper {
  width: 100%;
}
.cid-uBcpBqeOFr .carousel-caption {
  bottom: 40px;
}
.cid-uBcpBqeOFr .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcpBqeOFr .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcpBqeOFr .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcpBqeOFr .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcpBqeOFr .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-uBcpBqeOFr .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcpBqeOFr .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcpBqeOFr .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcpBqeOFr .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcpBqeOFr .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-uBcpBqeOFr .carousel-indicators li.active,
.cid-uBcpBqeOFr .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcpBqeOFr .carousel-indicators li::after,
.cid-uBcpBqeOFr .carousel-indicators li::before {
  content: none;
}
.cid-uBcpBqeOFr .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcpBqeOFr .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcpBqXzzv {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-uBcpBqXzzv .mbr-section-subtitle {
  text-align: left;
}
.cid-uBcpBqXzzv .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uBcpBrJMri {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
@media (min-width: 992px) {
  .cid-uBcpBrJMri .carousel {
    min-height: 700px;
  }
  .cid-uBcpBrJMri .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcpBrJMri .carousel {
    min-height: 455px;
  }
  .cid-uBcpBrJMri .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcpBrJMri .carousel {
    min-height: 385px;
  }
  .cid-uBcpBrJMri .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcpBrJMri .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcpBrJMri .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcpBrJMri .carousel,
.cid-uBcpBrJMri .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcpBrJMri .item-wrapper {
  width: 100%;
}
.cid-uBcpBrJMri .carousel-caption {
  bottom: 40px;
}
.cid-uBcpBrJMri .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcpBrJMri .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcpBrJMri .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcpBrJMri .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcpBrJMri .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-uBcpBrJMri .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcpBrJMri .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcpBrJMri .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcpBrJMri .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcpBrJMri .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-uBcpBrJMri .carousel-indicators li.active,
.cid-uBcpBrJMri .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcpBrJMri .carousel-indicators li::after,
.cid-uBcpBrJMri .carousel-indicators li::before {
  content: none;
}
.cid-uBcpBrJMri .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcpBrJMri .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcpBsADDD {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uBcpBsADDD .mbr-section-subtitle {
  text-align: left;
}
.cid-uBcpBsADDD .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uBcpBtlKwO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBcpBtlKwO .carousel {
    min-height: 700px;
  }
  .cid-uBcpBtlKwO .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcpBtlKwO .carousel {
    min-height: 455px;
  }
  .cid-uBcpBtlKwO .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcpBtlKwO .carousel {
    min-height: 385px;
  }
  .cid-uBcpBtlKwO .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcpBtlKwO .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcpBtlKwO .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcpBtlKwO .carousel,
.cid-uBcpBtlKwO .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcpBtlKwO .item-wrapper {
  width: 100%;
}
.cid-uBcpBtlKwO .carousel-caption {
  bottom: 40px;
}
.cid-uBcpBtlKwO .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcpBtlKwO .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcpBtlKwO .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcpBtlKwO .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcpBtlKwO .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-uBcpBtlKwO .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcpBtlKwO .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcpBtlKwO .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcpBtlKwO .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcpBtlKwO .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-uBcpBtlKwO .carousel-indicators li.active,
.cid-uBcpBtlKwO .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcpBtlKwO .carousel-indicators li::after,
.cid-uBcpBtlKwO .carousel-indicators li::before {
  content: none;
}
.cid-uBcpBtlKwO .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcpBtlKwO .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcpBuggpn {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #2c7d4e;
}
.cid-uBcpBuggpn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBcpBuggpn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uBcpBuggpn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBcpBuggpn .row {
  flex-direction: row-reverse;
}
.cid-uBcpBuggpn img {
  width: 100%;
}
.cid-uBcpBv7ZwM {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #2c7d4e;
}
.cid-uBcpBvQHd3 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fff0b0;
}
.cid-uBcpBvQHd3 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uBcpBwENRI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBcpBwENRI .carousel {
    min-height: 600px;
  }
  .cid-uBcpBwENRI .carousel img {
    max-height: 600px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcpBwENRI .carousel {
    min-height: 390px;
  }
  .cid-uBcpBwENRI .carousel img {
    max-height: 390px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcpBwENRI .carousel {
    min-height: 330px;
  }
  .cid-uBcpBwENRI .carousel img {
    max-height: 330px;
    object-fit: contain;
  }
  .cid-uBcpBwENRI .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcpBwENRI .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcpBwENRI .carousel,
.cid-uBcpBwENRI .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcpBwENRI .item-wrapper {
  width: 100%;
}
.cid-uBcpBwENRI .carousel-caption {
  bottom: 40px;
}
.cid-uBcpBwENRI .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcpBwENRI .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcpBwENRI .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcpBwENRI .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcpBwENRI .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-uBcpBwENRI .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcpBwENRI .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcpBwENRI .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcpBwENRI .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcpBwENRI .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-uBcpBwENRI .carousel-indicators li.active,
.cid-uBcpBwENRI .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcpBwENRI .carousel-indicators li::after,
.cid-uBcpBwENRI .carousel-indicators li::before {
  content: none;
}
.cid-uBcpBwENRI .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcpBwENRI .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcpBxzIJU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-uBcpBxzIJU .mbr-section-subtitle {
  text-align: left;
}
.cid-uBcpByoAvT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-uBcpByoAvT .carousel {
    min-height: 700px;
  }
  .cid-uBcpByoAvT .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcpByoAvT .carousel {
    min-height: 455px;
  }
  .cid-uBcpByoAvT .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcpByoAvT .carousel {
    min-height: 385px;
  }
  .cid-uBcpByoAvT .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcpByoAvT .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcpByoAvT .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcpByoAvT .carousel,
.cid-uBcpByoAvT .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcpByoAvT .item-wrapper {
  width: 100%;
}
.cid-uBcpByoAvT .carousel-caption {
  bottom: 40px;
}
.cid-uBcpByoAvT .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcpByoAvT .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcpByoAvT .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcpByoAvT .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcpByoAvT .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-uBcpByoAvT .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcpByoAvT .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcpByoAvT .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcpByoAvT .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcpByoAvT .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-uBcpByoAvT .carousel-indicators li.active,
.cid-uBcpByoAvT .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcpByoAvT .carousel-indicators li::after,
.cid-uBcpByoAvT .carousel-indicators li::before {
  content: none;
}
.cid-uBcpByoAvT .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcpByoAvT .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcpCEKKDi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffe161;
}
.cid-uBcpCEKKDi .mbr-text,
.cid-uBcpCEKKDi .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-uBcpCEKKDi .mbr-text,
  .cid-uBcpCEKKDi .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uBcpCEKKDi .mbr-text,
  .cid-uBcpCEKKDi .mbr-section-title {
    text-align: center;
  }
}
.cid-uBcpCEKKDi a.btn {
  height: 100%;
  margin: 0;
}
.cid-uBcpCEKKDi .mbr-section-btn {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
}
.cid-uBcpCEKKDi .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uBcpCEKKDi .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uBcpCEKKDi .justify-content-center {
  align-items: center;
}
.cid-uBcpCFP7HU {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uBcpCFP7HU .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uBcpCFP7HU .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uBcpCFP7HU .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uBcpCFP7HU .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uBcpCFP7HU .list {
    margin-bottom: 0rem;
  }
}
.cid-uBcpCFP7HU .mbr-text {
  color: #000000;
}
.cid-uBcpCFP7HU .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-uBcpCFP7HU .mbr-iconfont {
  color: black;
}
.cid-uBcpCFP7HU H5 {
  color: #000000;
}
.cid-uBcspJp7RX {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uBcspJp7RX nav.navbar {
  position: fixed;
}
.cid-uBcspJp7RX .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-uBcspJp7RX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBcspJp7RX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBcspJp7RX .dropdown-item:hover,
.cid-uBcspJp7RX .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uBcspJp7RX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBcspJp7RX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBcspJp7RX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uBcspJp7RX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBcspJp7RX .nav-link {
  position: relative;
}
.cid-uBcspJp7RX .container {
  display: flex;
  margin: auto;
}
.cid-uBcspJp7RX .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uBcspJp7RX .dropdown-menu,
.cid-uBcspJp7RX .navbar.opened {
  background: #ffffff !important;
}
.cid-uBcspJp7RX .nav-item:focus,
.cid-uBcspJp7RX .nav-link:focus {
  outline: none;
}
.cid-uBcspJp7RX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBcspJp7RX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBcspJp7RX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-uBcspJp7RX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBcspJp7RX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBcspJp7RX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBcspJp7RX .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uBcspJp7RX .navbar.opened {
  transition: all .3s;
}
.cid-uBcspJp7RX .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uBcspJp7RX .navbar .navbar-logo img {
  width: auto;
}
.cid-uBcspJp7RX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBcspJp7RX .navbar.collapsed {
  justify-content: center;
}
.cid-uBcspJp7RX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBcspJp7RX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBcspJp7RX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uBcspJp7RX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBcspJp7RX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBcspJp7RX .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-uBcspJp7RX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBcspJp7RX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uBcspJp7RX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uBcspJp7RX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBcspJp7RX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBcspJp7RX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBcspJp7RX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBcspJp7RX .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-uBcspJp7RX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBcspJp7RX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBcspJp7RX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBcspJp7RX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBcspJp7RX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBcspJp7RX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uBcspJp7RX .navbar.navbar-short {
  min-height: 60px;
}
.cid-uBcspJp7RX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBcspJp7RX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uBcspJp7RX .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uBcspJp7RX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBcspJp7RX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBcspJp7RX .dropdown-item.active,
.cid-uBcspJp7RX .dropdown-item:active {
  background-color: transparent;
}
.cid-uBcspJp7RX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBcspJp7RX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBcspJp7RX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBcspJp7RX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uBcspJp7RX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBcspJp7RX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBcspJp7RX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBcspJp7RX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uBcspJp7RX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uBcspJp7RX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uBcspJp7RX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uBcspJp7RX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uBcspJp7RX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uBcspJp7RX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uBcspJp7RX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBcspJp7RX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uBcspJp7RX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uBcspJp7RX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBcspJp7RX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uBcspJp7RX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBcspJp7RX .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-uBcspJp7RX .navbar {
    height: 70px;
  }
  .cid-uBcspJp7RX .navbar.opened {
    height: auto;
  }
  .cid-uBcspJp7RX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBcspJZ08m {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uBcspJZ08m .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uBcspJZ08m .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uBcspJZ08m .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uBcspJZ08m .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uBcspJZ08m .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-uBcspJZ08m .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uBcspJZ08m .carousel-control,
.cid-uBcspJZ08m .close {
  background: #1b1b1b;
}
.cid-uBcspJZ08m .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uBcspJZ08m .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uBcspJZ08m .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uBcspJZ08m .carousel-control-next span {
  margin-left: 5px;
}
.cid-uBcspJZ08m .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-uBcspJZ08m .close::before {
  content: '\e91a';
}
.cid-uBcspJZ08m .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uBcspJZ08m .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-uBcspJZ08m .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcspJZ08m .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcspJZ08m .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcspJZ08m .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uBcspJZ08m .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-uBcspJZ08m .carousel-indicators li.active,
.cid-uBcspJZ08m .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcspJZ08m .carousel-indicators li::after,
.cid-uBcspJZ08m .carousel-indicators li::before {
  content: none;
}
.cid-uBcspJZ08m .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcspJZ08m .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uBcspJZ08m .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uBcspJZ08m .carousel-indicators {
    display: none;
  }
}
.cid-uBcspJZ08m .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcspJZ08m .carousel-inner > .active {
  display: block;
}
.cid-uBcspJZ08m .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcspJZ08m .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uBcspJZ08m .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uBcspJZ08m .carousel-control,
  .cid-uBcspJZ08m .carousel-indicators,
  .cid-uBcspJZ08m .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uBcspJZ08m .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uBcspJZ08m .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uBcspJZ08m .carousel-indicators .active,
.cid-uBcspJZ08m .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uBcspJZ08m .carousel-indicators .active {
  background: #fff;
}
.cid-uBcspJZ08m .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uBcspJZ08m .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uBcspJZ08m .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uBcspJZ08m .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uBcspJZ08m .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uBcspJZ08m .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uBcspJZ08m .carousel {
  width: 100%;
}
.cid-uBcspJZ08m .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uBcspJZ08m .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uBcspJZ08m .modal.fade .modal-dialog,
.cid-uBcspJZ08m .modal.in .modal-dialog {
  transform: none;
}
.cid-uBcspJZ08m .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uBcspJZ08m H6 {
  text-align: center;
}
.cid-uBcspKGBsC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBcsqHnzka {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fff0b0;
}
.cid-uBcsqHnzka .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBcsqHnzka .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uBcsqHnzka .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBcsqHnzka .row {
  flex-direction: row-reverse;
}
.cid-uBcsqHnzka img {
  width: 100%;
}
.cid-uBcsqIfs03 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #8caff0;
}
.cid-uBcsqIfs03 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBcsqIfs03 .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBcsqIfs03 .mbr-text,
.cid-uBcsqIfs03 .mbr-section-btn {
  text-align: left;
}
.cid-uBcsqIYA1a {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #8caff0;
}
@media (min-width: 992px) {
  .cid-uBcsqIYA1a .carousel {
    min-height: 700px;
  }
  .cid-uBcsqIYA1a .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcsqIYA1a .carousel {
    min-height: 455px;
  }
  .cid-uBcsqIYA1a .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcsqIYA1a .carousel {
    min-height: 385px;
  }
  .cid-uBcsqIYA1a .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcsqIYA1a .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcsqIYA1a .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcsqIYA1a .carousel,
.cid-uBcsqIYA1a .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcsqIYA1a .item-wrapper {
  width: 100%;
}
.cid-uBcsqIYA1a .carousel-caption {
  bottom: 40px;
}
.cid-uBcsqIYA1a .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcsqIYA1a .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcsqIYA1a .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcsqIYA1a .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcsqIYA1a .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-uBcsqIYA1a .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcsqIYA1a .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcsqIYA1a .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcsqIYA1a .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcsqIYA1a .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-uBcsqIYA1a .carousel-indicators li.active,
.cid-uBcsqIYA1a .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcsqIYA1a .carousel-indicators li::after,
.cid-uBcsqIYA1a .carousel-indicators li::before {
  content: none;
}
.cid-uBcsqIYA1a .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcsqIYA1a .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcsqJYZkU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uBcsqJYZkU .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBcsqJYZkU .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBcsqJYZkU .mbr-text,
.cid-uBcsqJYZkU .mbr-section-btn {
  text-align: left;
}
.cid-uBcsqKJKR0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBcsqKJKR0 .carousel {
    min-height: 700px;
  }
  .cid-uBcsqKJKR0 .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcsqKJKR0 .carousel {
    min-height: 455px;
  }
  .cid-uBcsqKJKR0 .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcsqKJKR0 .carousel {
    min-height: 385px;
  }
  .cid-uBcsqKJKR0 .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcsqKJKR0 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcsqKJKR0 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcsqKJKR0 .carousel,
.cid-uBcsqKJKR0 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcsqKJKR0 .item-wrapper {
  width: 100%;
}
.cid-uBcsqKJKR0 .carousel-caption {
  bottom: 40px;
}
.cid-uBcsqKJKR0 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcsqKJKR0 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcsqKJKR0 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcsqKJKR0 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcsqKJKR0 .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-uBcsqKJKR0 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcsqKJKR0 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcsqKJKR0 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcsqKJKR0 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcsqKJKR0 .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-uBcsqKJKR0 .carousel-indicators li.active,
.cid-uBcsqKJKR0 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcsqKJKR0 .carousel-indicators li::after,
.cid-uBcsqKJKR0 .carousel-indicators li::before {
  content: none;
}
.cid-uBcsqKJKR0 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcsqKJKR0 .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcsqLGrJs {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #9fdbf8;
}
.cid-uBcsqLGrJs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBcsqLGrJs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uBcsqLGrJs .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBcsqLGrJs .row {
  flex-direction: row-reverse;
}
.cid-uBcsqLGrJs img {
  width: 100%;
}
.cid-uBcsqMwYUF {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uBcsqMwYUF .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBcsqMwYUF .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBcsqMwYUF .mbr-text,
.cid-uBcsqMwYUF .mbr-section-btn {
  text-align: left;
}
.cid-uBcsqNkGDk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBcsqNkGDk .carousel {
    min-height: 700px;
  }
  .cid-uBcsqNkGDk .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcsqNkGDk .carousel {
    min-height: 455px;
  }
  .cid-uBcsqNkGDk .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcsqNkGDk .carousel {
    min-height: 385px;
  }
  .cid-uBcsqNkGDk .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcsqNkGDk .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcsqNkGDk .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcsqNkGDk .carousel,
.cid-uBcsqNkGDk .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcsqNkGDk .item-wrapper {
  width: 100%;
}
.cid-uBcsqNkGDk .carousel-caption {
  bottom: 40px;
}
.cid-uBcsqNkGDk .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcsqNkGDk .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcsqNkGDk .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcsqNkGDk .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcsqNkGDk .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-uBcsqNkGDk .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcsqNkGDk .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcsqNkGDk .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcsqNkGDk .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcsqNkGDk .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-uBcsqNkGDk .carousel-indicators li.active,
.cid-uBcsqNkGDk .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcsqNkGDk .carousel-indicators li::after,
.cid-uBcsqNkGDk .carousel-indicators li::before {
  content: none;
}
.cid-uBcsqNkGDk .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcsqNkGDk .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcsqOdRTG {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fff0b0;
}
.cid-uBcsqOdRTG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBcsqOdRTG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uBcsqOdRTG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBcsqOdRTG .row {
  flex-direction: row-reverse;
}
.cid-uBcsqOdRTG img {
  width: 100%;
}
.cid-uBcsqOW8Lx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #9fdbf8;
}
.cid-uBcsqOW8Lx h3 {
  font-weight: 300;
}
.cid-uBcsqOW8Lx .card-img {
  width: initial;
}
.cid-uBcsqOW8Lx .card-img .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-uBcsqOW8Lx .media-container-row {
  word-wrap: break-word;
  padding-bottom: 2rem;
  min-height: 100%;
}
.cid-uBcsqOW8Lx .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uBcsqOW8Lx .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uBcsqOW8Lx .mbr-text {
  color: #767676;
}
.cid-uBcsqOW8Lx .media-container-column {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uBcsqOW8Lx .mbr-al-i-c {
  align-items: center;
}
.cid-uBcsqOW8Lx .mbr-section-title {
  text-align: left;
}
.cid-uBcsqPStW2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
@media (min-width: 992px) {
  .cid-uBcsqPStW2 .carousel {
    min-height: 700px;
  }
  .cid-uBcsqPStW2 .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcsqPStW2 .carousel {
    min-height: 455px;
  }
  .cid-uBcsqPStW2 .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcsqPStW2 .carousel {
    min-height: 385px;
  }
  .cid-uBcsqPStW2 .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcsqPStW2 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcsqPStW2 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcsqPStW2 .carousel,
.cid-uBcsqPStW2 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcsqPStW2 .item-wrapper {
  width: 100%;
}
.cid-uBcsqPStW2 .carousel-caption {
  bottom: 40px;
}
.cid-uBcsqPStW2 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcsqPStW2 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcsqPStW2 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcsqPStW2 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcsqPStW2 .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-uBcsqPStW2 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcsqPStW2 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcsqPStW2 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcsqPStW2 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcsqPStW2 .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-uBcsqPStW2 .carousel-indicators li.active,
.cid-uBcsqPStW2 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcsqPStW2 .carousel-indicators li::after,
.cid-uBcsqPStW2 .carousel-indicators li::before {
  content: none;
}
.cid-uBcsqPStW2 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcsqPStW2 .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcsqQMLDg {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffb18a;
}
.cid-uBcsqQMLDg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBcsqQMLDg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uBcsqQMLDg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBcsqQMLDg .row {
  flex-direction: row-reverse;
}
.cid-uBcsqQMLDg img {
  width: 100%;
}
.cid-uBcsqRAW9z {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fff0b0;
}
.cid-uBcsqRAW9z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBcsqRAW9z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uBcsqRAW9z .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBcsqRAW9z .row {
  flex-direction: row-reverse;
}
.cid-uBcsqRAW9z img {
  width: 100%;
}
.cid-uBcsqSnShj {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffb5b5;
}
.cid-uBcsqSnShj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBcsqSnShj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBcsqTflpz {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffb5b5;
}
@media (min-width: 992px) {
  .cid-uBcsqTflpz .carousel {
    min-height: 600px;
  }
  .cid-uBcsqTflpz .carousel img {
    max-height: 600px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcsqTflpz .carousel {
    min-height: 390px;
  }
  .cid-uBcsqTflpz .carousel img {
    max-height: 390px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcsqTflpz .carousel {
    min-height: 330px;
  }
  .cid-uBcsqTflpz .carousel img {
    max-height: 330px;
    object-fit: contain;
  }
  .cid-uBcsqTflpz .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcsqTflpz .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcsqTflpz .carousel,
.cid-uBcsqTflpz .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcsqTflpz .item-wrapper {
  width: 100%;
}
.cid-uBcsqTflpz .carousel-caption {
  bottom: 40px;
}
.cid-uBcsqTflpz .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcsqTflpz .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcsqTflpz .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcsqTflpz .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcsqTflpz .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-uBcsqTflpz .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcsqTflpz .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcsqTflpz .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcsqTflpz .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcsqTflpz .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-uBcsqTflpz .carousel-indicators li.active,
.cid-uBcsqTflpz .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcsqTflpz .carousel-indicators li::after,
.cid-uBcsqTflpz .carousel-indicators li::before {
  content: none;
}
.cid-uBcsqTflpz .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcsqTflpz .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcsqUr9Pi {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fff0b0;
}
.cid-uBcsqUr9Pi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBcsqUr9Pi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uBcsqUr9Pi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBcsqUr9Pi .row {
  flex-direction: row-reverse;
}
.cid-uBcsqUr9Pi img {
  width: 100%;
}
.cid-uBcsqVfg9g {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffb18a;
}
.cid-uBcsqVfg9g .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBcsqVfg9g .image-wrap img {
    display: block;
    margin: auto;
    width: 20%;
  }
}
.cid-uBcsqVfg9g .mbr-text,
.cid-uBcsqVfg9g .mbr-section-btn {
  text-align: center;
}
.cid-uBcsqWFFFX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffb18a;
}
.cid-uBcsqWFFFX .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBcsqWFFFX .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-uBcsqWFFFX .mbr-text,
.cid-uBcsqWFFFX .mbr-section-btn {
  text-align: left;
}
.cid-uBcsqXHPto {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-uBcsqXHPto .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBcsqXHPto .row {
  flex-direction: row-reverse;
}
.cid-uBcsqXHPto img {
  width: 100%;
}
.cid-uBcsqYOWWK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uBcsqYOWWK .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBcsqYOWWK .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBcsqYOWWK .mbr-text,
.cid-uBcsqYOWWK .mbr-section-btn {
  text-align: left;
}
.cid-uBcsqZTaai {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBcsqZTaai .carousel {
    min-height: 700px;
  }
  .cid-uBcsqZTaai .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcsqZTaai .carousel {
    min-height: 455px;
  }
  .cid-uBcsqZTaai .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcsqZTaai .carousel {
    min-height: 385px;
  }
  .cid-uBcsqZTaai .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcsqZTaai .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcsqZTaai .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcsqZTaai .carousel,
.cid-uBcsqZTaai .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcsqZTaai .item-wrapper {
  width: 100%;
}
.cid-uBcsqZTaai .carousel-caption {
  bottom: 40px;
}
.cid-uBcsqZTaai .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcsqZTaai .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcsqZTaai .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcsqZTaai .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcsqZTaai .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-uBcsqZTaai .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcsqZTaai .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcsqZTaai .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcsqZTaai .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcsqZTaai .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-uBcsqZTaai .carousel-indicators li.active,
.cid-uBcsqZTaai .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcsqZTaai .carousel-indicators li::after,
.cid-uBcsqZTaai .carousel-indicators li::before {
  content: none;
}
.cid-uBcsqZTaai .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcsqZTaai .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcsr1kUHT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-uBcsr1kUHT .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBcsr1kUHT .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBcsr1kUHT .mbr-text,
.cid-uBcsr1kUHT .mbr-section-btn {
  text-align: left;
}
.cid-uBcsr2cOqL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
@media (min-width: 992px) {
  .cid-uBcsr2cOqL .carousel {
    min-height: 700px;
  }
  .cid-uBcsr2cOqL .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcsr2cOqL .carousel {
    min-height: 455px;
  }
  .cid-uBcsr2cOqL .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcsr2cOqL .carousel {
    min-height: 385px;
  }
  .cid-uBcsr2cOqL .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcsr2cOqL .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcsr2cOqL .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcsr2cOqL .carousel,
.cid-uBcsr2cOqL .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcsr2cOqL .item-wrapper {
  width: 100%;
}
.cid-uBcsr2cOqL .carousel-caption {
  bottom: 40px;
}
.cid-uBcsr2cOqL .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcsr2cOqL .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcsr2cOqL .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcsr2cOqL .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcsr2cOqL .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-uBcsr2cOqL .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcsr2cOqL .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcsr2cOqL .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcsr2cOqL .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcsr2cOqL .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-uBcsr2cOqL .carousel-indicators li.active,
.cid-uBcsr2cOqL .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcsr2cOqL .carousel-indicators li::after,
.cid-uBcsr2cOqL .carousel-indicators li::before {
  content: none;
}
.cid-uBcsr2cOqL .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcsr2cOqL .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcsr3gSQd {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uBcsr3gSQd .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBcsr3gSQd .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBcsr3gSQd .mbr-text,
.cid-uBcsr3gSQd .mbr-section-btn {
  text-align: left;
}
.cid-uBcsr4bpPj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBcsr4bpPj .carousel {
    min-height: 700px;
  }
  .cid-uBcsr4bpPj .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcsr4bpPj .carousel {
    min-height: 455px;
  }
  .cid-uBcsr4bpPj .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcsr4bpPj .carousel {
    min-height: 385px;
  }
  .cid-uBcsr4bpPj .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcsr4bpPj .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcsr4bpPj .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcsr4bpPj .carousel,
.cid-uBcsr4bpPj .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcsr4bpPj .item-wrapper {
  width: 100%;
}
.cid-uBcsr4bpPj .carousel-caption {
  bottom: 40px;
}
.cid-uBcsr4bpPj .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcsr4bpPj .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcsr4bpPj .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcsr4bpPj .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcsr4bpPj .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-uBcsr4bpPj .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcsr4bpPj .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcsr4bpPj .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcsr4bpPj .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcsr4bpPj .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-uBcsr4bpPj .carousel-indicators li.active,
.cid-uBcsr4bpPj .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcsr4bpPj .carousel-indicators li::after,
.cid-uBcsr4bpPj .carousel-indicators li::before {
  content: none;
}
.cid-uBcsr4bpPj .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcsr4bpPj .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcsr51cmF {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-uBcsr51cmF .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBcsr51cmF .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBcsr51cmF .mbr-text,
.cid-uBcsr51cmF .mbr-section-btn {
  text-align: left;
}
.cid-uBcsr5UoRa {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
@media (min-width: 992px) {
  .cid-uBcsr5UoRa .carousel {
    min-height: 700px;
  }
  .cid-uBcsr5UoRa .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcsr5UoRa .carousel {
    min-height: 455px;
  }
  .cid-uBcsr5UoRa .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcsr5UoRa .carousel {
    min-height: 385px;
  }
  .cid-uBcsr5UoRa .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcsr5UoRa .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcsr5UoRa .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcsr5UoRa .carousel,
.cid-uBcsr5UoRa .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcsr5UoRa .item-wrapper {
  width: 100%;
}
.cid-uBcsr5UoRa .carousel-caption {
  bottom: 40px;
}
.cid-uBcsr5UoRa .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcsr5UoRa .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcsr5UoRa .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcsr5UoRa .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcsr5UoRa .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-uBcsr5UoRa .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcsr5UoRa .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcsr5UoRa .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcsr5UoRa .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcsr5UoRa .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-uBcsr5UoRa .carousel-indicators li.active,
.cid-uBcsr5UoRa .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcsr5UoRa .carousel-indicators li::after,
.cid-uBcsr5UoRa .carousel-indicators li::before {
  content: none;
}
.cid-uBcsr5UoRa .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcsr5UoRa .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcsr6UjGO {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uBcsr6UjGO .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBcsr6UjGO .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBcsr6UjGO .mbr-text,
.cid-uBcsr6UjGO .mbr-section-btn {
  text-align: left;
}
.cid-uBcsr7NwoQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBcsr7NwoQ .carousel {
    min-height: 700px;
  }
  .cid-uBcsr7NwoQ .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcsr7NwoQ .carousel {
    min-height: 455px;
  }
  .cid-uBcsr7NwoQ .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcsr7NwoQ .carousel {
    min-height: 385px;
  }
  .cid-uBcsr7NwoQ .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcsr7NwoQ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcsr7NwoQ .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcsr7NwoQ .carousel,
.cid-uBcsr7NwoQ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcsr7NwoQ .item-wrapper {
  width: 100%;
}
.cid-uBcsr7NwoQ .carousel-caption {
  bottom: 40px;
}
.cid-uBcsr7NwoQ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcsr7NwoQ .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcsr7NwoQ .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcsr7NwoQ .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcsr7NwoQ .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-uBcsr7NwoQ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcsr7NwoQ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcsr7NwoQ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcsr7NwoQ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcsr7NwoQ .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-uBcsr7NwoQ .carousel-indicators li.active,
.cid-uBcsr7NwoQ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcsr7NwoQ .carousel-indicators li::after,
.cid-uBcsr7NwoQ .carousel-indicators li::before {
  content: none;
}
.cid-uBcsr7NwoQ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcsr7NwoQ .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcsr8JWNS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffb5b5;
}
.cid-uBcsr8JWNS .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBcsr8JWNS .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBcsr9EHsL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uBcsr9EHsL .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBcsr9EHsL .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBcsr9EHsL .mbr-text,
.cid-uBcsr9EHsL .mbr-section-btn {
  text-align: left;
}
.cid-uBcsraxWec {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBcsraxWec .carousel {
    min-height: 700px;
  }
  .cid-uBcsraxWec .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcsraxWec .carousel {
    min-height: 455px;
  }
  .cid-uBcsraxWec .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcsraxWec .carousel {
    min-height: 385px;
  }
  .cid-uBcsraxWec .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBcsraxWec .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcsraxWec .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcsraxWec .carousel,
.cid-uBcsraxWec .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcsraxWec .item-wrapper {
  width: 100%;
}
.cid-uBcsraxWec .carousel-caption {
  bottom: 40px;
}
.cid-uBcsraxWec .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcsraxWec .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcsraxWec .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcsraxWec .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcsraxWec .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-uBcsraxWec .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcsraxWec .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcsraxWec .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcsraxWec .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcsraxWec .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-uBcsraxWec .carousel-indicators li.active,
.cid-uBcsraxWec .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcsraxWec .carousel-indicators li::after,
.cid-uBcsraxWec .carousel-indicators li::before {
  content: none;
}
.cid-uBcsraxWec .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcsraxWec .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcsrbA0L5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-uBcsrbA0L5 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBcsrbA0L5 .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBcsrbA0L5 .mbr-text,
.cid-uBcsrbA0L5 .mbr-section-btn {
  text-align: left;
}
.cid-uBcsrcwGJI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
@media (min-width: 992px) {
  .cid-uBcsrcwGJI .carousel {
    min-height: 600px;
  }
  .cid-uBcsrcwGJI .carousel img {
    max-height: 600px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcsrcwGJI .carousel {
    min-height: 390px;
  }
  .cid-uBcsrcwGJI .carousel img {
    max-height: 390px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcsrcwGJI .carousel {
    min-height: 330px;
  }
  .cid-uBcsrcwGJI .carousel img {
    max-height: 330px;
    object-fit: contain;
  }
  .cid-uBcsrcwGJI .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcsrcwGJI .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcsrcwGJI .carousel,
.cid-uBcsrcwGJI .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcsrcwGJI .item-wrapper {
  width: 100%;
}
.cid-uBcsrcwGJI .carousel-caption {
  bottom: 40px;
}
.cid-uBcsrcwGJI .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcsrcwGJI .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcsrcwGJI .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcsrcwGJI .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcsrcwGJI .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-uBcsrcwGJI .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcsrcwGJI .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcsrcwGJI .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcsrcwGJI .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcsrcwGJI .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-uBcsrcwGJI .carousel-indicators li.active,
.cid-uBcsrcwGJI .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcsrcwGJI .carousel-indicators li::after,
.cid-uBcsrcwGJI .carousel-indicators li::before {
  content: none;
}
.cid-uBcsrcwGJI .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcsrcwGJI .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcsrduYRO {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fff0b0;
}
.cid-uBcsreqinT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBcsreqinT .carousel {
    min-height: 600px;
  }
  .cid-uBcsreqinT .carousel img {
    max-height: 600px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBcsreqinT .carousel {
    min-height: 390px;
  }
  .cid-uBcsreqinT .carousel img {
    max-height: 390px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBcsreqinT .carousel {
    min-height: 330px;
  }
  .cid-uBcsreqinT .carousel img {
    max-height: 330px;
    object-fit: contain;
  }
  .cid-uBcsreqinT .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBcsreqinT .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBcsreqinT .carousel,
.cid-uBcsreqinT .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBcsreqinT .item-wrapper {
  width: 100%;
}
.cid-uBcsreqinT .carousel-caption {
  bottom: 40px;
}
.cid-uBcsreqinT .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBcsreqinT .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBcsreqinT .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBcsreqinT .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBcsreqinT .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-uBcsreqinT .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBcsreqinT .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBcsreqinT .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBcsreqinT .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBcsreqinT .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-uBcsreqinT .carousel-indicators li.active,
.cid-uBcsreqinT .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBcsreqinT .carousel-indicators li::after,
.cid-uBcsreqinT .carousel-indicators li::before {
  content: none;
}
.cid-uBcsreqinT .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBcsreqinT .carousel-indicators {
    display: none !important;
  }
}
.cid-uBcsrftSD5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
@media (max-width: 991px) {
  .cid-uBcsrftSD5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBcsrftSD5 .row {
  flex-direction: row-reverse;
}
.cid-uBcsrftSD5 img {
  width: 100%;
}
.cid-uBcsrgwEzt {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fff0b0;
}
.cid-uBcsrhsayv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-uBcsrhsayv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBcsrhsayv .row {
  flex-direction: row-reverse;
}
.cid-uBcsrhsayv img {
  width: 100%;
}
.cid-uBcsrM8PcN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffe161;
}
.cid-uBcsrM8PcN .mbr-text,
.cid-uBcsrM8PcN .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-uBcsrM8PcN .mbr-text,
  .cid-uBcsrM8PcN .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uBcsrM8PcN .mbr-text,
  .cid-uBcsrM8PcN .mbr-section-title {
    text-align: center;
  }
}
.cid-uBcsrM8PcN a.btn {
  height: 100%;
  margin: 0;
}
.cid-uBcsrM8PcN .mbr-section-btn {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
}
.cid-uBcsrM8PcN .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uBcsrM8PcN .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uBcsrM8PcN .justify-content-center {
  align-items: center;
}
.cid-uBcsrNfyvK {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uBcsrNfyvK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uBcsrNfyvK .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uBcsrNfyvK .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uBcsrNfyvK .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uBcsrNfyvK .list {
    margin-bottom: 0rem;
  }
}
.cid-uBcsrNfyvK .mbr-text {
  color: #000000;
}
.cid-uBcsrNfyvK .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-uBcsrNfyvK .mbr-iconfont {
  color: black;
}
.cid-uBcsrNfyvK H5 {
  color: #000000;
}
.cid-uBctsR1m2g {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uBctsR1m2g nav.navbar {
  position: fixed;
}
.cid-uBctsR1m2g .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-uBctsR1m2g .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBctsR1m2g .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBctsR1m2g .dropdown-item:hover,
.cid-uBctsR1m2g .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uBctsR1m2g .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBctsR1m2g .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBctsR1m2g .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uBctsR1m2g .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBctsR1m2g .nav-link {
  position: relative;
}
.cid-uBctsR1m2g .container {
  display: flex;
  margin: auto;
}
.cid-uBctsR1m2g .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uBctsR1m2g .dropdown-menu,
.cid-uBctsR1m2g .navbar.opened {
  background: #ffffff !important;
}
.cid-uBctsR1m2g .nav-item:focus,
.cid-uBctsR1m2g .nav-link:focus {
  outline: none;
}
.cid-uBctsR1m2g .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBctsR1m2g .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBctsR1m2g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-uBctsR1m2g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBctsR1m2g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBctsR1m2g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBctsR1m2g .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uBctsR1m2g .navbar.opened {
  transition: all .3s;
}
.cid-uBctsR1m2g .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uBctsR1m2g .navbar .navbar-logo img {
  width: auto;
}
.cid-uBctsR1m2g .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBctsR1m2g .navbar.collapsed {
  justify-content: center;
}
.cid-uBctsR1m2g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBctsR1m2g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBctsR1m2g .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uBctsR1m2g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBctsR1m2g .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBctsR1m2g .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-uBctsR1m2g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBctsR1m2g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uBctsR1m2g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uBctsR1m2g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBctsR1m2g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBctsR1m2g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBctsR1m2g .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBctsR1m2g .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-uBctsR1m2g .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBctsR1m2g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBctsR1m2g .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBctsR1m2g .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBctsR1m2g .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBctsR1m2g .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uBctsR1m2g .navbar.navbar-short {
  min-height: 60px;
}
.cid-uBctsR1m2g .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBctsR1m2g .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uBctsR1m2g .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uBctsR1m2g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBctsR1m2g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBctsR1m2g .dropdown-item.active,
.cid-uBctsR1m2g .dropdown-item:active {
  background-color: transparent;
}
.cid-uBctsR1m2g .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBctsR1m2g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBctsR1m2g .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBctsR1m2g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uBctsR1m2g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBctsR1m2g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBctsR1m2g ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBctsR1m2g .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uBctsR1m2g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uBctsR1m2g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uBctsR1m2g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uBctsR1m2g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uBctsR1m2g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uBctsR1m2g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uBctsR1m2g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBctsR1m2g nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uBctsR1m2g nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uBctsR1m2g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBctsR1m2g .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uBctsR1m2g a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBctsR1m2g .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-uBctsR1m2g .navbar {
    height: 70px;
  }
  .cid-uBctsR1m2g .navbar.opened {
    height: auto;
  }
  .cid-uBctsR1m2g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBctsRAGzt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uBctsRAGzt .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uBctsRAGzt .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uBctsRAGzt .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uBctsRAGzt .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uBctsRAGzt .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-uBctsRAGzt .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uBctsRAGzt .carousel-control,
.cid-uBctsRAGzt .close {
  background: #1b1b1b;
}
.cid-uBctsRAGzt .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uBctsRAGzt .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uBctsRAGzt .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uBctsRAGzt .carousel-control-next span {
  margin-left: 5px;
}
.cid-uBctsRAGzt .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-uBctsRAGzt .close::before {
  content: '\e91a';
}
.cid-uBctsRAGzt .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uBctsRAGzt .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-uBctsRAGzt .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBctsRAGzt .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBctsRAGzt .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBctsRAGzt .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uBctsRAGzt .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-uBctsRAGzt .carousel-indicators li.active,
.cid-uBctsRAGzt .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBctsRAGzt .carousel-indicators li::after,
.cid-uBctsRAGzt .carousel-indicators li::before {
  content: none;
}
.cid-uBctsRAGzt .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBctsRAGzt .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uBctsRAGzt .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uBctsRAGzt .carousel-indicators {
    display: none;
  }
}
.cid-uBctsRAGzt .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBctsRAGzt .carousel-inner > .active {
  display: block;
}
.cid-uBctsRAGzt .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBctsRAGzt .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uBctsRAGzt .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uBctsRAGzt .carousel-control,
  .cid-uBctsRAGzt .carousel-indicators,
  .cid-uBctsRAGzt .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uBctsRAGzt .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uBctsRAGzt .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uBctsRAGzt .carousel-indicators .active,
.cid-uBctsRAGzt .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uBctsRAGzt .carousel-indicators .active {
  background: #fff;
}
.cid-uBctsRAGzt .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uBctsRAGzt .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uBctsRAGzt .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uBctsRAGzt .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uBctsRAGzt .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uBctsRAGzt .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uBctsRAGzt .carousel {
  width: 100%;
}
.cid-uBctsRAGzt .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uBctsRAGzt .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uBctsRAGzt .modal.fade .modal-dialog,
.cid-uBctsRAGzt .modal.in .modal-dialog {
  transform: none;
}
.cid-uBctsRAGzt .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uBctsRAGzt H6 {
  text-align: center;
}
.cid-uBctsSjl5I {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBctuncPdx {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #830505;
}
.cid-uBctuncPdx .mbr-section-subtitle {
  text-align: left;
}
.cid-uBctuo8hBy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #830505;
}
@media (min-width: 992px) {
  .cid-uBctuo8hBy .carousel {
    min-height: 700px;
  }
  .cid-uBctuo8hBy .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBctuo8hBy .carousel {
    min-height: 455px;
  }
  .cid-uBctuo8hBy .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBctuo8hBy .carousel {
    min-height: 385px;
  }
  .cid-uBctuo8hBy .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBctuo8hBy .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBctuo8hBy .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBctuo8hBy .carousel,
.cid-uBctuo8hBy .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBctuo8hBy .item-wrapper {
  width: 100%;
}
.cid-uBctuo8hBy .carousel-caption {
  bottom: 40px;
}
.cid-uBctuo8hBy .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBctuo8hBy .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBctuo8hBy .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBctuo8hBy .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBctuo8hBy .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-uBctuo8hBy .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBctuo8hBy .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBctuo8hBy .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBctuo8hBy .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBctuo8hBy .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-uBctuo8hBy .carousel-indicators li.active,
.cid-uBctuo8hBy .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBctuo8hBy .carousel-indicators li::after,
.cid-uBctuo8hBy .carousel-indicators li::before {
  content: none;
}
.cid-uBctuo8hBy .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBctuo8hBy .carousel-indicators {
    display: none !important;
  }
}
.cid-uBctupurPF {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fff0b0;
}
.cid-uBctuqqGni {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBctuqqGni .carousel {
    min-height: 600px;
  }
  .cid-uBctuqqGni .carousel img {
    max-height: 600px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBctuqqGni .carousel {
    min-height: 390px;
  }
  .cid-uBctuqqGni .carousel img {
    max-height: 390px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBctuqqGni .carousel {
    min-height: 330px;
  }
  .cid-uBctuqqGni .carousel img {
    max-height: 330px;
    object-fit: contain;
  }
  .cid-uBctuqqGni .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBctuqqGni .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBctuqqGni .carousel,
.cid-uBctuqqGni .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBctuqqGni .item-wrapper {
  width: 100%;
}
.cid-uBctuqqGni .carousel-caption {
  bottom: 40px;
}
.cid-uBctuqqGni .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBctuqqGni .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBctuqqGni .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBctuqqGni .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBctuqqGni .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-uBctuqqGni .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBctuqqGni .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBctuqqGni .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBctuqqGni .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBctuqqGni .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-uBctuqqGni .carousel-indicators li.active,
.cid-uBctuqqGni .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBctuqqGni .carousel-indicators li::after,
.cid-uBctuqqGni .carousel-indicators li::before {
  content: none;
}
.cid-uBctuqqGni .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBctuqqGni .carousel-indicators {
    display: none !important;
  }
}
.cid-uBctursoCq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-uBctursoCq .mbr-section-subtitle {
  text-align: left;
}
.cid-uBctusuFkv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-uBctutqGFi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-uBctutqGFi .carousel {
    min-height: 700px;
  }
  .cid-uBctutqGFi .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBctutqGFi .carousel {
    min-height: 455px;
  }
  .cid-uBctutqGFi .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBctutqGFi .carousel {
    min-height: 385px;
  }
  .cid-uBctutqGFi .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-uBctutqGFi .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBctutqGFi .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBctutqGFi .carousel,
.cid-uBctutqGFi .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBctutqGFi .item-wrapper {
  width: 100%;
}
.cid-uBctutqGFi .carousel-caption {
  bottom: 40px;
}
.cid-uBctutqGFi .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBctutqGFi .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBctutqGFi .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBctutqGFi .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBctutqGFi .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-uBctutqGFi .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBctutqGFi .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBctutqGFi .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBctutqGFi .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBctutqGFi .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-uBctutqGFi .carousel-indicators li.active,
.cid-uBctutqGFi .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBctutqGFi .carousel-indicators li::after,
.cid-uBctutqGFi .carousel-indicators li::before {
  content: none;
}
.cid-uBctutqGFi .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBctutqGFi .carousel-indicators {
    display: none !important;
  }
}
.cid-uBctuuywXX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #0c551b;
}
@media (max-width: 991px) {
  .cid-uBctuuywXX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBctuuywXX .row {
  flex-direction: row-reverse;
}
.cid-uBctuuywXX img {
  width: 100%;
}
.cid-uBctuvvqKN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #0c551b;
}
.cid-uBctuwsjMp {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffb18a;
}
@media (max-width: 991px) {
  .cid-uBctuwsjMp .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBctuwsjMp .row {
  flex-direction: row-reverse;
}
.cid-uBctuwsjMp img {
  width: 100%;
}
.cid-uBctuxrgmP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uBctuxrgmP .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBctuxrgmP .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBctuxrgmP .mbr-text,
.cid-uBctuxrgmP .mbr-section-btn {
  text-align: left;
}
.cid-uBctuyoRak {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBctuyoRak .carousel {
    min-height: 500px;
  }
  .cid-uBctuyoRak .carousel img {
    max-height: 500px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBctuyoRak .carousel {
    min-height: 325px;
  }
  .cid-uBctuyoRak .carousel img {
    max-height: 325px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBctuyoRak .carousel {
    min-height: 275px;
  }
  .cid-uBctuyoRak .carousel img {
    max-height: 275px;
    object-fit: contain;
  }
  .cid-uBctuyoRak .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBctuyoRak .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBctuyoRak .carousel,
.cid-uBctuyoRak .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBctuyoRak .item-wrapper {
  width: 100%;
}
.cid-uBctuyoRak .carousel-caption {
  bottom: 40px;
}
.cid-uBctuyoRak .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBctuyoRak .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBctuyoRak .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBctuyoRak .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBctuyoRak .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-uBctuyoRak .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBctuyoRak .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBctuyoRak .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBctuyoRak .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBctuyoRak .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-uBctuyoRak .carousel-indicators li.active,
.cid-uBctuyoRak .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBctuyoRak .carousel-indicators li::after,
.cid-uBctuyoRak .carousel-indicators li::before {
  content: none;
}
.cid-uBctuyoRak .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBctuyoRak .carousel-indicators {
    display: none !important;
  }
}
.cid-uBctuzreaD {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uBctuzreaD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBctuzreaD .row {
  flex-direction: row-reverse;
}
.cid-uBctuzreaD img {
  width: 100%;
}
.cid-uBctuAnlmD {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBctuBjbKB {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffb5b5;
}
.cid-uBctuBjbKB .mbr-section-subtitle {
  text-align: left;
}
.cid-uBctuCg4SG {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffb5b5;
}
@media (max-width: 991px) {
  .cid-uBctuCg4SG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBctuCg4SG .row {
  flex-direction: row-reverse;
}
.cid-uBctuCg4SG img {
  width: 100%;
}
.cid-uBctuDhw8L {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-uBctuDhw8L .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBctuDhw8L .row {
  flex-direction: row-reverse;
}
.cid-uBctuDhw8L img {
  width: 100%;
}
.cid-uBctuEgbqg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #40b0bf;
}
@media (max-width: 991px) {
  .cid-uBctuEgbqg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBctuEgbqg .row {
  flex-direction: row-reverse;
}
.cid-uBctuEgbqg img {
  width: 100%;
}
.cid-uBctuFf3TV {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-uBctuFf3TV .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBctuFf3TV .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-uBctuFf3TV .mbr-text,
.cid-uBctuFf3TV .mbr-section-btn {
  text-align: left;
}
.cid-uBctuGdsUN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-uBctuGdsUN .carousel {
    min-height: 600px;
  }
  .cid-uBctuGdsUN .carousel img {
    max-height: 600px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uBctuGdsUN .carousel {
    min-height: 390px;
  }
  .cid-uBctuGdsUN .carousel img {
    max-height: 390px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uBctuGdsUN .carousel {
    min-height: 330px;
  }
  .cid-uBctuGdsUN .carousel img {
    max-height: 330px;
    object-fit: contain;
  }
  .cid-uBctuGdsUN .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBctuGdsUN .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBctuGdsUN .carousel,
.cid-uBctuGdsUN .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBctuGdsUN .item-wrapper {
  width: 100%;
}
.cid-uBctuGdsUN .carousel-caption {
  bottom: 40px;
}
.cid-uBctuGdsUN .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBctuGdsUN .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBctuGdsUN .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBctuGdsUN .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBctuGdsUN .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-uBctuGdsUN .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBctuGdsUN .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBctuGdsUN .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBctuGdsUN .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBctuGdsUN .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-uBctuGdsUN .carousel-indicators li.active,
.cid-uBctuGdsUN .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBctuGdsUN .carousel-indicators li::after,
.cid-uBctuGdsUN .carousel-indicators li::before {
  content: none;
}
.cid-uBctuGdsUN .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBctuGdsUN .carousel-indicators {
    display: none !important;
  }
}
.cid-uBctuHvMaz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uBctuHvMaz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBctuHvMaz .row {
  flex-direction: row-reverse;
}
.cid-uBctuHvMaz img {
  width: 100%;
}
.cid-uBctuIvcKl {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fff0b0;
}
.cid-uBctuIvcKl .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-uBctuIvcKl .card {
    margin-bottom: 2rem!important;
  }
  .cid-uBctuIvcKl .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uBctuIvcKl .link-wrap {
    align-items: center;
  }
}
.cid-uBctuIvcKl .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uBctuJCaTg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBctuJCaTg .item {
  padding-bottom: 2rem;
}
.cid-uBctuJCaTg .item-wrapper {
  position: relative;
}
.cid-uBctuJCaTg .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-uBctuJCaTg .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uBctuJCaTg .carousel-control,
.cid-uBctuJCaTg .close {
  background: #1b1b1b;
}
.cid-uBctuJCaTg .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uBctuJCaTg .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uBctuJCaTg .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uBctuJCaTg .carousel-control-next span {
  margin-left: 5px;
}
.cid-uBctuJCaTg .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-uBctuJCaTg .close::before {
  content: '\e91a';
}
.cid-uBctuJCaTg .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uBctuJCaTg .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-uBctuJCaTg .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBctuJCaTg .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBctuJCaTg .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBctuJCaTg .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uBctuJCaTg .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-uBctuJCaTg .carousel-indicators li.active,
.cid-uBctuJCaTg .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBctuJCaTg .carousel-indicators li::after,
.cid-uBctuJCaTg .carousel-indicators li::before {
  content: none;
}
.cid-uBctuJCaTg .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBctuJCaTg .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uBctuJCaTg .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uBctuJCaTg .carousel-indicators {
    display: none;
  }
}
.cid-uBctuJCaTg .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBctuJCaTg .carousel-inner > .active {
  display: block;
}
.cid-uBctuJCaTg .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBctuJCaTg .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uBctuJCaTg .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uBctuJCaTg .carousel-control,
  .cid-uBctuJCaTg .carousel-indicators,
  .cid-uBctuJCaTg .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uBctuJCaTg .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uBctuJCaTg .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uBctuJCaTg .carousel-indicators .active,
.cid-uBctuJCaTg .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uBctuJCaTg .carousel-indicators .active {
  background: #fff;
}
.cid-uBctuJCaTg .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uBctuJCaTg .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uBctuJCaTg .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uBctuJCaTg .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uBctuJCaTg .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uBctuJCaTg .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uBctuJCaTg .carousel {
  width: 100%;
}
.cid-uBctuJCaTg .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uBctuJCaTg .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uBctuJCaTg .modal.fade .modal-dialog,
.cid-uBctuJCaTg .modal.in .modal-dialog {
  transform: none;
}
.cid-uBctuJCaTg .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uBctuJCaTg H6 {
  text-align: center;
}
.cid-uBctuKKlKw {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffb5b5;
}
.cid-uBctuKKlKw .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uBctuKKlKw .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uBctuKKlKw .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uBctuLLXdz {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #bed3f9;
}
.cid-uBctuLLXdz .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-uBctuLLXdz .card {
    margin-bottom: 2rem!important;
  }
  .cid-uBctuLLXdz .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uBctuLLXdz .link-wrap {
    align-items: center;
  }
}
.cid-uBctuLLXdz .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uBctuMNScA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uBctuMNScA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBctuMNScA .row {
  flex-direction: row-reverse;
}
.cid-uBctuMNScA img {
  width: 100%;
}
.cid-uBctuNRJVh {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-uBctuNRJVh .mbr-section-subtitle {
  text-align: left;
}
.cid-uBctuOVmIE {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
@media (max-width: 991px) {
  .cid-uBctuOVmIE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBctuOVmIE .row {
  flex-direction: row-reverse;
}
.cid-uBctuOVmIE img {
  width: 100%;
}
.cid-uBctuPTVBi {
  background-color: #fafafa;
}
.cid-uBctuPTVBi .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uBctuPTVBi .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uBctuPTVBi .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uBctuPTVBi .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uBctuPTVBi .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uBctuQVNmf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffe161;
}
.cid-uBctuQVNmf .mbr-text,
.cid-uBctuQVNmf .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-uBctuQVNmf .mbr-text,
  .cid-uBctuQVNmf .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uBctuQVNmf .mbr-text,
  .cid-uBctuQVNmf .mbr-section-title {
    text-align: center;
  }
}
.cid-uBctuQVNmf a.btn {
  height: 100%;
  margin: 0;
}
.cid-uBctuQVNmf .mbr-section-btn {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
}
.cid-uBctuQVNmf .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uBctuQVNmf .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uBctuQVNmf .justify-content-center {
  align-items: center;
}
.cid-uBctuRW2QW {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uBctuRW2QW .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uBctuRW2QW .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uBctuRW2QW .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uBctuRW2QW .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uBctuRW2QW .list {
    margin-bottom: 0rem;
  }
}
.cid-uBctuRW2QW .mbr-text {
  color: #000000;
}
.cid-uBctuRW2QW .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-uBctuRW2QW .mbr-iconfont {
  color: black;
}
.cid-uBctuRW2QW H5 {
  color: #000000;
}
.cid-v1IgNxHm0y {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v1IgNxHm0y nav.navbar {
  position: fixed;
}
.cid-v1IgNxHm0y .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-v1IgNxHm0y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v1IgNxHm0y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v1IgNxHm0y .dropdown-item:hover,
.cid-v1IgNxHm0y .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-v1IgNxHm0y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v1IgNxHm0y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v1IgNxHm0y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-v1IgNxHm0y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v1IgNxHm0y .nav-link {
  position: relative;
}
.cid-v1IgNxHm0y .container {
  display: flex;
  margin: auto;
}
.cid-v1IgNxHm0y .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-v1IgNxHm0y .dropdown-menu,
.cid-v1IgNxHm0y .navbar.opened {
  background: #ffffff !important;
}
.cid-v1IgNxHm0y .nav-item:focus,
.cid-v1IgNxHm0y .nav-link:focus {
  outline: none;
}
.cid-v1IgNxHm0y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v1IgNxHm0y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v1IgNxHm0y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-v1IgNxHm0y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v1IgNxHm0y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v1IgNxHm0y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v1IgNxHm0y .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v1IgNxHm0y .navbar.opened {
  transition: all .3s;
}
.cid-v1IgNxHm0y .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-v1IgNxHm0y .navbar .navbar-logo img {
  width: auto;
}
.cid-v1IgNxHm0y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v1IgNxHm0y .navbar.collapsed {
  justify-content: center;
}
.cid-v1IgNxHm0y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v1IgNxHm0y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v1IgNxHm0y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-v1IgNxHm0y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v1IgNxHm0y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v1IgNxHm0y .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-v1IgNxHm0y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v1IgNxHm0y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-v1IgNxHm0y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-v1IgNxHm0y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v1IgNxHm0y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v1IgNxHm0y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v1IgNxHm0y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v1IgNxHm0y .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-v1IgNxHm0y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v1IgNxHm0y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v1IgNxHm0y .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v1IgNxHm0y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v1IgNxHm0y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v1IgNxHm0y .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-v1IgNxHm0y .navbar.navbar-short {
  min-height: 60px;
}
.cid-v1IgNxHm0y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v1IgNxHm0y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v1IgNxHm0y .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v1IgNxHm0y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v1IgNxHm0y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v1IgNxHm0y .dropdown-item.active,
.cid-v1IgNxHm0y .dropdown-item:active {
  background-color: transparent;
}
.cid-v1IgNxHm0y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v1IgNxHm0y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v1IgNxHm0y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v1IgNxHm0y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v1IgNxHm0y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v1IgNxHm0y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v1IgNxHm0y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v1IgNxHm0y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v1IgNxHm0y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-v1IgNxHm0y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v1IgNxHm0y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v1IgNxHm0y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v1IgNxHm0y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v1IgNxHm0y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v1IgNxHm0y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v1IgNxHm0y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v1IgNxHm0y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v1IgNxHm0y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v1IgNxHm0y .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v1IgNxHm0y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v1IgNxHm0y .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-v1IgNxHm0y .navbar {
    height: 70px;
  }
  .cid-v1IgNxHm0y .navbar.opened {
    height: auto;
  }
  .cid-v1IgNxHm0y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v1IgNy2r5X {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v1IgNy2r5X .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v1IgNy2r5X .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-v1IgNy2r5X .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v1IgNy2r5X .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v1IgNy2r5X .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-v1IgNy2r5X .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v1IgNy2r5X .carousel-control,
.cid-v1IgNy2r5X .close {
  background: #1b1b1b;
}
.cid-v1IgNy2r5X .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v1IgNy2r5X .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v1IgNy2r5X .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v1IgNy2r5X .carousel-control-next span {
  margin-left: 5px;
}
.cid-v1IgNy2r5X .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-v1IgNy2r5X .close::before {
  content: '\e91a';
}
.cid-v1IgNy2r5X .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v1IgNy2r5X .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-v1IgNy2r5X .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNy2r5X .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNy2r5X .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNy2r5X .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v1IgNy2r5X .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-v1IgNy2r5X .carousel-indicators li.active,
.cid-v1IgNy2r5X .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNy2r5X .carousel-indicators li::after,
.cid-v1IgNy2r5X .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNy2r5X .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNy2r5X .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v1IgNy2r5X .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNy2r5X .carousel-indicators {
    display: none;
  }
}
.cid-v1IgNy2r5X .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNy2r5X .carousel-inner > .active {
  display: block;
}
.cid-v1IgNy2r5X .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNy2r5X .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v1IgNy2r5X .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v1IgNy2r5X .carousel-control,
  .cid-v1IgNy2r5X .carousel-indicators,
  .cid-v1IgNy2r5X .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNy2r5X .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v1IgNy2r5X .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v1IgNy2r5X .carousel-indicators .active,
.cid-v1IgNy2r5X .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v1IgNy2r5X .carousel-indicators .active {
  background: #fff;
}
.cid-v1IgNy2r5X .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v1IgNy2r5X .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v1IgNy2r5X .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v1IgNy2r5X .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v1IgNy2r5X .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v1IgNy2r5X .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v1IgNy2r5X .carousel {
  width: 100%;
}
.cid-v1IgNy2r5X .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v1IgNy2r5X .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v1IgNy2r5X .modal.fade .modal-dialog,
.cid-v1IgNy2r5X .modal.in .modal-dialog {
  transform: none;
}
.cid-v1IgNy2r5X .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v1IgNy2r5X H6 {
  text-align: center;
}
.cid-v1IgNyxKxq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v1IgNyLkoa {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-v1IgNyLkoa .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNyLkoa .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNyLkoa .mbr-text,
.cid-v1IgNyLkoa .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNyZZBI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-v1IgNyZZBI .carousel {
    min-height: 700px;
  }
  .cid-v1IgNyZZBI .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNyZZBI .carousel {
    min-height: 455px;
  }
  .cid-v1IgNyZZBI .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNyZZBI .carousel {
    min-height: 385px;
  }
  .cid-v1IgNyZZBI .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNyZZBI .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNyZZBI .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNyZZBI .carousel,
.cid-v1IgNyZZBI .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNyZZBI .item-wrapper {
  width: 100%;
}
.cid-v1IgNyZZBI .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNyZZBI .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNyZZBI .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNyZZBI .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNyZZBI .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNyZZBI .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-v1IgNyZZBI .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNyZZBI .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNyZZBI .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNyZZBI .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNyZZBI .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-v1IgNyZZBI .carousel-indicators li.active,
.cid-v1IgNyZZBI .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNyZZBI .carousel-indicators li::after,
.cid-v1IgNyZZBI .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNyZZBI .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNyZZBI .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNze7WH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-v1IgNze7WH .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNze7WH .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNze7WH .mbr-text,
.cid-v1IgNze7WH .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNzt9rJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-v1IgNzt9rJ .carousel {
    min-height: 700px;
  }
  .cid-v1IgNzt9rJ .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNzt9rJ .carousel {
    min-height: 455px;
  }
  .cid-v1IgNzt9rJ .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNzt9rJ .carousel {
    min-height: 385px;
  }
  .cid-v1IgNzt9rJ .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNzt9rJ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNzt9rJ .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNzt9rJ .carousel,
.cid-v1IgNzt9rJ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNzt9rJ .item-wrapper {
  width: 100%;
}
.cid-v1IgNzt9rJ .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNzt9rJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNzt9rJ .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNzt9rJ .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNzt9rJ .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNzt9rJ .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-v1IgNzt9rJ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNzt9rJ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNzt9rJ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNzt9rJ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNzt9rJ .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-v1IgNzt9rJ .carousel-indicators li.active,
.cid-v1IgNzt9rJ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNzt9rJ .carousel-indicators li::after,
.cid-v1IgNzt9rJ .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNzt9rJ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNzt9rJ .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNzPwDd {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-v1IgNzPwDd .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNzPwDd .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNzPwDd .mbr-text,
.cid-v1IgNzPwDd .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNA4Vl6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-v1IgNA4Vl6 .carousel {
    min-height: 700px;
  }
  .cid-v1IgNA4Vl6 .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNA4Vl6 .carousel {
    min-height: 455px;
  }
  .cid-v1IgNA4Vl6 .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNA4Vl6 .carousel {
    min-height: 385px;
  }
  .cid-v1IgNA4Vl6 .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNA4Vl6 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNA4Vl6 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNA4Vl6 .carousel,
.cid-v1IgNA4Vl6 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNA4Vl6 .item-wrapper {
  width: 100%;
}
.cid-v1IgNA4Vl6 .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNA4Vl6 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNA4Vl6 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNA4Vl6 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNA4Vl6 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNA4Vl6 .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-v1IgNA4Vl6 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNA4Vl6 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNA4Vl6 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNA4Vl6 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNA4Vl6 .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-v1IgNA4Vl6 .carousel-indicators li.active,
.cid-v1IgNA4Vl6 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNA4Vl6 .carousel-indicators li::after,
.cid-v1IgNA4Vl6 .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNA4Vl6 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNA4Vl6 .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNAlfwv {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-v1IgNAlfwv .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNAlfwv .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNAlfwv .mbr-text,
.cid-v1IgNAlfwv .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNADYkB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-v1IgNADYkB .carousel {
    min-height: 700px;
  }
  .cid-v1IgNADYkB .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNADYkB .carousel {
    min-height: 455px;
  }
  .cid-v1IgNADYkB .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNADYkB .carousel {
    min-height: 385px;
  }
  .cid-v1IgNADYkB .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNADYkB .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNADYkB .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNADYkB .carousel,
.cid-v1IgNADYkB .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNADYkB .item-wrapper {
  width: 100%;
}
.cid-v1IgNADYkB .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNADYkB .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNADYkB .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNADYkB .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNADYkB .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNADYkB .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-v1IgNADYkB .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNADYkB .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNADYkB .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNADYkB .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNADYkB .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-v1IgNADYkB .carousel-indicators li.active,
.cid-v1IgNADYkB .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNADYkB .carousel-indicators li::after,
.cid-v1IgNADYkB .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNADYkB .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNADYkB .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNAVamZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-v1IgNAVamZ .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNAVamZ .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNAVamZ .mbr-text,
.cid-v1IgNAVamZ .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNBaghv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-v1IgNBaghv .carousel {
    min-height: 700px;
  }
  .cid-v1IgNBaghv .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNBaghv .carousel {
    min-height: 455px;
  }
  .cid-v1IgNBaghv .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNBaghv .carousel {
    min-height: 385px;
  }
  .cid-v1IgNBaghv .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNBaghv .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNBaghv .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNBaghv .carousel,
.cid-v1IgNBaghv .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNBaghv .item-wrapper {
  width: 100%;
}
.cid-v1IgNBaghv .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNBaghv .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNBaghv .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNBaghv .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNBaghv .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNBaghv .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-v1IgNBaghv .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNBaghv .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNBaghv .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNBaghv .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNBaghv .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-v1IgNBaghv .carousel-indicators li.active,
.cid-v1IgNBaghv .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNBaghv .carousel-indicators li::after,
.cid-v1IgNBaghv .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNBaghv .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNBaghv .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNBsOtt {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-v1IgNBsOtt .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNBsOtt .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNBsOtt .mbr-text,
.cid-v1IgNBsOtt .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNBMeea {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-v1IgNBMeea .carousel {
    min-height: 700px;
  }
  .cid-v1IgNBMeea .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNBMeea .carousel {
    min-height: 455px;
  }
  .cid-v1IgNBMeea .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNBMeea .carousel {
    min-height: 385px;
  }
  .cid-v1IgNBMeea .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNBMeea .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNBMeea .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNBMeea .carousel,
.cid-v1IgNBMeea .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNBMeea .item-wrapper {
  width: 100%;
}
.cid-v1IgNBMeea .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNBMeea .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNBMeea .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNBMeea .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNBMeea .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNBMeea .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-v1IgNBMeea .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNBMeea .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNBMeea .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNBMeea .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNBMeea .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-v1IgNBMeea .carousel-indicators li.active,
.cid-v1IgNBMeea .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNBMeea .carousel-indicators li::after,
.cid-v1IgNBMeea .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNBMeea .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNBMeea .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNC4gyG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-v1IgNC4gyG .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNC4gyG .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNC4gyG .mbr-text,
.cid-v1IgNC4gyG .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNCkjmY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-v1IgNCkjmY .carousel {
    min-height: 700px;
  }
  .cid-v1IgNCkjmY .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNCkjmY .carousel {
    min-height: 455px;
  }
  .cid-v1IgNCkjmY .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNCkjmY .carousel {
    min-height: 385px;
  }
  .cid-v1IgNCkjmY .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNCkjmY .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNCkjmY .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNCkjmY .carousel,
.cid-v1IgNCkjmY .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNCkjmY .item-wrapper {
  width: 100%;
}
.cid-v1IgNCkjmY .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNCkjmY .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNCkjmY .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNCkjmY .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNCkjmY .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNCkjmY .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-v1IgNCkjmY .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNCkjmY .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNCkjmY .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNCkjmY .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNCkjmY .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-v1IgNCkjmY .carousel-indicators li.active,
.cid-v1IgNCkjmY .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNCkjmY .carousel-indicators li::after,
.cid-v1IgNCkjmY .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNCkjmY .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNCkjmY .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNCBwL2 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-v1IgNCBwL2 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNCBwL2 .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNCBwL2 .mbr-text,
.cid-v1IgNCBwL2 .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNCVSPl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-v1IgNCVSPl .carousel {
    min-height: 700px;
  }
  .cid-v1IgNCVSPl .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNCVSPl .carousel {
    min-height: 455px;
  }
  .cid-v1IgNCVSPl .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNCVSPl .carousel {
    min-height: 385px;
  }
  .cid-v1IgNCVSPl .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNCVSPl .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNCVSPl .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNCVSPl .carousel,
.cid-v1IgNCVSPl .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNCVSPl .item-wrapper {
  width: 100%;
}
.cid-v1IgNCVSPl .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNCVSPl .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNCVSPl .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNCVSPl .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNCVSPl .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNCVSPl .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-v1IgNCVSPl .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNCVSPl .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNCVSPl .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNCVSPl .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNCVSPl .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-v1IgNCVSPl .carousel-indicators li.active,
.cid-v1IgNCVSPl .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNCVSPl .carousel-indicators li::after,
.cid-v1IgNCVSPl .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNCVSPl .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNCVSPl .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNDeXG0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-v1IgNDeXG0 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNDeXG0 .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNDeXG0 .mbr-text,
.cid-v1IgNDeXG0 .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNDwVOs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-v1IgNDwVOs .carousel {
    min-height: 700px;
  }
  .cid-v1IgNDwVOs .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNDwVOs .carousel {
    min-height: 455px;
  }
  .cid-v1IgNDwVOs .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNDwVOs .carousel {
    min-height: 385px;
  }
  .cid-v1IgNDwVOs .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNDwVOs .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNDwVOs .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNDwVOs .carousel,
.cid-v1IgNDwVOs .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNDwVOs .item-wrapper {
  width: 100%;
}
.cid-v1IgNDwVOs .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNDwVOs .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNDwVOs .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNDwVOs .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNDwVOs .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNDwVOs .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-v1IgNDwVOs .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNDwVOs .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNDwVOs .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNDwVOs .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNDwVOs .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-v1IgNDwVOs .carousel-indicators li.active,
.cid-v1IgNDwVOs .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNDwVOs .carousel-indicators li::after,
.cid-v1IgNDwVOs .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNDwVOs .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNDwVOs .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNDUKKY {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-v1IgNDUKKY .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNDUKKY .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNDUKKY .mbr-text,
.cid-v1IgNDUKKY .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNEbAmd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-v1IgNEbAmd .carousel {
    min-height: 700px;
  }
  .cid-v1IgNEbAmd .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNEbAmd .carousel {
    min-height: 455px;
  }
  .cid-v1IgNEbAmd .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNEbAmd .carousel {
    min-height: 385px;
  }
  .cid-v1IgNEbAmd .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNEbAmd .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNEbAmd .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNEbAmd .carousel,
.cid-v1IgNEbAmd .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNEbAmd .item-wrapper {
  width: 100%;
}
.cid-v1IgNEbAmd .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNEbAmd .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNEbAmd .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNEbAmd .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNEbAmd .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNEbAmd .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-v1IgNEbAmd .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNEbAmd .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNEbAmd .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNEbAmd .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNEbAmd .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-v1IgNEbAmd .carousel-indicators li.active,
.cid-v1IgNEbAmd .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNEbAmd .carousel-indicators li::after,
.cid-v1IgNEbAmd .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNEbAmd .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNEbAmd .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNEu6nJ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-v1IgNEu6nJ .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNEu6nJ .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNEu6nJ .mbr-text,
.cid-v1IgNEu6nJ .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNEMLY4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-v1IgNEMLY4 .carousel {
    min-height: 700px;
  }
  .cid-v1IgNEMLY4 .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNEMLY4 .carousel {
    min-height: 455px;
  }
  .cid-v1IgNEMLY4 .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNEMLY4 .carousel {
    min-height: 385px;
  }
  .cid-v1IgNEMLY4 .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNEMLY4 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNEMLY4 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNEMLY4 .carousel,
.cid-v1IgNEMLY4 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNEMLY4 .item-wrapper {
  width: 100%;
}
.cid-v1IgNEMLY4 .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNEMLY4 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNEMLY4 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNEMLY4 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNEMLY4 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNEMLY4 .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-v1IgNEMLY4 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNEMLY4 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNEMLY4 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNEMLY4 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNEMLY4 .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-v1IgNEMLY4 .carousel-indicators li.active,
.cid-v1IgNEMLY4 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNEMLY4 .carousel-indicators li::after,
.cid-v1IgNEMLY4 .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNEMLY4 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNEMLY4 .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNF8J5P {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-v1IgNF8J5P .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNF8J5P .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNF8J5P .mbr-text,
.cid-v1IgNF8J5P .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNFqdoX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-v1IgNFqdoX .carousel {
    min-height: 700px;
  }
  .cid-v1IgNFqdoX .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNFqdoX .carousel {
    min-height: 455px;
  }
  .cid-v1IgNFqdoX .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNFqdoX .carousel {
    min-height: 385px;
  }
  .cid-v1IgNFqdoX .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNFqdoX .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNFqdoX .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNFqdoX .carousel,
.cid-v1IgNFqdoX .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNFqdoX .item-wrapper {
  width: 100%;
}
.cid-v1IgNFqdoX .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNFqdoX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNFqdoX .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNFqdoX .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNFqdoX .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNFqdoX .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-v1IgNFqdoX .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNFqdoX .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNFqdoX .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNFqdoX .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNFqdoX .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-v1IgNFqdoX .carousel-indicators li.active,
.cid-v1IgNFqdoX .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNFqdoX .carousel-indicators li::after,
.cid-v1IgNFqdoX .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNFqdoX .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNFqdoX .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNFKcuf {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-v1IgNFKcuf .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNFKcuf .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNFKcuf .mbr-text,
.cid-v1IgNFKcuf .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNG50h4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-v1IgNG50h4 .carousel {
    min-height: 700px;
  }
  .cid-v1IgNG50h4 .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNG50h4 .carousel {
    min-height: 455px;
  }
  .cid-v1IgNG50h4 .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNG50h4 .carousel {
    min-height: 385px;
  }
  .cid-v1IgNG50h4 .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNG50h4 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNG50h4 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNG50h4 .carousel,
.cid-v1IgNG50h4 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNG50h4 .item-wrapper {
  width: 100%;
}
.cid-v1IgNG50h4 .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNG50h4 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNG50h4 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNG50h4 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNG50h4 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNG50h4 .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-v1IgNG50h4 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNG50h4 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNG50h4 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNG50h4 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNG50h4 .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-v1IgNG50h4 .carousel-indicators li.active,
.cid-v1IgNG50h4 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNG50h4 .carousel-indicators li::after,
.cid-v1IgNG50h4 .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNG50h4 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNG50h4 .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNGpsDb {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-v1IgNGpsDb .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNGpsDb .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNGpsDb .mbr-text,
.cid-v1IgNGpsDb .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNGIPTU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-v1IgNGIPTU .carousel {
    min-height: 700px;
  }
  .cid-v1IgNGIPTU .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNGIPTU .carousel {
    min-height: 455px;
  }
  .cid-v1IgNGIPTU .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNGIPTU .carousel {
    min-height: 385px;
  }
  .cid-v1IgNGIPTU .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNGIPTU .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNGIPTU .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNGIPTU .carousel,
.cid-v1IgNGIPTU .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNGIPTU .item-wrapper {
  width: 100%;
}
.cid-v1IgNGIPTU .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNGIPTU .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNGIPTU .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNGIPTU .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNGIPTU .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNGIPTU .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-v1IgNGIPTU .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNGIPTU .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNGIPTU .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNGIPTU .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNGIPTU .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-v1IgNGIPTU .carousel-indicators li.active,
.cid-v1IgNGIPTU .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNGIPTU .carousel-indicators li::after,
.cid-v1IgNGIPTU .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNGIPTU .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNGIPTU .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNH984A {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-v1IgNH984A .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNH984A .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNH984A .mbr-text,
.cid-v1IgNH984A .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNHrIaw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-v1IgNHrIaw .carousel {
    min-height: 700px;
  }
  .cid-v1IgNHrIaw .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNHrIaw .carousel {
    min-height: 455px;
  }
  .cid-v1IgNHrIaw .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNHrIaw .carousel {
    min-height: 385px;
  }
  .cid-v1IgNHrIaw .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNHrIaw .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNHrIaw .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNHrIaw .carousel,
.cid-v1IgNHrIaw .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNHrIaw .item-wrapper {
  width: 100%;
}
.cid-v1IgNHrIaw .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNHrIaw .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNHrIaw .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNHrIaw .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNHrIaw .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNHrIaw .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-v1IgNHrIaw .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNHrIaw .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNHrIaw .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNHrIaw .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNHrIaw .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-v1IgNHrIaw .carousel-indicators li.active,
.cid-v1IgNHrIaw .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNHrIaw .carousel-indicators li::after,
.cid-v1IgNHrIaw .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNHrIaw .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNHrIaw .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNHL7tK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-v1IgNHL7tK .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNHL7tK .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNHL7tK .mbr-text,
.cid-v1IgNHL7tK .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNI4Pn2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-v1IgNI4Pn2 .carousel {
    min-height: 700px;
  }
  .cid-v1IgNI4Pn2 .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNI4Pn2 .carousel {
    min-height: 455px;
  }
  .cid-v1IgNI4Pn2 .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNI4Pn2 .carousel {
    min-height: 385px;
  }
  .cid-v1IgNI4Pn2 .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNI4Pn2 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNI4Pn2 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNI4Pn2 .carousel,
.cid-v1IgNI4Pn2 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNI4Pn2 .item-wrapper {
  width: 100%;
}
.cid-v1IgNI4Pn2 .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNI4Pn2 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNI4Pn2 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNI4Pn2 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNI4Pn2 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNI4Pn2 .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-v1IgNI4Pn2 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNI4Pn2 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNI4Pn2 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNI4Pn2 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNI4Pn2 .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-v1IgNI4Pn2 .carousel-indicators li.active,
.cid-v1IgNI4Pn2 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNI4Pn2 .carousel-indicators li::after,
.cid-v1IgNI4Pn2 .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNI4Pn2 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNI4Pn2 .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNIsvmF {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-v1IgNIsvmF .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNIsvmF .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNIsvmF .mbr-text,
.cid-v1IgNIsvmF .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNILnHB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-v1IgNILnHB .carousel {
    min-height: 700px;
  }
  .cid-v1IgNILnHB .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNILnHB .carousel {
    min-height: 455px;
  }
  .cid-v1IgNILnHB .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNILnHB .carousel {
    min-height: 385px;
  }
  .cid-v1IgNILnHB .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNILnHB .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNILnHB .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNILnHB .carousel,
.cid-v1IgNILnHB .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNILnHB .item-wrapper {
  width: 100%;
}
.cid-v1IgNILnHB .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNILnHB .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNILnHB .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNILnHB .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNILnHB .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNILnHB .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-v1IgNILnHB .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNILnHB .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNILnHB .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNILnHB .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNILnHB .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-v1IgNILnHB .carousel-indicators li.active,
.cid-v1IgNILnHB .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNILnHB .carousel-indicators li::after,
.cid-v1IgNILnHB .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNILnHB .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNILnHB .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNJqTWm {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-v1IgNJqTWm .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNJqTWm .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNJqTWm .mbr-text,
.cid-v1IgNJqTWm .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNJLb92 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-v1IgNJLb92 .carousel {
    min-height: 700px;
  }
  .cid-v1IgNJLb92 .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNJLb92 .carousel {
    min-height: 455px;
  }
  .cid-v1IgNJLb92 .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNJLb92 .carousel {
    min-height: 385px;
  }
  .cid-v1IgNJLb92 .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNJLb92 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNJLb92 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNJLb92 .carousel,
.cid-v1IgNJLb92 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNJLb92 .item-wrapper {
  width: 100%;
}
.cid-v1IgNJLb92 .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNJLb92 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNJLb92 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNJLb92 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNJLb92 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNJLb92 .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-v1IgNJLb92 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNJLb92 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNJLb92 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNJLb92 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNJLb92 .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-v1IgNJLb92 .carousel-indicators li.active,
.cid-v1IgNJLb92 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNJLb92 .carousel-indicators li::after,
.cid-v1IgNJLb92 .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNJLb92 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNJLb92 .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNK6cGZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-v1IgNK6cGZ .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNK6cGZ .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNK6cGZ .mbr-text,
.cid-v1IgNK6cGZ .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNKrmQt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-v1IgNKrmQt .carousel {
    min-height: 700px;
  }
  .cid-v1IgNKrmQt .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNKrmQt .carousel {
    min-height: 455px;
  }
  .cid-v1IgNKrmQt .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNKrmQt .carousel {
    min-height: 385px;
  }
  .cid-v1IgNKrmQt .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNKrmQt .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNKrmQt .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNKrmQt .carousel,
.cid-v1IgNKrmQt .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNKrmQt .item-wrapper {
  width: 100%;
}
.cid-v1IgNKrmQt .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNKrmQt .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNKrmQt .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNKrmQt .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNKrmQt .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNKrmQt .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-v1IgNKrmQt .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNKrmQt .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNKrmQt .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNKrmQt .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNKrmQt .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-v1IgNKrmQt .carousel-indicators li.active,
.cid-v1IgNKrmQt .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNKrmQt .carousel-indicators li::after,
.cid-v1IgNKrmQt .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNKrmQt .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNKrmQt .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNKOwtq {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-v1IgNKOwtq .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNKOwtq .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNKOwtq .mbr-text,
.cid-v1IgNKOwtq .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNLCxxt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-v1IgNLCxxt .carousel {
    min-height: 700px;
  }
  .cid-v1IgNLCxxt .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNLCxxt .carousel {
    min-height: 455px;
  }
  .cid-v1IgNLCxxt .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNLCxxt .carousel {
    min-height: 385px;
  }
  .cid-v1IgNLCxxt .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNLCxxt .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNLCxxt .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNLCxxt .carousel,
.cid-v1IgNLCxxt .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNLCxxt .item-wrapper {
  width: 100%;
}
.cid-v1IgNLCxxt .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNLCxxt .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNLCxxt .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNLCxxt .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNLCxxt .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNLCxxt .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-v1IgNLCxxt .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNLCxxt .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNLCxxt .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNLCxxt .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNLCxxt .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-v1IgNLCxxt .carousel-indicators li.active,
.cid-v1IgNLCxxt .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNLCxxt .carousel-indicators li::after,
.cid-v1IgNLCxxt .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNLCxxt .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNLCxxt .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNM0XcO {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-v1IgNM0XcO .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNM0XcO .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNM0XcO .mbr-text,
.cid-v1IgNM0XcO .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNMn1c0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-v1IgNMn1c0 .carousel {
    min-height: 700px;
  }
  .cid-v1IgNMn1c0 .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNMn1c0 .carousel {
    min-height: 455px;
  }
  .cid-v1IgNMn1c0 .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNMn1c0 .carousel {
    min-height: 385px;
  }
  .cid-v1IgNMn1c0 .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNMn1c0 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNMn1c0 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNMn1c0 .carousel,
.cid-v1IgNMn1c0 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNMn1c0 .item-wrapper {
  width: 100%;
}
.cid-v1IgNMn1c0 .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNMn1c0 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNMn1c0 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNMn1c0 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNMn1c0 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNMn1c0 .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-v1IgNMn1c0 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNMn1c0 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNMn1c0 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNMn1c0 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNMn1c0 .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-v1IgNMn1c0 .carousel-indicators li.active,
.cid-v1IgNMn1c0 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNMn1c0 .carousel-indicators li::after,
.cid-v1IgNMn1c0 .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNMn1c0 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNMn1c0 .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNMULsC {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-v1IgNMULsC .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNMULsC .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNMULsC .mbr-text,
.cid-v1IgNMULsC .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNNt3yh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-v1IgNNt3yh .carousel {
    min-height: 700px;
  }
  .cid-v1IgNNt3yh .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNNt3yh .carousel {
    min-height: 455px;
  }
  .cid-v1IgNNt3yh .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNNt3yh .carousel {
    min-height: 385px;
  }
  .cid-v1IgNNt3yh .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNNt3yh .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNNt3yh .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNNt3yh .carousel,
.cid-v1IgNNt3yh .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNNt3yh .item-wrapper {
  width: 100%;
}
.cid-v1IgNNt3yh .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNNt3yh .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNNt3yh .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNNt3yh .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNNt3yh .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNNt3yh .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-v1IgNNt3yh .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNNt3yh .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNNt3yh .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNNt3yh .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNNt3yh .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-v1IgNNt3yh .carousel-indicators li.active,
.cid-v1IgNNt3yh .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNNt3yh .carousel-indicators li::after,
.cid-v1IgNNt3yh .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNNt3yh .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNNt3yh .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNNXEB5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-v1IgNNXEB5 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNNXEB5 .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNNXEB5 .mbr-text,
.cid-v1IgNNXEB5 .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNP7FZO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-v1IgNP7FZO .carousel {
    min-height: 700px;
  }
  .cid-v1IgNP7FZO .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNP7FZO .carousel {
    min-height: 455px;
  }
  .cid-v1IgNP7FZO .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNP7FZO .carousel {
    min-height: 385px;
  }
  .cid-v1IgNP7FZO .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNP7FZO .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNP7FZO .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNP7FZO .carousel,
.cid-v1IgNP7FZO .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNP7FZO .item-wrapper {
  width: 100%;
}
.cid-v1IgNP7FZO .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNP7FZO .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNP7FZO .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNP7FZO .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNP7FZO .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNP7FZO .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-v1IgNP7FZO .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNP7FZO .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNP7FZO .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNP7FZO .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNP7FZO .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-v1IgNP7FZO .carousel-indicators li.active,
.cid-v1IgNP7FZO .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNP7FZO .carousel-indicators li::after,
.cid-v1IgNP7FZO .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNP7FZO .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNP7FZO .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNPHaDZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-v1IgNPHaDZ .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNPHaDZ .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNPHaDZ .mbr-text,
.cid-v1IgNPHaDZ .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNQa0lg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-v1IgNQa0lg .carousel {
    min-height: 700px;
  }
  .cid-v1IgNQa0lg .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNQa0lg .carousel {
    min-height: 455px;
  }
  .cid-v1IgNQa0lg .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNQa0lg .carousel {
    min-height: 385px;
  }
  .cid-v1IgNQa0lg .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNQa0lg .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNQa0lg .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNQa0lg .carousel,
.cid-v1IgNQa0lg .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNQa0lg .item-wrapper {
  width: 100%;
}
.cid-v1IgNQa0lg .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNQa0lg .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNQa0lg .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNQa0lg .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNQa0lg .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNQa0lg .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-v1IgNQa0lg .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNQa0lg .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNQa0lg .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNQa0lg .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNQa0lg .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-v1IgNQa0lg .carousel-indicators li.active,
.cid-v1IgNQa0lg .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNQa0lg .carousel-indicators li::after,
.cid-v1IgNQa0lg .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNQa0lg .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNQa0lg .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNQHEY7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-v1IgNQHEY7 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNQHEY7 .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNQHEY7 .mbr-text,
.cid-v1IgNQHEY7 .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNRbxLS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-v1IgNRbxLS .carousel {
    min-height: 700px;
  }
  .cid-v1IgNRbxLS .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNRbxLS .carousel {
    min-height: 455px;
  }
  .cid-v1IgNRbxLS .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNRbxLS .carousel {
    min-height: 385px;
  }
  .cid-v1IgNRbxLS .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNRbxLS .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNRbxLS .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNRbxLS .carousel,
.cid-v1IgNRbxLS .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNRbxLS .item-wrapper {
  width: 100%;
}
.cid-v1IgNRbxLS .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNRbxLS .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNRbxLS .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNRbxLS .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNRbxLS .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNRbxLS .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-v1IgNRbxLS .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNRbxLS .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNRbxLS .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNRbxLS .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNRbxLS .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-v1IgNRbxLS .carousel-indicators li.active,
.cid-v1IgNRbxLS .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNRbxLS .carousel-indicators li::after,
.cid-v1IgNRbxLS .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNRbxLS .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNRbxLS .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNRIobi {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-v1IgNRIobi .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNRIobi .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNRIobi .mbr-text,
.cid-v1IgNRIobi .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNSktq4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-v1IgNSktq4 .carousel {
    min-height: 700px;
  }
  .cid-v1IgNSktq4 .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNSktq4 .carousel {
    min-height: 455px;
  }
  .cid-v1IgNSktq4 .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNSktq4 .carousel {
    min-height: 385px;
  }
  .cid-v1IgNSktq4 .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNSktq4 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNSktq4 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNSktq4 .carousel,
.cid-v1IgNSktq4 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNSktq4 .item-wrapper {
  width: 100%;
}
.cid-v1IgNSktq4 .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNSktq4 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNSktq4 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNSktq4 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNSktq4 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNSktq4 .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-v1IgNSktq4 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNSktq4 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNSktq4 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNSktq4 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNSktq4 .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-v1IgNSktq4 .carousel-indicators li.active,
.cid-v1IgNSktq4 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNSktq4 .carousel-indicators li::after,
.cid-v1IgNSktq4 .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNSktq4 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNSktq4 .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNSOJqq {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-v1IgNSOJqq .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNSOJqq .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNSOJqq .mbr-text,
.cid-v1IgNSOJqq .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNUkjKw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-v1IgNUkjKw .carousel {
    min-height: 700px;
  }
  .cid-v1IgNUkjKw .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNUkjKw .carousel {
    min-height: 455px;
  }
  .cid-v1IgNUkjKw .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNUkjKw .carousel {
    min-height: 385px;
  }
  .cid-v1IgNUkjKw .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNUkjKw .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNUkjKw .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNUkjKw .carousel,
.cid-v1IgNUkjKw .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNUkjKw .item-wrapper {
  width: 100%;
}
.cid-v1IgNUkjKw .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNUkjKw .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNUkjKw .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNUkjKw .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNUkjKw .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNUkjKw .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-v1IgNUkjKw .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNUkjKw .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNUkjKw .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNUkjKw .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNUkjKw .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-v1IgNUkjKw .carousel-indicators li.active,
.cid-v1IgNUkjKw .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNUkjKw .carousel-indicators li::after,
.cid-v1IgNUkjKw .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNUkjKw .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNUkjKw .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNUH0wv {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-v1IgNUH0wv .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNUH0wv .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNUH0wv .mbr-text,
.cid-v1IgNUH0wv .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNV3c8F {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-v1IgNV3c8F .carousel {
    min-height: 700px;
  }
  .cid-v1IgNV3c8F .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNV3c8F .carousel {
    min-height: 455px;
  }
  .cid-v1IgNV3c8F .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNV3c8F .carousel {
    min-height: 385px;
  }
  .cid-v1IgNV3c8F .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNV3c8F .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNV3c8F .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNV3c8F .carousel,
.cid-v1IgNV3c8F .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNV3c8F .item-wrapper {
  width: 100%;
}
.cid-v1IgNV3c8F .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNV3c8F .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNV3c8F .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNV3c8F .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNV3c8F .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNV3c8F .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-v1IgNV3c8F .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNV3c8F .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNV3c8F .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNV3c8F .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNV3c8F .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-v1IgNV3c8F .carousel-indicators li.active,
.cid-v1IgNV3c8F .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNV3c8F .carousel-indicators li::after,
.cid-v1IgNV3c8F .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNV3c8F .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNV3c8F .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNVvru3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-v1IgNVvru3 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNVvru3 .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNVvru3 .mbr-text,
.cid-v1IgNVvru3 .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNVRhKu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-v1IgNVRhKu .carousel {
    min-height: 700px;
  }
  .cid-v1IgNVRhKu .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNVRhKu .carousel {
    min-height: 455px;
  }
  .cid-v1IgNVRhKu .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNVRhKu .carousel {
    min-height: 385px;
  }
  .cid-v1IgNVRhKu .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNVRhKu .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNVRhKu .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNVRhKu .carousel,
.cid-v1IgNVRhKu .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNVRhKu .item-wrapper {
  width: 100%;
}
.cid-v1IgNVRhKu .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNVRhKu .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNVRhKu .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNVRhKu .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNVRhKu .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNVRhKu .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-v1IgNVRhKu .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNVRhKu .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNVRhKu .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNVRhKu .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNVRhKu .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-v1IgNVRhKu .carousel-indicators li.active,
.cid-v1IgNVRhKu .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNVRhKu .carousel-indicators li::after,
.cid-v1IgNVRhKu .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNVRhKu .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNVRhKu .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNWgSOm {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-v1IgNWgSOm .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNWgSOm .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNWgSOm .mbr-text,
.cid-v1IgNWgSOm .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNWEeGq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-v1IgNWEeGq .carousel {
    min-height: 700px;
  }
  .cid-v1IgNWEeGq .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNWEeGq .carousel {
    min-height: 455px;
  }
  .cid-v1IgNWEeGq .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNWEeGq .carousel {
    min-height: 385px;
  }
  .cid-v1IgNWEeGq .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNWEeGq .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNWEeGq .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNWEeGq .carousel,
.cid-v1IgNWEeGq .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNWEeGq .item-wrapper {
  width: 100%;
}
.cid-v1IgNWEeGq .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNWEeGq .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNWEeGq .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNWEeGq .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNWEeGq .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNWEeGq .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-v1IgNWEeGq .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNWEeGq .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNWEeGq .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNWEeGq .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNWEeGq .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-v1IgNWEeGq .carousel-indicators li.active,
.cid-v1IgNWEeGq .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNWEeGq .carousel-indicators li::after,
.cid-v1IgNWEeGq .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNWEeGq .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNWEeGq .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNX4iZt {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-v1IgNX4iZt .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNX4iZt .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNX4iZt .mbr-text,
.cid-v1IgNX4iZt .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNXudhd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-v1IgNXudhd .carousel {
    min-height: 700px;
  }
  .cid-v1IgNXudhd .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNXudhd .carousel {
    min-height: 455px;
  }
  .cid-v1IgNXudhd .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNXudhd .carousel {
    min-height: 385px;
  }
  .cid-v1IgNXudhd .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNXudhd .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNXudhd .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNXudhd .carousel,
.cid-v1IgNXudhd .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNXudhd .item-wrapper {
  width: 100%;
}
.cid-v1IgNXudhd .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNXudhd .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNXudhd .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNXudhd .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNXudhd .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNXudhd .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-v1IgNXudhd .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNXudhd .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNXudhd .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNXudhd .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNXudhd .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-v1IgNXudhd .carousel-indicators li.active,
.cid-v1IgNXudhd .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNXudhd .carousel-indicators li::after,
.cid-v1IgNXudhd .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNXudhd .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNXudhd .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNXVKlm {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-v1IgNXVKlm .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNXVKlm .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNXVKlm .mbr-text,
.cid-v1IgNXVKlm .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNYj8Ex {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-v1IgNYj8Ex .carousel {
    min-height: 700px;
  }
  .cid-v1IgNYj8Ex .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNYj8Ex .carousel {
    min-height: 455px;
  }
  .cid-v1IgNYj8Ex .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNYj8Ex .carousel {
    min-height: 385px;
  }
  .cid-v1IgNYj8Ex .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNYj8Ex .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNYj8Ex .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNYj8Ex .carousel,
.cid-v1IgNYj8Ex .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNYj8Ex .item-wrapper {
  width: 100%;
}
.cid-v1IgNYj8Ex .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNYj8Ex .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNYj8Ex .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNYj8Ex .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNYj8Ex .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNYj8Ex .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-v1IgNYj8Ex .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNYj8Ex .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNYj8Ex .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNYj8Ex .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNYj8Ex .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-v1IgNYj8Ex .carousel-indicators li.active,
.cid-v1IgNYj8Ex .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNYj8Ex .carousel-indicators li::after,
.cid-v1IgNYj8Ex .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNYj8Ex .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNYj8Ex .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNYK6Ov {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-v1IgNYK6Ov .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNYK6Ov .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNYK6Ov .mbr-text,
.cid-v1IgNYK6Ov .mbr-section-btn {
  text-align: left;
}
.cid-v1IgNZ7w1k {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-v1IgNZ7w1k .carousel {
    min-height: 700px;
  }
  .cid-v1IgNZ7w1k .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgNZ7w1k .carousel {
    min-height: 455px;
  }
  .cid-v1IgNZ7w1k .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgNZ7w1k .carousel {
    min-height: 385px;
  }
  .cid-v1IgNZ7w1k .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgNZ7w1k .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgNZ7w1k .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgNZ7w1k .carousel,
.cid-v1IgNZ7w1k .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgNZ7w1k .item-wrapper {
  width: 100%;
}
.cid-v1IgNZ7w1k .carousel-caption {
  bottom: 40px;
}
.cid-v1IgNZ7w1k .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgNZ7w1k .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgNZ7w1k .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgNZ7w1k .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgNZ7w1k .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-v1IgNZ7w1k .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgNZ7w1k .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgNZ7w1k .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgNZ7w1k .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgNZ7w1k .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-v1IgNZ7w1k .carousel-indicators li.active,
.cid-v1IgNZ7w1k .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgNZ7w1k .carousel-indicators li::after,
.cid-v1IgNZ7w1k .carousel-indicators li::before {
  content: none;
}
.cid-v1IgNZ7w1k .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgNZ7w1k .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgNZy9sQ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-v1IgNZy9sQ .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgNZy9sQ .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgNZy9sQ .mbr-text,
.cid-v1IgNZy9sQ .mbr-section-btn {
  text-align: left;
}
.cid-v1IgO0aQmX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-v1IgO0aQmX .carousel {
    min-height: 700px;
  }
  .cid-v1IgO0aQmX .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgO0aQmX .carousel {
    min-height: 455px;
  }
  .cid-v1IgO0aQmX .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgO0aQmX .carousel {
    min-height: 385px;
  }
  .cid-v1IgO0aQmX .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgO0aQmX .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgO0aQmX .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgO0aQmX .carousel,
.cid-v1IgO0aQmX .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgO0aQmX .item-wrapper {
  width: 100%;
}
.cid-v1IgO0aQmX .carousel-caption {
  bottom: 40px;
}
.cid-v1IgO0aQmX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgO0aQmX .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgO0aQmX .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgO0aQmX .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgO0aQmX .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-v1IgO0aQmX .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgO0aQmX .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgO0aQmX .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgO0aQmX .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgO0aQmX .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-v1IgO0aQmX .carousel-indicators li.active,
.cid-v1IgO0aQmX .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgO0aQmX .carousel-indicators li::after,
.cid-v1IgO0aQmX .carousel-indicators li::before {
  content: none;
}
.cid-v1IgO0aQmX .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgO0aQmX .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgO0AM3O {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-v1IgO0AM3O .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgO0AM3O .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgO0AM3O .mbr-text,
.cid-v1IgO0AM3O .mbr-section-btn {
  text-align: left;
}
.cid-v1IgO0ZN4P {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-v1IgO0ZN4P .carousel {
    min-height: 700px;
  }
  .cid-v1IgO0ZN4P .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgO0ZN4P .carousel {
    min-height: 455px;
  }
  .cid-v1IgO0ZN4P .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgO0ZN4P .carousel {
    min-height: 385px;
  }
  .cid-v1IgO0ZN4P .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgO0ZN4P .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgO0ZN4P .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgO0ZN4P .carousel,
.cid-v1IgO0ZN4P .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgO0ZN4P .item-wrapper {
  width: 100%;
}
.cid-v1IgO0ZN4P .carousel-caption {
  bottom: 40px;
}
.cid-v1IgO0ZN4P .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgO0ZN4P .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgO0ZN4P .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgO0ZN4P .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgO0ZN4P .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-v1IgO0ZN4P .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgO0ZN4P .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgO0ZN4P .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgO0ZN4P .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgO0ZN4P .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-v1IgO0ZN4P .carousel-indicators li.active,
.cid-v1IgO0ZN4P .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgO0ZN4P .carousel-indicators li::after,
.cid-v1IgO0ZN4P .carousel-indicators li::before {
  content: none;
}
.cid-v1IgO0ZN4P .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgO0ZN4P .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgO1NY3d {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-v1IgO1NY3d .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgO1NY3d .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgO1NY3d .mbr-text,
.cid-v1IgO1NY3d .mbr-section-btn {
  text-align: left;
}
.cid-v1IgO2ceE7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-v1IgO2ceE7 .carousel {
    min-height: 700px;
  }
  .cid-v1IgO2ceE7 .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgO2ceE7 .carousel {
    min-height: 455px;
  }
  .cid-v1IgO2ceE7 .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgO2ceE7 .carousel {
    min-height: 385px;
  }
  .cid-v1IgO2ceE7 .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgO2ceE7 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgO2ceE7 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgO2ceE7 .carousel,
.cid-v1IgO2ceE7 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgO2ceE7 .item-wrapper {
  width: 100%;
}
.cid-v1IgO2ceE7 .carousel-caption {
  bottom: 40px;
}
.cid-v1IgO2ceE7 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgO2ceE7 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgO2ceE7 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgO2ceE7 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgO2ceE7 .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-v1IgO2ceE7 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgO2ceE7 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgO2ceE7 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgO2ceE7 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgO2ceE7 .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-v1IgO2ceE7 .carousel-indicators li.active,
.cid-v1IgO2ceE7 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgO2ceE7 .carousel-indicators li::after,
.cid-v1IgO2ceE7 .carousel-indicators li::before {
  content: none;
}
.cid-v1IgO2ceE7 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgO2ceE7 .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgO2Ec3D {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-v1IgO2Ec3D .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgO2Ec3D .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgO2Ec3D .mbr-text,
.cid-v1IgO2Ec3D .mbr-section-btn {
  text-align: left;
}
.cid-v1IgO3nnUP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-v1IgO3nnUP .carousel {
    min-height: 700px;
  }
  .cid-v1IgO3nnUP .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgO3nnUP .carousel {
    min-height: 455px;
  }
  .cid-v1IgO3nnUP .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgO3nnUP .carousel {
    min-height: 385px;
  }
  .cid-v1IgO3nnUP .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgO3nnUP .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgO3nnUP .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgO3nnUP .carousel,
.cid-v1IgO3nnUP .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgO3nnUP .item-wrapper {
  width: 100%;
}
.cid-v1IgO3nnUP .carousel-caption {
  bottom: 40px;
}
.cid-v1IgO3nnUP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgO3nnUP .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgO3nnUP .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgO3nnUP .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgO3nnUP .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-v1IgO3nnUP .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgO3nnUP .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgO3nnUP .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgO3nnUP .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgO3nnUP .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-v1IgO3nnUP .carousel-indicators li.active,
.cid-v1IgO3nnUP .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgO3nnUP .carousel-indicators li::after,
.cid-v1IgO3nnUP .carousel-indicators li::before {
  content: none;
}
.cid-v1IgO3nnUP .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgO3nnUP .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgO3Ni23 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-v1IgO3Ni23 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgO3Ni23 .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgO3Ni23 .mbr-text,
.cid-v1IgO3Ni23 .mbr-section-btn {
  text-align: left;
}
.cid-v1IgO4gmwn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-v1IgO4gmwn .carousel {
    min-height: 700px;
  }
  .cid-v1IgO4gmwn .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgO4gmwn .carousel {
    min-height: 455px;
  }
  .cid-v1IgO4gmwn .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgO4gmwn .carousel {
    min-height: 385px;
  }
  .cid-v1IgO4gmwn .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgO4gmwn .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgO4gmwn .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgO4gmwn .carousel,
.cid-v1IgO4gmwn .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgO4gmwn .item-wrapper {
  width: 100%;
}
.cid-v1IgO4gmwn .carousel-caption {
  bottom: 40px;
}
.cid-v1IgO4gmwn .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgO4gmwn .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgO4gmwn .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgO4gmwn .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgO4gmwn .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-v1IgO4gmwn .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgO4gmwn .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgO4gmwn .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgO4gmwn .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgO4gmwn .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-v1IgO4gmwn .carousel-indicators li.active,
.cid-v1IgO4gmwn .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgO4gmwn .carousel-indicators li::after,
.cid-v1IgO4gmwn .carousel-indicators li::before {
  content: none;
}
.cid-v1IgO4gmwn .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgO4gmwn .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgO4Itr7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-v1IgO4Itr7 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgO4Itr7 .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgO4Itr7 .mbr-text,
.cid-v1IgO4Itr7 .mbr-section-btn {
  text-align: left;
}
.cid-v1IgO5dJKK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-v1IgO5dJKK .carousel {
    min-height: 700px;
  }
  .cid-v1IgO5dJKK .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgO5dJKK .carousel {
    min-height: 455px;
  }
  .cid-v1IgO5dJKK .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgO5dJKK .carousel {
    min-height: 385px;
  }
  .cid-v1IgO5dJKK .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgO5dJKK .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgO5dJKK .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgO5dJKK .carousel,
.cid-v1IgO5dJKK .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgO5dJKK .item-wrapper {
  width: 100%;
}
.cid-v1IgO5dJKK .carousel-caption {
  bottom: 40px;
}
.cid-v1IgO5dJKK .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgO5dJKK .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgO5dJKK .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgO5dJKK .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgO5dJKK .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-v1IgO5dJKK .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgO5dJKK .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgO5dJKK .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgO5dJKK .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgO5dJKK .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-v1IgO5dJKK .carousel-indicators li.active,
.cid-v1IgO5dJKK .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgO5dJKK .carousel-indicators li::after,
.cid-v1IgO5dJKK .carousel-indicators li::before {
  content: none;
}
.cid-v1IgO5dJKK .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgO5dJKK .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgO5GVxX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-v1IgO5GVxX .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgO5GVxX .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgO5GVxX .mbr-text,
.cid-v1IgO5GVxX .mbr-section-btn {
  text-align: left;
}
.cid-v1IgO675u2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-v1IgO675u2 .carousel {
    min-height: 700px;
  }
  .cid-v1IgO675u2 .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgO675u2 .carousel {
    min-height: 455px;
  }
  .cid-v1IgO675u2 .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgO675u2 .carousel {
    min-height: 385px;
  }
  .cid-v1IgO675u2 .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgO675u2 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgO675u2 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgO675u2 .carousel,
.cid-v1IgO675u2 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgO675u2 .item-wrapper {
  width: 100%;
}
.cid-v1IgO675u2 .carousel-caption {
  bottom: 40px;
}
.cid-v1IgO675u2 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgO675u2 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgO675u2 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgO675u2 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgO675u2 .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-v1IgO675u2 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgO675u2 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgO675u2 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgO675u2 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgO675u2 .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-v1IgO675u2 .carousel-indicators li.active,
.cid-v1IgO675u2 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgO675u2 .carousel-indicators li::after,
.cid-v1IgO675u2 .carousel-indicators li::before {
  content: none;
}
.cid-v1IgO675u2 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgO675u2 .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgO6AOpa {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-v1IgO6AOpa .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgO6AOpa .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgO6AOpa .mbr-text,
.cid-v1IgO6AOpa .mbr-section-btn {
  text-align: left;
}
.cid-v1IgO79ybt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
@media (min-width: 992px) {
  .cid-v1IgO79ybt .carousel {
    min-height: 700px;
  }
  .cid-v1IgO79ybt .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgO79ybt .carousel {
    min-height: 455px;
  }
  .cid-v1IgO79ybt .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgO79ybt .carousel {
    min-height: 385px;
  }
  .cid-v1IgO79ybt .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgO79ybt .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgO79ybt .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgO79ybt .carousel,
.cid-v1IgO79ybt .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgO79ybt .item-wrapper {
  width: 100%;
}
.cid-v1IgO79ybt .carousel-caption {
  bottom: 40px;
}
.cid-v1IgO79ybt .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgO79ybt .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgO79ybt .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgO79ybt .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgO79ybt .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-v1IgO79ybt .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgO79ybt .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgO79ybt .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgO79ybt .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgO79ybt .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-v1IgO79ybt .carousel-indicators li.active,
.cid-v1IgO79ybt .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgO79ybt .carousel-indicators li::after,
.cid-v1IgO79ybt .carousel-indicators li::before {
  content: none;
}
.cid-v1IgO79ybt .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgO79ybt .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgO7Eunc {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-v1IgO7Eunc .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgO7Eunc .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgO7Eunc .mbr-text,
.cid-v1IgO7Eunc .mbr-section-btn {
  text-align: justify;
}
.cid-v1IgO85Q8K {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-v1IgO85Q8K .carousel {
    min-height: 700px;
  }
  .cid-v1IgO85Q8K .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgO85Q8K .carousel {
    min-height: 455px;
  }
  .cid-v1IgO85Q8K .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgO85Q8K .carousel {
    min-height: 385px;
  }
  .cid-v1IgO85Q8K .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgO85Q8K .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgO85Q8K .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgO85Q8K .carousel,
.cid-v1IgO85Q8K .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgO85Q8K .item-wrapper {
  width: 100%;
}
.cid-v1IgO85Q8K .carousel-caption {
  bottom: 40px;
}
.cid-v1IgO85Q8K .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgO85Q8K .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgO85Q8K .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgO85Q8K .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgO85Q8K .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-v1IgO85Q8K .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgO85Q8K .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgO85Q8K .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgO85Q8K .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgO85Q8K .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-v1IgO85Q8K .carousel-indicators li.active,
.cid-v1IgO85Q8K .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgO85Q8K .carousel-indicators li::after,
.cid-v1IgO85Q8K .carousel-indicators li::before {
  content: none;
}
.cid-v1IgO85Q8K .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgO85Q8K .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgO8BAIV {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-v1IgO8BAIV .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgO8BAIV .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgO8BAIV .mbr-text,
.cid-v1IgO8BAIV .mbr-section-btn {
  text-align: left;
}
.cid-v1IgO926qk {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
.cid-v1IgO926qk .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1IgO926qk .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v1IgO926qk .mbr-text,
.cid-v1IgO926qk .mbr-section-btn {
  text-align: left;
}
.cid-v1IgO9ubpV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #65c6d4;
}
@media (min-width: 992px) {
  .cid-v1IgO9ubpV .carousel {
    min-height: 700px;
  }
  .cid-v1IgO9ubpV .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1IgO9ubpV .carousel {
    min-height: 455px;
  }
  .cid-v1IgO9ubpV .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v1IgO9ubpV .carousel {
    min-height: 385px;
  }
  .cid-v1IgO9ubpV .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-v1IgO9ubpV .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v1IgO9ubpV .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1IgO9ubpV .carousel,
.cid-v1IgO9ubpV .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1IgO9ubpV .item-wrapper {
  width: 100%;
}
.cid-v1IgO9ubpV .carousel-caption {
  bottom: 40px;
}
.cid-v1IgO9ubpV .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v1IgO9ubpV .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1IgO9ubpV .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1IgO9ubpV .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1IgO9ubpV .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-v1IgO9ubpV .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1IgO9ubpV .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1IgO9ubpV .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1IgO9ubpV .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v1IgO9ubpV .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-v1IgO9ubpV .carousel-indicators li.active,
.cid-v1IgO9ubpV .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1IgO9ubpV .carousel-indicators li::after,
.cid-v1IgO9ubpV .carousel-indicators li::before {
  content: none;
}
.cid-v1IgO9ubpV .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1IgO9ubpV .carousel-indicators {
    display: none !important;
  }
}
.cid-v1IgOa0rzq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v1IgOa0rzq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v1IgOa0rzq .row {
  flex-direction: row-reverse;
}
.cid-v1IgOa0rzq img {
  width: 100%;
}
.cid-v1IgOaqY0J {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffe161;
}
.cid-v1IgOaqY0J .mbr-text,
.cid-v1IgOaqY0J .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-v1IgOaqY0J .mbr-text,
  .cid-v1IgOaqY0J .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-v1IgOaqY0J .mbr-text,
  .cid-v1IgOaqY0J .mbr-section-title {
    text-align: center;
  }
}
.cid-v1IgOaqY0J a.btn {
  height: 100%;
  margin: 0;
}
.cid-v1IgOaqY0J .mbr-section-btn {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
}
.cid-v1IgOaqY0J .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v1IgOaqY0J .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v1IgOaqY0J .justify-content-center {
  align-items: center;
}
.cid-v1IgOaVIdt {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v1IgOaVIdt .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-v1IgOaVIdt .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v1IgOaVIdt .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-v1IgOaVIdt .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v1IgOaVIdt .list {
    margin-bottom: 0rem;
  }
}
.cid-v1IgOaVIdt .mbr-text {
  color: #000000;
}
.cid-v1IgOaVIdt .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-v1IgOaVIdt .mbr-iconfont {
  color: black;
}
.cid-v1IgOaVIdt H5 {
  color: #000000;
}
