.btn {
  border-width: 2px;
}
body {
  font-family: 'Urbanist', sans-serif;
}
.display-1 {
  font-family: 'Urbanist', sans-serif;
  font-size: 3.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.75rem;
}
.display-2 {
  font-family: 'Urbanist', sans-serif;
  font-size: 2rem;
  line-height: 0.9;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1rem;
  line-height: 1.1;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Urbanist', sans-serif;
  font-size: 2rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.1rem;
  line-height: 1.2;
}
.display-7 > .mbr-iconfont {
  font-size: 1.375rem;
}
/* ---- 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.04rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.66rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .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.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))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.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: #17171a !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #fc0952 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #17171a !important;
  border-color: #17171a !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #9b9ba5 !important;
  border-color: #9b9ba5 !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: #6f6f7b !important;
  border-color: #6f6f7b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #6f6f7b !important;
  border-color: #6f6f7b !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: #fc0952 !important;
  border-color: #fc0952 !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: #ac0235 !important;
  border-color: #ac0235 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ac0235 !important;
  border-color: #ac0235 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !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 {
  border-color: #17171a;
  color: #17171a;
}
.btn-secondary-outline {
  border-color: #9b9ba5;
  color: #9b9ba5;
}
.btn-info-outline {
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-success-outline {
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-warning-outline {
  border-color: #ffe161;
  color: #ffe161;
}
.btn-danger-outline {
  border-color: #fc0952;
  color: #fc0952;
}
.btn-black-outline {
  border-color: #17171a;
  color: #17171a;
}
.btn-white-outline {
  border-color: #ffffff;
  color: #ffffff;
}
.text-primary {
  color: #17171a !important;
}
.text-secondary {
  color: #9b9ba5 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #fc0952 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #17171A !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #676773 !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: #9d0231 !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) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #17171a;
}
.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: #fc0952;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #17171a;
  border-color: #17171a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #17171a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c8c8ce;
}
.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: #fed3e0;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
blockquote {
  border-color: #17171a;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #17171a;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #17171a;
}
.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: #17171a;
  border-bottom-color: #17171a;
}
.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: #17171a !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: #9b9ba5 !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='%2317171a' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sIYeoKomyf {
  z-index: 1000;
  width: 100%;
}
.cid-sIYeoKomyf nav.navbar {
  position: fixed;
}
.cid-sIYeoKomyf .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-sIYeoKomyf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sIYeoKomyf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sIYeoKomyf .dropdown-item:hover,
.cid-sIYeoKomyf .dropdown-item:focus {
  background: #17171a !important;
  color: white !important;
}
.cid-sIYeoKomyf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sIYeoKomyf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sIYeoKomyf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sIYeoKomyf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sIYeoKomyf .nav-link {
  position: relative;
}
.cid-sIYeoKomyf .container {
  display: flex;
  margin: auto;
}
.cid-sIYeoKomyf .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sIYeoKomyf .dropdown-menu,
.cid-sIYeoKomyf .navbar.opened {
  background: #7b7b8b !important;
}
.cid-sIYeoKomyf .nav-item:focus,
.cid-sIYeoKomyf .nav-link:focus {
  outline: none;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sIYeoKomyf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sIYeoKomyf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sIYeoKomyf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(123, 123, 139, 0.6);
}
.cid-sIYeoKomyf .navbar.opened {
  transition: all 0.3s;
}
.cid-sIYeoKomyf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sIYeoKomyf .navbar .navbar-logo img {
  width: auto;
}
.cid-sIYeoKomyf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sIYeoKomyf .navbar.collapsed {
  justify-content: center;
}
.cid-sIYeoKomyf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sIYeoKomyf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sIYeoKomyf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sIYeoKomyf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sIYeoKomyf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sIYeoKomyf .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-sIYeoKomyf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sIYeoKomyf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sIYeoKomyf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sIYeoKomyf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sIYeoKomyf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sIYeoKomyf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sIYeoKomyf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sIYeoKomyf .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-sIYeoKomyf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sIYeoKomyf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sIYeoKomyf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sIYeoKomyf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sIYeoKomyf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sIYeoKomyf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sIYeoKomyf .navbar.navbar-short {
  min-height: 60px;
}
.cid-sIYeoKomyf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sIYeoKomyf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sIYeoKomyf .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sIYeoKomyf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sIYeoKomyf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sIYeoKomyf .dropdown-item.active,
.cid-sIYeoKomyf .dropdown-item:active {
  background-color: transparent;
}
.cid-sIYeoKomyf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sIYeoKomyf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sIYeoKomyf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sIYeoKomyf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #7b7b8b;
}
.cid-sIYeoKomyf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sIYeoKomyf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sIYeoKomyf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sIYeoKomyf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sIYeoKomyf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIYeoKomyf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sIYeoKomyf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sIYeoKomyf .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-sIYeoKomyf .navbar {
    height: 70px;
  }
  .cid-sIYeoKomyf .navbar.opened {
    height: auto;
  }
  .cid-sIYeoKomyf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uN18uoSnkW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #254b45;
}
.cid-uN18uoSnkW .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uN18uoSnkW .modal-body .close {
  background: #1b1b1b;
}
.cid-uN18uoSnkW .modal-body .close span {
  font-style: normal;
}
@media (min-width: 992px) {
  .cid-uN18uoSnkW .align-center {
    text-align: left;
    max-width: 850px;
  }
  .cid-uN18uoSnkW .carousel-caption {
    justify-content: flex-start !important;
    padding-left: 5rem;
  }
}
.cid-uN18uoSnkW .mbr-slider .carousel-control {
  background: black!important;
  border-radius: 6px;
  height: 100px;
  width: 50px;
}
.cid-uN18uoSnkW .mbri-right:before {
  content: "\e909";
  color: white;
}
.cid-uN18uoSnkW .mbri-left:before {
  content: "\e90a";
  color: white;
}
.cid-uN18uoSnkW .container {
  max-width: 100%;
  padding: 0;
}
.cid-uN18uoSnkW .content-slider-wrap {
  width: 100%;
}
.cid-uN18uoSnkW .carousel-inner > .active,
.cid-uN18uoSnkW .carousel-inner > .next,
.cid-uN18uoSnkW .carousel-inner > .prev {
  display: -webkit-flex;
}
.cid-uN18uoSnkW .carousel-control .icon-next,
.cid-uN18uoSnkW .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uN18uoSnkW .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uN18uoSnkW .mbr-iconfont {
  color: black;
  font-size: 2rem!important;
  font-family: 'Moririse2' !important;
  font-weight: 600;
}
.cid-uN18uoSnkW .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uN18uoSnkW .boxed-slider > div {
  position: relative;
}
.cid-uN18uoSnkW .container img {
  width: 100%;
}
.cid-uN18uoSnkW .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uN18uoSnkW .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uN18uoSnkW .mbr-table-cell {
  padding: 0;
}
.cid-uN18uoSnkW .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uN18uoSnkW .carousel-caption {
  top: auto;
  right: 0;
  bottom: 2rem;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uN18uoSnkW .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uN18uoSnkW .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-uN18uoSnkW .carousel-item.active.right,
.cid-uN18uoSnkW .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uN18uoSnkW .carousel-item.active.left,
.cid-uN18uoSnkW .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uN18uoSnkW .carousel-item.active,
.cid-uN18uoSnkW .carousel-item.next.left,
.cid-uN18uoSnkW .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-uN18uoSnkW .mbr-slider .carousel-control {
  top: 50%;
  margin-top: -1.5rem;
  font-size: 35px;
  transition: all .3s;
  z-index: 11;
}
@media (max-width: 767px) {
  .cid-uN18uoSnkW .mbr-slider .carousel-control {
    top: 20%;
  }
}
.cid-uN18uoSnkW .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uN18uoSnkW .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uN18uoSnkW .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-uN18uoSnkW .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uN18uoSnkW .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 10px;
  width: 10px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uN18uoSnkW .mbr-slider .carousel-indicators li.active,
.cid-uN18uoSnkW .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uN18uoSnkW .mbr-slider .carousel-indicators li::after,
.cid-uN18uoSnkW .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uN18uoSnkW .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uN18uoSnkW .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uN18uoSnkW .mbr-slider > .container img {
  width: 100%;
}
.cid-uN18uoSnkW .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uN18uoSnkW .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uN18uoSnkW .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uN18uoSnkW .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uN18uoSnkW .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uN18uoSnkW .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-uN18uoSnkW .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uN18uoSnkW .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uN18uoSnkW .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uN18uoSnkW .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uN18uoSnkW .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uN18uoSnkW .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uN18uoSnkW .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uN18uoSnkW .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-uN18uoSnkW .carousel-inner {
  height: 100%;
}
.cid-uN18uoSnkW .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-uN18uoSnkW .image_wrapper {
  height: 950px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-uN18uoSnkW .image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uN18uoSnkW .carousel-item .container-slide {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uN18uoSnkW .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uN18uoSnkW .content-slider-wrap {
    width: 100%!important;
  }
  .cid-uN18uoSnkW .image_wrapper {
    height: 570px;
  }
}
.cid-uN14xiggfE {
  display: flex;
  padding-top: 0px;
  padding-bottom: 45px;
  background: linear-gradient(to bottom, #ffffff, #9b9ba5);
}
@media (min-width: 768px) {
  .cid-uN14xiggfE {
    align-items: flex-start;
  }
  .cid-uN14xiggfE .row {
    justify-content: flex-start;
  }
}
.cid-uN14xiggfE .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uN14xiggfE .mbr-text,
.cid-uN14xiggfE .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-uN14xiggfE .mbr-section-title,
.cid-uN14xiggfE .line {
  color: #232323;
}
.cid-uN14xiggfE h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uN14xiggfE h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uN14xiggfE .mbr-section-subtitle,
.cid-uN14xiggfE .align {
  text-align: left;
  color: #232323;
}
.cid-uN1dz4hd1E {
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  background-color: #e8e8e8;
}
.cid-uN1dz4hd1E .bg-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #ffffff;
  height: 100%;
  width: 30%;
}
.cid-uN1dz4hd1E .card-title {
  color: #61616e;
}
.cid-uN1dz4hd1E .mbr-text,
.cid-uN1dz4hd1E .mbr-section-btn {
  color: #101019;
}
@media (min-width: 992px) {
  .cid-uN1dz4hd1E .text-wrapper {
    padding-left: 5rem;
  }
  .cid-uN1dz4hd1E .image-wrapper img {
    width: 650px;
    height: 615px;
    object-fit: cover;
  }
  .cid-uN1dz4hd1E .item-btn {
    width: 10.6rem;
    height: 10.6rem;
  }
  .cid-uN1dz4hd1E .item-btn:hover {
    color: #ffffff;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uN1dz4hd1E .text-wrapper {
    padding-left: 2rem;
    position: relative;
  }
  .cid-uN1dz4hd1E .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uN1dz4hd1E .item-btn {
    width: 7rem;
    height: 7rem;
  }
}
@media (max-width: 767px) {
  .cid-uN1dz4hd1E .bg-wrapper {
    display: none;
  }
  .cid-uN1dz4hd1E .text-wrapper {
    text-align: center;
  }
  .cid-uN1dz4hd1E .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uN1dz4hd1E .item-btn {
    width: 7rem;
    height: 7rem;
    position: static;
  }
}
.cid-uN1dz4hd1E .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 600px) {
  .cid-uN1dz4hd1E .card-title {
    letter-spacing: -1px;
  }
}
.cid-uN14Pt3yOm {
  display: flex;
  padding-top: 0px;
  padding-bottom: 30px;
  background: linear-gradient(to bottom, #c4c4c8, #f8f8f8);
}
@media (min-width: 768px) {
  .cid-uN14Pt3yOm {
    align-items: flex-start;
  }
  .cid-uN14Pt3yOm .row {
    justify-content: flex-start;
  }
}
.cid-uN14Pt3yOm .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uN14Pt3yOm .mbr-text,
.cid-uN14Pt3yOm .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-uN14Pt3yOm .mbr-section-title,
.cid-uN14Pt3yOm .line {
  color: #232323;
}
.cid-uN14Pt3yOm h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uN14Pt3yOm h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uN14Pt3yOm .mbr-section-subtitle,
.cid-uN14Pt3yOm .align {
  text-align: left;
  color: #232323;
}
.cid-uN3h0I1Szh {
  display: flex;
  padding-top: 0px;
  padding-bottom: 15px;
  background: linear-gradient(to bottom, #ffffff, #c4c4c8);
}
@media (min-width: 768px) {
  .cid-uN3h0I1Szh {
    align-items: flex-start;
  }
  .cid-uN3h0I1Szh .row {
    justify-content: flex-start;
  }
}
.cid-uN3h0I1Szh .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uN3h0I1Szh .mbr-text,
.cid-uN3h0I1Szh .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-uN3h0I1Szh .mbr-section-title,
.cid-uN3h0I1Szh .line {
  color: #232323;
}
.cid-uN3h0I1Szh h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uN3h0I1Szh h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uN3h0I1Szh .mbr-section-subtitle,
.cid-uN3h0I1Szh .align {
  text-align: left;
  color: #232323;
}
.cid-uN16vqCfYu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/plan2-1000.jpg");
}
.cid-uN16vqCfYu .mbr-overlay {
  background: #61616e;
  opacity: 0.8;
}
.cid-uN16vqCfYu .mbr-link {
  opacity: 0;
  color: #ffffff;
  transition: all 0.3s;
  text-align: center;
}
.cid-uN16vqCfYu .item-wrapper {
  overflow: hidden;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  border-radius: 30px;
  flex-flow: column nowrap;
  padding: 2rem;
}
.cid-uN16vqCfYu .item-wrapper:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  z-index: 1;
  width: 100%;
  pointer-events: none;
  height: 100%;
  background: black;
  transition: all 0.3s;
  opacity: 0.3;
}
.cid-uN16vqCfYu .item-wrapper:hover .item-content,
.cid-uN16vqCfYu .item-wrapper:focus-within .item-content {
  opacity: 1;
  transform: translateY(0px);
}
.cid-uN16vqCfYu .item-wrapper:hover .mbr-link,
.cid-uN16vqCfYu .item-wrapper:focus-within .mbr-link {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uN16vqCfYu .item-wrapper .item-content {
    opacity: 1;
    transform: translateY(0px);
  }
  .cid-uN16vqCfYu .item-wrapper .item-img {
    transform: scale(1.1);
  }
  .cid-uN16vqCfYu .item-wrapper:before {
    opacity: 0.5;
  }
  .cid-uN16vqCfYu .item-wrapper .mbr-link {
    opacity: 1;
  }
}
.cid-uN16vqCfYu .item-img {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
  height: 100%;
  width: 100%;
  z-index: 0;
}
.cid-uN16vqCfYu .item-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.cid-uN16vqCfYu .item-content {
  z-index: 3;
  opacity: 1;
  transition: all 0.3s;
  position: relative;
  transform: translateY(50px);
}
.cid-uN16vqCfYu .item:focus,
.cid-uN16vqCfYu span:focus {
  outline: none;
}
.cid-uN16vqCfYu .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uN16vqCfYu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uN16vqCfYu .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uN16vqCfYu .mbr-text,
.cid-uN16vqCfYu .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uN16vqCfYu .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uN1bHVuwrn {
  display: flex;
  padding-top: 0px;
  padding-bottom: 45px;
  background: linear-gradient(to bottom, #c4c4c8, #f8f8f8);
}
@media (min-width: 768px) {
  .cid-uN1bHVuwrn {
    align-items: flex-start;
  }
  .cid-uN1bHVuwrn .row {
    justify-content: flex-start;
  }
}
.cid-uN1bHVuwrn .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uN1bHVuwrn .mbr-text,
.cid-uN1bHVuwrn .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-uN1bHVuwrn .mbr-section-title,
.cid-uN1bHVuwrn .line {
  color: #232323;
}
.cid-uN1bHVuwrn h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uN1bHVuwrn h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uN1bHVuwrn .mbr-section-subtitle,
.cid-uN1bHVuwrn .align {
  text-align: left;
  color: #232323;
}
.cid-uN3cyM0rRV {
  background-color: #f8f8f8;
}
@media (max-width: 768px) {
  .cid-uN3cyM0rRV {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.cid-uN3cyM0rRV .container-fluid {
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 992px) {
  .cid-uN3cyM0rRV .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uN3cyM0rRV .row {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-uN3cyM0rRV .row {
    position: relative;
  }
}
.cid-uN3cyM0rRV .custom-row {
  display: flex;
  max-width: 1200px;
  padding-left: 12px;
  padding-right: 12px;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uN3cyM0rRV .custom-row {
    padding-left: 16px;
    padding-right: 16px;
    flex-wrap: nowrap;
  }
}
@media (max-width: 767px) {
  .cid-uN3cyM0rRV .map-col {
    height: 650px;
    order: 2;
    padding: 0!important;
  }
}
.cid-uN3cyM0rRV .col-text {
  position: relative;
}
.cid-uN3cyM0rRV .col-text .radial-svg {
  display: none;
}
@media (max-width: 767px) {
  .cid-uN3cyM0rRV .col-text {
    order: 0;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .cid-uN3cyM0rRV .col-text {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media (min-width: 992px) {
  .cid-uN3cyM0rRV .col-text .radial-svg {
    display: block;
    position: absolute;
    top: 0;
    right: 84%;
    transform: scale(-1, 1);
    height: 100%;
    width: 150px;
    z-index: 1;
  }
  .cid-uN3cyM0rRV .col-text .radial-svg path {
    fill: #f8f8f8;
  }
}
.cid-uN3cyM0rRV .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .cid-uN3cyM0rRV .text-wrapper {
    padding-left: 4rem;
  }
}
.cid-uN3cyM0rRV .text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.cid-uN3cyM0rRV .label-text {
  width: 100%;
  letter-spacing: 2px;
  color: #0057fc;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .cid-uN3cyM0rRV .label-text {
    text-align: center;
  }
}
.cid-uN3cyM0rRV .mbr-section-title {
  margin-bottom: 32px;
  width: 100%;
  color: #111111;
}
@media (max-width: 767px) {
  .cid-uN3cyM0rRV .mbr-section-title {
    text-align: center;
    margin-bottom: 20px;
  }
}
.cid-uN3cyM0rRV .contact-container {
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uN3cyM0rRV .contact-container {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-uN3cyM0rRV .contact-container .phone-container {
  padding: 16px 25px;
  background-color: #0057fc;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-right: 16px;
}
@media (max-width: 767px) {
  .cid-uN3cyM0rRV .contact-container .phone-container {
    width: 100%;
    margin-right: 0;
  }
}
.cid-uN3cyM0rRV .contact-container .email-container {
  padding: 16px 25px;
  background-color: #111111;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-right: 16px;
}
@media (max-width: 767px) {
  .cid-uN3cyM0rRV .contact-container .email-container {
    width: 100%;
    margin-right: 0;
  }
}
.cid-uN3cyM0rRV .contact-text {
  color: #ffffff;
}
.cid-uN3cyM0rRV .cards-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 0;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cid-uN3cyM0rRV .cards-container {
    text-align: center;
  }
}
.cid-uN3cyM0rRV .cards-title {
  margin-bottom: 12px;
}
.cid-uN3cyM0rRV .card {
  padding: 9px 0;
}
.cid-uN3cyM0rRV .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .cid-uN3cyM0rRV .card-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-uN3cyM0rRV .card-title {
    font-size: 1.5rem !important;
  }
}
.cid-uN3cyM0rRV .icon-box {
  margin-right: 12px;
}
.cid-uN3cyM0rRV .icon-box .mbr-iconfont {
  color: #111111;
}
.cid-uN3cyM0rRV .card-text {
  color: #555555;
  letter-spacing: inherit;
  flex-grow: 1;
}
.cid-uN3cyM0rRV .btn-container {
  width: 100%;
}
.cid-uN3cyM0rRV .mbr-section-btn {
  margin-top: 10px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uN3cyM0rRV .mbr-section-btn {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }
}
.cid-uN3cyM0rRV .mbr-section-btn .btn {
  padding: 0;
  transition: all 0.3s ease 0s;
}
.cid-uN3cyM0rRV .mbr-section-btn .btn span {
  margin-left: 0;
  padding-left: 0.5rem;
  transition: all 0.3s ease 0s;
}
.cid-uN3cyM0rRV .mbr-section-btn .btn:hover span {
  padding-left: 1.25rem;
}
.cid-uN3cyM0rRV .google-map {
  position: absolute;
}
@media (max-width: 767px) {
  .cid-uN3cyM0rRV .google-map {
    height: 650px;
    width: 100%;
    padding: 0;
    left: 0;
    bottom: 0;
  }
}
@media (min-width: 768px) {
  .cid-uN3cyM0rRV .google-map {
    height: 100%;
    width: 50%;
    padding: 0;
    left: 0;
    top: 0;
  }
}
.cid-uN3cyM0rRV .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uN3cyM0rRV .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uN3cyM0rRV .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uN3cyM0rRV .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uN3cyM0rRV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN3cyM0rRV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN3gsT2mED {
  display: flex;
  padding-top: 0px;
  padding-bottom: 45px;
  background: linear-gradient(to bottom, #f8f8f8, #61616e);
}
@media (min-width: 768px) {
  .cid-uN3gsT2mED {
    align-items: flex-start;
  }
  .cid-uN3gsT2mED .row {
    justify-content: flex-start;
  }
}
.cid-uN3gsT2mED .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uN3gsT2mED .mbr-text,
.cid-uN3gsT2mED .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-uN3gsT2mED .mbr-section-title,
.cid-uN3gsT2mED .line {
  color: #232323;
}
.cid-uN3gsT2mED h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uN3gsT2mED h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uN3gsT2mED .mbr-section-subtitle,
.cid-uN3gsT2mED .align {
  text-align: left;
  color: #232323;
}
.cid-uMYpknUoUp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #61616e;
}
.cid-uMYpknUoUp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMYpknUoUp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMYpknUoUp .row {
  justify-content: space-between;
}
.cid-uMYpknUoUp .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uMYpknUoUp .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uMYpknUoUp .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uMYpknUoUp .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uMYpknUoUp .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-uMYpknUoUp .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uMYpknUoUp .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uMYpknUoUp .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uMYpknUoUp .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uMYpknUoUp .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-uMYpknUoUp .list-wrapper .list .item-wrap:hover,
.cid-uMYpknUoUp .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uMYpknUoUp .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uMYpknUoUp .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uMYpknUoUp .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uMYpknUoUp .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-uMYpknUoUp .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-uMYpknUoUp .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uMYpknUoUp .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uMYpknUoUp .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uMYpknUoUp .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uMYpknUoUp .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uMYpknUoUp .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uMYpknUoUp .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-uMYpknUoUp .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uMYpknUoUp .mbr-section-title {
  color: #000000;
}
.cid-uMYpknUoUp .mbr-text {
  color: #ffffff;
}
.cid-uMYpknUoUp .list {
  color: #000000;
}
.cid-uMYpknUoUp .mbr-desc {
  color: #000000;
}
.cid-uMYpknUoUp .mbr-copy {
  color: #000000;
}
.cid-uMYpknUoUp .mbr-desc,
.cid-uMYpknUoUp .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-uMYpknUoUp .mbr-copy,
.cid-uMYpknUoUp .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-uMYpknUoUp .mbr-section-title,
.cid-uMYpknUoUp .mbr-section-btn {
  color: #ffffff;
}
.cid-uMYpknUoUp .list,
.cid-uMYpknUoUp .item-wrap {
  color: #ffffff;
}
.cid-uNJ27z232p {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #254b45;
}
.cid-uNJ27z232p .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uNJ27z232p .modal-body .close {
  background: #1b1b1b;
}
.cid-uNJ27z232p .modal-body .close span {
  font-style: normal;
}
@media (min-width: 992px) {
  .cid-uNJ27z232p .align-center {
    text-align: left;
    max-width: 850px;
  }
  .cid-uNJ27z232p .carousel-caption {
    justify-content: flex-start !important;
    padding-left: 5rem;
  }
}
.cid-uNJ27z232p .mbr-slider .carousel-control {
  background: black!important;
  border-radius: 6px;
  height: 100px;
  width: 50px;
}
.cid-uNJ27z232p .mbri-right:before {
  content: "\e909";
  color: white;
}
.cid-uNJ27z232p .mbri-left:before {
  content: "\e90a";
  color: white;
}
.cid-uNJ27z232p .container {
  max-width: 100%;
  padding: 0;
}
.cid-uNJ27z232p .content-slider-wrap {
  width: 100%;
}
.cid-uNJ27z232p .carousel-inner > .active,
.cid-uNJ27z232p .carousel-inner > .next,
.cid-uNJ27z232p .carousel-inner > .prev {
  display: -webkit-flex;
}
.cid-uNJ27z232p .carousel-control .icon-next,
.cid-uNJ27z232p .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uNJ27z232p .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uNJ27z232p .mbr-iconfont {
  color: black;
  font-size: 2rem!important;
  font-family: 'Moririse2' !important;
  font-weight: 600;
}
.cid-uNJ27z232p .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uNJ27z232p .boxed-slider > div {
  position: relative;
}
.cid-uNJ27z232p .container img {
  width: 100%;
}
.cid-uNJ27z232p .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uNJ27z232p .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uNJ27z232p .mbr-table-cell {
  padding: 0;
}
.cid-uNJ27z232p .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uNJ27z232p .carousel-caption {
  top: auto;
  right: 0;
  bottom: 2rem;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uNJ27z232p .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uNJ27z232p .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-uNJ27z232p .carousel-item.active.right,
.cid-uNJ27z232p .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uNJ27z232p .carousel-item.active.left,
.cid-uNJ27z232p .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uNJ27z232p .carousel-item.active,
.cid-uNJ27z232p .carousel-item.next.left,
.cid-uNJ27z232p .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-uNJ27z232p .mbr-slider .carousel-control {
  top: 50%;
  margin-top: -1.5rem;
  font-size: 35px;
  transition: all .3s;
  z-index: 11;
}
@media (max-width: 767px) {
  .cid-uNJ27z232p .mbr-slider .carousel-control {
    top: 20%;
  }
}
.cid-uNJ27z232p .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uNJ27z232p .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uNJ27z232p .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-uNJ27z232p .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uNJ27z232p .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 10px;
  width: 10px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uNJ27z232p .mbr-slider .carousel-indicators li.active,
.cid-uNJ27z232p .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uNJ27z232p .mbr-slider .carousel-indicators li::after,
.cid-uNJ27z232p .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uNJ27z232p .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uNJ27z232p .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uNJ27z232p .mbr-slider > .container img {
  width: 100%;
}
.cid-uNJ27z232p .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uNJ27z232p .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uNJ27z232p .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uNJ27z232p .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uNJ27z232p .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uNJ27z232p .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-uNJ27z232p .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uNJ27z232p .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uNJ27z232p .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uNJ27z232p .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uNJ27z232p .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uNJ27z232p .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uNJ27z232p .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uNJ27z232p .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-uNJ27z232p .carousel-inner {
  height: 100%;
}
.cid-uNJ27z232p .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-uNJ27z232p .image_wrapper {
  height: 950px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-uNJ27z232p .image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uNJ27z232p .carousel-item .container-slide {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uNJ27z232p .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uNJ27z232p .content-slider-wrap {
    width: 100%!important;
  }
  .cid-uNJ27z232p .image_wrapper {
    height: 570px;
  }
}
.cid-uMYma9ud5V {
  z-index: 1000;
  width: 100%;
}
.cid-uMYma9ud5V nav.navbar {
  position: fixed;
}
.cid-uMYma9ud5V .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-uMYma9ud5V .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMYma9ud5V .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMYma9ud5V .dropdown-item:hover,
.cid-uMYma9ud5V .dropdown-item:focus {
  background: #17171a !important;
  color: white !important;
}
.cid-uMYma9ud5V .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMYma9ud5V .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMYma9ud5V .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMYma9ud5V .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMYma9ud5V .nav-link {
  position: relative;
}
.cid-uMYma9ud5V .container {
  display: flex;
  margin: auto;
}
.cid-uMYma9ud5V .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMYma9ud5V .dropdown-menu,
.cid-uMYma9ud5V .navbar.opened {
  background: #7b7b8b !important;
}
.cid-uMYma9ud5V .nav-item:focus,
.cid-uMYma9ud5V .nav-link:focus {
  outline: none;
}
.cid-uMYma9ud5V .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMYma9ud5V .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMYma9ud5V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMYma9ud5V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMYma9ud5V .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMYma9ud5V .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMYma9ud5V .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(123, 123, 139, 0.6);
}
.cid-uMYma9ud5V .navbar.opened {
  transition: all 0.3s;
}
.cid-uMYma9ud5V .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMYma9ud5V .navbar .navbar-logo img {
  width: auto;
}
.cid-uMYma9ud5V .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMYma9ud5V .navbar.collapsed {
  justify-content: center;
}
.cid-uMYma9ud5V .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMYma9ud5V .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMYma9ud5V .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uMYma9ud5V .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMYma9ud5V .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMYma9ud5V .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-uMYma9ud5V .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMYma9ud5V .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMYma9ud5V .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMYma9ud5V .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMYma9ud5V .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMYma9ud5V .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMYma9ud5V .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMYma9ud5V .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-uMYma9ud5V .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMYma9ud5V .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMYma9ud5V .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMYma9ud5V .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMYma9ud5V .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMYma9ud5V .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMYma9ud5V .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMYma9ud5V .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMYma9ud5V .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMYma9ud5V .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uMYma9ud5V .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMYma9ud5V .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMYma9ud5V .dropdown-item.active,
.cid-uMYma9ud5V .dropdown-item:active {
  background-color: transparent;
}
.cid-uMYma9ud5V .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMYma9ud5V .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMYma9ud5V .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMYma9ud5V .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #7b7b8b;
}
.cid-uMYma9ud5V .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMYma9ud5V .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMYma9ud5V ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMYma9ud5V .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMYma9ud5V button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMYma9ud5V button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMYma9ud5V button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMYma9ud5V button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMYma9ud5V button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMYma9ud5V button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMYma9ud5V nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMYma9ud5V nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMYma9ud5V nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMYma9ud5V nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMYma9ud5V .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMYma9ud5V a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMYma9ud5V .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-uMYma9ud5V .navbar {
    height: 70px;
  }
  .cid-uMYma9ud5V .navbar.opened {
    height: auto;
  }
  .cid-uMYma9ud5V .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMYnUad2iW {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
  overflow: hidden;
}
.cid-uMYnUad2iW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMYnUad2iW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMYnUad2iW .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uMYnUad2iW .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uMYnUad2iW .container {
    padding: 0 30px;
  }
}
.cid-uMYnUad2iW .card {
  justify-content: center;
}
.cid-uMYnUad2iW .title-wrapper {
  padding: 0 120px;
}
@media (max-width: 1440px) {
  .cid-uMYnUad2iW .title-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-uMYnUad2iW .title-wrapper {
    padding: 0;
  }
}
.cid-uMYnUad2iW .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uMYnUad2iW .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uMYnUad2iW .content-wrapper {
  padding: 0 88px 0 120px;
  padding: 0 120px 0 88px;
}
@media (max-width: 1440px) {
  .cid-uMYnUad2iW .content-wrapper {
    padding: 0 60px 0 28px;
  }
}
@media (max-width: 992px) {
  .cid-uMYnUad2iW .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 1440px) {
  .cid-uMYnUad2iW .content-wrapper {
    padding: 0 28px 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-uMYnUad2iW .content-wrapper {
    padding: 0;
  }
}
.cid-uMYnUad2iW .content-wrapper .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  background-color: transparent;
  padding: 0;
}
.cid-uMYnUad2iW .content-wrapper .panel-group .card:hover::before,
.cid-uMYnUad2iW .content-wrapper .panel-group .card:focus::before,
.cid-uMYnUad2iW .content-wrapper .panel-group .card:hover::after,
.cid-uMYnUad2iW .content-wrapper .panel-group .card:focus::after {
  opacity: 1;
}
.cid-uMYnUad2iW .content-wrapper .panel-group .card::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 0;
  width: 20px;
  height: 6px;
  background-color: #254b45;
  opacity: .2;
  transition: all 0.3s ease-in-out;
}
.cid-uMYnUad2iW .content-wrapper .panel-group .card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #254b45;
  opacity: .2;
  transition: all 0.3s ease-in-out;
}
.cid-uMYnUad2iW .content-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uMYnUad2iW .content-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 60px 0;
}
@media (max-width: 992px) {
  .cid-uMYnUad2iW .content-wrapper .panel-group .card .card-header .panel-title {
    padding: 40px 0;
  }
}
.cid-uMYnUad2iW .content-wrapper .panel-group .card .card-header .panel-title .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uMYnUad2iW .content-wrapper .panel-group .card .card-header .panel-title .title-wrap {
    display: block;
  }
}
.cid-uMYnUad2iW .content-wrapper .panel-group .card .card-header .panel-title .title-wrap .panel-number {
  min-width: 120px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uMYnUad2iW .content-wrapper .panel-group .card .card-header .panel-title .title-wrap .panel-number {
    display: none;
  }
}
.cid-uMYnUad2iW .content-wrapper .panel-group .card .card-header .panel-title .title-wrap .panel-title-edit {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-bottom: 0;
  transition: all 0.5s ease-in-out;
}
.cid-uMYnUad2iW .content-wrapper .panel-group .card .card-header .panel-title .title-wrap .panel-title-edit::before {
  content: '';
  position: absolute;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #254b45;
  transition: all 0.5s ease-in-out;
}
.cid-uMYnUad2iW .content-wrapper .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 20px;
  height: 20px;
  min-width: 20px;
  transition: all 0.3s ease-in-out;
  color: #254b45;
  margin-left: 20px;
  opacity: .2;
}
.cid-uMYnUad2iW .content-wrapper .panel-group .card .card-header .panel-title:hover .title-wrap .panel-title-edit {
  padding-left: 120px;
}
@media (max-width: 992px) {
  .cid-uMYnUad2iW .content-wrapper .panel-group .card .card-header .panel-title:hover .title-wrap .panel-title-edit {
    padding-left: 60px;
  }
}
.cid-uMYnUad2iW .content-wrapper .panel-group .card .card-header .panel-title:hover .title-wrap .panel-title-edit::before {
  width: 90px;
}
@media (max-width: 992px) {
  .cid-uMYnUad2iW .content-wrapper .panel-group .card .card-header .panel-title:hover .title-wrap .panel-title-edit::before {
    width: 40px;
  }
}
.cid-uMYnUad2iW .content-wrapper .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  opacity: 1;
}
.cid-uMYnUad2iW .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .title-wrap .panel-title-edit {
  padding-left: 120px;
}
@media (max-width: 992px) {
  .cid-uMYnUad2iW .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .title-wrap .panel-title-edit {
    padding-left: 60px;
  }
}
.cid-uMYnUad2iW .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .title-wrap .panel-title-edit::before {
  width: 90px;
}
@media (max-width: 992px) {
  .cid-uMYnUad2iW .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .title-wrap .panel-title-edit::before {
    width: 40px;
  }
}
.cid-uMYnUad2iW .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
  opacity: 1;
}
.cid-uMYnUad2iW .content-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 0 0 60px 120px;
}
@media (max-width: 992px) {
  .cid-uMYnUad2iW .content-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 0 40px 0;
  }
}
.cid-uMYnUad2iW .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uMYnUad2iW .image-wrapper {
  position: relative;
  height: 840px;
}
@media (max-width: 992px) {
  .cid-uMYnUad2iW .image-wrapper {
    height: 350px;
    margin-bottom: 40px;
  }
}
.cid-uMYnUad2iW .image-wrapper img {
  position: absolute;
  height: 100%;
  width: 550px;
  top: 0;
  left: 2rem;
  object-fit: cover;
  left: auto;
  right: 2rem;
}
@media (max-width: 992px) {
  .cid-uMYnUad2iW .image-wrapper img {
    left: 0;
  }
}
@media (max-width: 992px) {
  .cid-uMYnUad2iW .image-wrapper img {
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.cid-uMYnUad2iW .image-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 2rem;
  width: 118px;
  height: 118px;
  background-image: linear-gradient(-135deg, #9b9ba5 50%, #61616e 50%);
  z-index: 1;
  left: auto;
  right: 2rem;
  background-image: linear-gradient(135deg, #9b9ba5 50%, #61616e 50%);
}
@media (max-width: 992px) {
  .cid-uMYnUad2iW .image-wrapper::before {
    left: 0;
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uMYnUad2iW .image-wrapper::before {
    left: auto;
    right: 0;
  }
}
.cid-uMYnUad2iW .image-wrapper a {
  width: 100%;
  height: 100%;
  position: absolute;
}
.cid-uMYnUad2iW .mbr-section-title {
  color: #254b45;
}
.cid-uMYnUad2iW .panel-number {
  color: #254b45;
}
.cid-uMYnUad2iW .panel-title-edit {
  color: #254b45;
}
.cid-uMYnUad2iW .panel-text {
  color: #254b45;
}
.cid-uMYoGUUq5h {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8e8e8;
  overflow: hidden;
}
.cid-uMYoGUUq5h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMYoGUUq5h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMYoGUUq5h .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uMYoGUUq5h .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uMYoGUUq5h .container {
    padding: 0 30px;
  }
}
.cid-uMYoGUUq5h .card {
  justify-content: center;
}
.cid-uMYoGUUq5h .title-wrapper {
  padding: 0 120px;
}
@media (max-width: 1440px) {
  .cid-uMYoGUUq5h .title-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-uMYoGUUq5h .title-wrapper {
    padding: 0;
  }
}
.cid-uMYoGUUq5h .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uMYoGUUq5h .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uMYoGUUq5h .content-wrapper {
  padding: 0 88px 0 120px;
}
@media (max-width: 1440px) {
  .cid-uMYoGUUq5h .content-wrapper {
    padding: 0 28px 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-uMYoGUUq5h .content-wrapper {
    padding: 0;
  }
}
.cid-uMYoGUUq5h .content-wrapper .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  background-color: transparent;
  padding: 0;
}
.cid-uMYoGUUq5h .content-wrapper .panel-group .card:hover::before,
.cid-uMYoGUUq5h .content-wrapper .panel-group .card:focus::before,
.cid-uMYoGUUq5h .content-wrapper .panel-group .card:hover::after,
.cid-uMYoGUUq5h .content-wrapper .panel-group .card:focus::after {
  opacity: 1;
}
.cid-uMYoGUUq5h .content-wrapper .panel-group .card::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 0;
  width: 20px;
  height: 6px;
  background-color: #254b45;
  opacity: .2;
  transition: all 0.3s ease-in-out;
}
.cid-uMYoGUUq5h .content-wrapper .panel-group .card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #254b45;
  opacity: .2;
  transition: all 0.3s ease-in-out;
}
.cid-uMYoGUUq5h .content-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uMYoGUUq5h .content-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 60px 0;
}
@media (max-width: 992px) {
  .cid-uMYoGUUq5h .content-wrapper .panel-group .card .card-header .panel-title {
    padding: 40px 0;
  }
}
.cid-uMYoGUUq5h .content-wrapper .panel-group .card .card-header .panel-title .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uMYoGUUq5h .content-wrapper .panel-group .card .card-header .panel-title .title-wrap {
    display: block;
  }
}
.cid-uMYoGUUq5h .content-wrapper .panel-group .card .card-header .panel-title .title-wrap .panel-number {
  min-width: 120px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uMYoGUUq5h .content-wrapper .panel-group .card .card-header .panel-title .title-wrap .panel-number {
    display: none;
  }
}
.cid-uMYoGUUq5h .content-wrapper .panel-group .card .card-header .panel-title .title-wrap .panel-title-edit {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-bottom: 0;
  transition: all 0.5s ease-in-out;
}
.cid-uMYoGUUq5h .content-wrapper .panel-group .card .card-header .panel-title .title-wrap .panel-title-edit::before {
  content: '';
  position: absolute;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #254b45;
  transition: all 0.5s ease-in-out;
}
.cid-uMYoGUUq5h .content-wrapper .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 20px;
  height: 20px;
  min-width: 20px;
  transition: all 0.3s ease-in-out;
  color: #254b45;
  margin-left: 20px;
  opacity: .2;
}
.cid-uMYoGUUq5h .content-wrapper .panel-group .card .card-header .panel-title:hover .title-wrap .panel-title-edit {
  padding-left: 120px;
}
@media (max-width: 992px) {
  .cid-uMYoGUUq5h .content-wrapper .panel-group .card .card-header .panel-title:hover .title-wrap .panel-title-edit {
    padding-left: 60px;
  }
}
.cid-uMYoGUUq5h .content-wrapper .panel-group .card .card-header .panel-title:hover .title-wrap .panel-title-edit::before {
  width: 90px;
}
@media (max-width: 992px) {
  .cid-uMYoGUUq5h .content-wrapper .panel-group .card .card-header .panel-title:hover .title-wrap .panel-title-edit::before {
    width: 40px;
  }
}
.cid-uMYoGUUq5h .content-wrapper .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  opacity: 1;
}
.cid-uMYoGUUq5h .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .title-wrap .panel-title-edit {
  padding-left: 120px;
}
@media (max-width: 992px) {
  .cid-uMYoGUUq5h .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .title-wrap .panel-title-edit {
    padding-left: 60px;
  }
}
.cid-uMYoGUUq5h .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .title-wrap .panel-title-edit::before {
  width: 90px;
}
@media (max-width: 992px) {
  .cid-uMYoGUUq5h .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .title-wrap .panel-title-edit::before {
    width: 40px;
  }
}
.cid-uMYoGUUq5h .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
  opacity: 1;
}
.cid-uMYoGUUq5h .content-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 0 0 60px 120px;
}
@media (max-width: 992px) {
  .cid-uMYoGUUq5h .content-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 0 40px 0;
  }
}
.cid-uMYoGUUq5h .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uMYoGUUq5h .image-wrapper {
  position: relative;
  height: 840px;
}
@media (max-width: 992px) {
  .cid-uMYoGUUq5h .image-wrapper {
    height: 350px;
    margin-bottom: 40px;
  }
}
.cid-uMYoGUUq5h .image-wrapper img {
  position: absolute;
  height: 100%;
  width: 550px;
  top: 0;
  left: 2rem;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uMYoGUUq5h .image-wrapper img {
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.cid-uMYoGUUq5h .image-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 2rem;
  width: 118px;
  height: 118px;
  background-image: linear-gradient(-135deg, #71eac6 50%, #e1eeec 50%);
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uMYoGUUq5h .image-wrapper::before {
    left: 0;
    width: 50px;
    height: 50px;
  }
}
.cid-uMYoGUUq5h .image-wrapper a {
  width: 100%;
  height: 100%;
  position: absolute;
}
.cid-uMYoGUUq5h .mbr-section-title {
  color: #254b45;
}
.cid-uMYoGUUq5h .panel-number {
  color: #254b45;
}
.cid-uMYoGUUq5h .panel-title-edit {
  color: #254b45;
}
.cid-uMYoGUUq5h .panel-text {
  color: #254b45;
}
.cid-uMYpknUoUp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #61616e;
}
.cid-uMYpknUoUp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMYpknUoUp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMYpknUoUp .row {
  justify-content: space-between;
}
.cid-uMYpknUoUp .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uMYpknUoUp .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uMYpknUoUp .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uMYpknUoUp .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uMYpknUoUp .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-uMYpknUoUp .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uMYpknUoUp .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uMYpknUoUp .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uMYpknUoUp .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uMYpknUoUp .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-uMYpknUoUp .list-wrapper .list .item-wrap:hover,
.cid-uMYpknUoUp .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uMYpknUoUp .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uMYpknUoUp .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uMYpknUoUp .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uMYpknUoUp .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-uMYpknUoUp .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-uMYpknUoUp .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uMYpknUoUp .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uMYpknUoUp .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uMYpknUoUp .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uMYpknUoUp .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uMYpknUoUp .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uMYpknUoUp .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-uMYpknUoUp .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uMYpknUoUp .mbr-section-title {
  color: #000000;
}
.cid-uMYpknUoUp .mbr-text {
  color: #ffffff;
}
.cid-uMYpknUoUp .list {
  color: #000000;
}
.cid-uMYpknUoUp .mbr-desc {
  color: #000000;
}
.cid-uMYpknUoUp .mbr-copy {
  color: #000000;
}
.cid-uMYpknUoUp .mbr-desc,
.cid-uMYpknUoUp .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-uMYpknUoUp .mbr-copy,
.cid-uMYpknUoUp .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-uMYpknUoUp .mbr-section-title,
.cid-uMYpknUoUp .mbr-section-btn {
  color: #ffffff;
}
.cid-uMYpknUoUp .list,
.cid-uMYpknUoUp .item-wrap {
  color: #ffffff;
}
.cid-uN0va4NiXt {
  z-index: 1000;
  width: 100%;
}
.cid-uN0va4NiXt nav.navbar {
  position: fixed;
}
.cid-uN0va4NiXt .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-uN0va4NiXt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uN0va4NiXt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uN0va4NiXt .dropdown-item:hover,
.cid-uN0va4NiXt .dropdown-item:focus {
  background: #17171a !important;
  color: white !important;
}
.cid-uN0va4NiXt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uN0va4NiXt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uN0va4NiXt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uN0va4NiXt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uN0va4NiXt .nav-link {
  position: relative;
}
.cid-uN0va4NiXt .container {
  display: flex;
  margin: auto;
}
.cid-uN0va4NiXt .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uN0va4NiXt .dropdown-menu,
.cid-uN0va4NiXt .navbar.opened {
  background: #7b7b8b !important;
}
.cid-uN0va4NiXt .nav-item:focus,
.cid-uN0va4NiXt .nav-link:focus {
  outline: none;
}
.cid-uN0va4NiXt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uN0va4NiXt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uN0va4NiXt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uN0va4NiXt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uN0va4NiXt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uN0va4NiXt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uN0va4NiXt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(123, 123, 139, 0.6);
}
.cid-uN0va4NiXt .navbar.opened {
  transition: all 0.3s;
}
.cid-uN0va4NiXt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uN0va4NiXt .navbar .navbar-logo img {
  width: auto;
}
.cid-uN0va4NiXt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uN0va4NiXt .navbar.collapsed {
  justify-content: center;
}
.cid-uN0va4NiXt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uN0va4NiXt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uN0va4NiXt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uN0va4NiXt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uN0va4NiXt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uN0va4NiXt .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-uN0va4NiXt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uN0va4NiXt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uN0va4NiXt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uN0va4NiXt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uN0va4NiXt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uN0va4NiXt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uN0va4NiXt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uN0va4NiXt .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-uN0va4NiXt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uN0va4NiXt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uN0va4NiXt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uN0va4NiXt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uN0va4NiXt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uN0va4NiXt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uN0va4NiXt .navbar.navbar-short {
  min-height: 60px;
}
.cid-uN0va4NiXt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uN0va4NiXt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uN0va4NiXt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uN0va4NiXt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uN0va4NiXt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uN0va4NiXt .dropdown-item.active,
.cid-uN0va4NiXt .dropdown-item:active {
  background-color: transparent;
}
.cid-uN0va4NiXt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uN0va4NiXt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uN0va4NiXt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uN0va4NiXt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #7b7b8b;
}
.cid-uN0va4NiXt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uN0va4NiXt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uN0va4NiXt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uN0va4NiXt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uN0va4NiXt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uN0va4NiXt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uN0va4NiXt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uN0va4NiXt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN0va4NiXt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN0va4NiXt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uN0va4NiXt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN0va4NiXt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uN0va4NiXt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uN0va4NiXt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN0va4NiXt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uN0va4NiXt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uN0va4NiXt .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-uN0va4NiXt .navbar {
    height: 70px;
  }
  .cid-uN0va4NiXt .navbar.opened {
    height: auto;
  }
  .cid-uN0va4NiXt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uN3bzVeLZy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #254b45;
}
.cid-uN3bzVeLZy .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uN3bzVeLZy .modal-body .close {
  background: #1b1b1b;
}
.cid-uN3bzVeLZy .modal-body .close span {
  font-style: normal;
}
@media (min-width: 992px) {
  .cid-uN3bzVeLZy .align-center {
    text-align: left;
    max-width: 850px;
  }
  .cid-uN3bzVeLZy .carousel-caption {
    justify-content: flex-start !important;
    padding-left: 5rem;
  }
}
.cid-uN3bzVeLZy .mbr-slider .carousel-control {
  background: black!important;
  border-radius: 6px;
  height: 100px;
  width: 50px;
}
.cid-uN3bzVeLZy .mbri-right:before {
  content: "\e909";
  color: white;
}
.cid-uN3bzVeLZy .mbri-left:before {
  content: "\e90a";
  color: white;
}
.cid-uN3bzVeLZy .container {
  max-width: 100%;
  padding: 0;
}
.cid-uN3bzVeLZy .content-slider-wrap {
  width: 100%;
}
.cid-uN3bzVeLZy .carousel-inner > .active,
.cid-uN3bzVeLZy .carousel-inner > .next,
.cid-uN3bzVeLZy .carousel-inner > .prev {
  display: -webkit-flex;
}
.cid-uN3bzVeLZy .carousel-control .icon-next,
.cid-uN3bzVeLZy .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uN3bzVeLZy .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uN3bzVeLZy .mbr-iconfont {
  color: black;
  font-size: 2rem!important;
  font-family: 'Moririse2' !important;
  font-weight: 600;
}
.cid-uN3bzVeLZy .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uN3bzVeLZy .boxed-slider > div {
  position: relative;
}
.cid-uN3bzVeLZy .container img {
  width: 100%;
}
.cid-uN3bzVeLZy .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uN3bzVeLZy .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uN3bzVeLZy .mbr-table-cell {
  padding: 0;
}
.cid-uN3bzVeLZy .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uN3bzVeLZy .carousel-caption {
  top: auto;
  right: 0;
  bottom: 2rem;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uN3bzVeLZy .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uN3bzVeLZy .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-uN3bzVeLZy .carousel-item.active.right,
.cid-uN3bzVeLZy .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uN3bzVeLZy .carousel-item.active.left,
.cid-uN3bzVeLZy .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uN3bzVeLZy .carousel-item.active,
.cid-uN3bzVeLZy .carousel-item.next.left,
.cid-uN3bzVeLZy .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-uN3bzVeLZy .mbr-slider .carousel-control {
  top: 50%;
  margin-top: -1.5rem;
  font-size: 35px;
  transition: all .3s;
  z-index: 11;
}
@media (max-width: 767px) {
  .cid-uN3bzVeLZy .mbr-slider .carousel-control {
    top: 20%;
  }
}
.cid-uN3bzVeLZy .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uN3bzVeLZy .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uN3bzVeLZy .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-uN3bzVeLZy .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uN3bzVeLZy .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 10px;
  width: 10px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uN3bzVeLZy .mbr-slider .carousel-indicators li.active,
.cid-uN3bzVeLZy .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uN3bzVeLZy .mbr-slider .carousel-indicators li::after,
.cid-uN3bzVeLZy .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uN3bzVeLZy .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uN3bzVeLZy .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uN3bzVeLZy .mbr-slider > .container img {
  width: 100%;
}
.cid-uN3bzVeLZy .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uN3bzVeLZy .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uN3bzVeLZy .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uN3bzVeLZy .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uN3bzVeLZy .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uN3bzVeLZy .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-uN3bzVeLZy .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uN3bzVeLZy .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uN3bzVeLZy .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uN3bzVeLZy .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uN3bzVeLZy .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uN3bzVeLZy .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uN3bzVeLZy .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uN3bzVeLZy .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-uN3bzVeLZy .carousel-inner {
  height: 100%;
}
.cid-uN3bzVeLZy .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-uN3bzVeLZy .image_wrapper {
  height: 880px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-uN3bzVeLZy .image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uN3bzVeLZy .carousel-item .container-slide {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uN3bzVeLZy .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uN3bzVeLZy .content-slider-wrap {
    width: 100%!important;
  }
  .cid-uN3bzVeLZy .image_wrapper {
    height: 528px;
  }
}
.cid-uN0va5fq53 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uN0va5fq53 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uN0va5fq53 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uN0va5fq53 .text-wrapper {
    padding: 0 5.5rem;
    margin-bottom: 3rem;
    padding: 0 4rem;
  }
}
@media (max-width: 768px) {
  .cid-uN0va5fq53 .text-wrapper {
    margin-bottom: 0;
  }
}
.cid-uN0va5fq53 .item-btn {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  position: absolute;
  top: -4.5rem;
  right: 2.5rem;
}
@media (max-width: 992px) {
  .cid-uN0va5fq53 .item-btn {
    width: 6rem;
    height: 6rem;
    top: -3.5rem;
    right: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uN0va5fq53 .item-btn {
    width: 4rem;
    height: 4rem;
    top: -2.5rem;
    right: 1.5rem;
  }
}
.cid-uN0va5fq53 .icon-wrap span {
  margin: 0;
}
@media (max-width: 768px) {
  .cid-uN0va5fq53 .icon-wrap span {
    transform: scale(0.6);
  }
}
@media (max-width: 600px) {
  .cid-uN0va5fq53 .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-uN0va5fq53 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN0va5fq53 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN0va6nv6M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #61616e;
}
.cid-uN0va6nv6M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN0va6nv6M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN0va6nv6M .row {
  justify-content: space-between;
}
.cid-uN0va6nv6M .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0va6nv6M .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0va6nv6M .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uN0va6nv6M .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uN0va6nv6M .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-uN0va6nv6M .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0va6nv6M .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0va6nv6M .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uN0va6nv6M .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uN0va6nv6M .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-uN0va6nv6M .list-wrapper .list .item-wrap:hover,
.cid-uN0va6nv6M .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uN0va6nv6M .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uN0va6nv6M .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0va6nv6M .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0va6nv6M .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-uN0va6nv6M .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-uN0va6nv6M .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uN0va6nv6M .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uN0va6nv6M .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uN0va6nv6M .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uN0va6nv6M .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uN0va6nv6M .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uN0va6nv6M .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-uN0va6nv6M .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uN0va6nv6M .mbr-section-title {
  color: #000000;
}
.cid-uN0va6nv6M .mbr-text {
  color: #ffffff;
}
.cid-uN0va6nv6M .list {
  color: #000000;
}
.cid-uN0va6nv6M .mbr-desc {
  color: #000000;
}
.cid-uN0va6nv6M .mbr-copy {
  color: #000000;
}
.cid-uN0va6nv6M .mbr-desc,
.cid-uN0va6nv6M .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-uN0va6nv6M .mbr-copy,
.cid-uN0va6nv6M .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-uN0va6nv6M .mbr-section-title,
.cid-uN0va6nv6M .mbr-section-btn {
  color: #ffffff;
}
.cid-uN0va6nv6M .list,
.cid-uN0va6nv6M .item-wrap {
  color: #ffffff;
}
.cid-uN0whDV9gQ {
  z-index: 1000;
  width: 100%;
}
.cid-uN0whDV9gQ nav.navbar {
  position: fixed;
}
.cid-uN0whDV9gQ .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-uN0whDV9gQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uN0whDV9gQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uN0whDV9gQ .dropdown-item:hover,
.cid-uN0whDV9gQ .dropdown-item:focus {
  background: #17171a !important;
  color: white !important;
}
.cid-uN0whDV9gQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uN0whDV9gQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uN0whDV9gQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uN0whDV9gQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uN0whDV9gQ .nav-link {
  position: relative;
}
.cid-uN0whDV9gQ .container {
  display: flex;
  margin: auto;
}
.cid-uN0whDV9gQ .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uN0whDV9gQ .dropdown-menu,
.cid-uN0whDV9gQ .navbar.opened {
  background: #7b7b8b !important;
}
.cid-uN0whDV9gQ .nav-item:focus,
.cid-uN0whDV9gQ .nav-link:focus {
  outline: none;
}
.cid-uN0whDV9gQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uN0whDV9gQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uN0whDV9gQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uN0whDV9gQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uN0whDV9gQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uN0whDV9gQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uN0whDV9gQ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(123, 123, 139, 0.6);
}
.cid-uN0whDV9gQ .navbar.opened {
  transition: all 0.3s;
}
.cid-uN0whDV9gQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uN0whDV9gQ .navbar .navbar-logo img {
  width: auto;
}
.cid-uN0whDV9gQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uN0whDV9gQ .navbar.collapsed {
  justify-content: center;
}
.cid-uN0whDV9gQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uN0whDV9gQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uN0whDV9gQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uN0whDV9gQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uN0whDV9gQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uN0whDV9gQ .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-uN0whDV9gQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uN0whDV9gQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uN0whDV9gQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uN0whDV9gQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uN0whDV9gQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uN0whDV9gQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uN0whDV9gQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uN0whDV9gQ .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-uN0whDV9gQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uN0whDV9gQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uN0whDV9gQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uN0whDV9gQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uN0whDV9gQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uN0whDV9gQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uN0whDV9gQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uN0whDV9gQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uN0whDV9gQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uN0whDV9gQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uN0whDV9gQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uN0whDV9gQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uN0whDV9gQ .dropdown-item.active,
.cid-uN0whDV9gQ .dropdown-item:active {
  background-color: transparent;
}
.cid-uN0whDV9gQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uN0whDV9gQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uN0whDV9gQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uN0whDV9gQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #7b7b8b;
}
.cid-uN0whDV9gQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uN0whDV9gQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uN0whDV9gQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uN0whDV9gQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uN0whDV9gQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uN0whDV9gQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uN0whDV9gQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uN0whDV9gQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN0whDV9gQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN0whDV9gQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uN0whDV9gQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN0whDV9gQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uN0whDV9gQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uN0whDV9gQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN0whDV9gQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uN0whDV9gQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uN0whDV9gQ .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-uN0whDV9gQ .navbar {
    height: 70px;
  }
  .cid-uN0whDV9gQ .navbar.opened {
    height: auto;
  }
  .cid-uN0whDV9gQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uN3bHoaody {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #254b45;
}
.cid-uN3bHoaody .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uN3bHoaody .modal-body .close {
  background: #1b1b1b;
}
.cid-uN3bHoaody .modal-body .close span {
  font-style: normal;
}
@media (min-width: 992px) {
  .cid-uN3bHoaody .align-center {
    text-align: left;
    max-width: 850px;
  }
  .cid-uN3bHoaody .carousel-caption {
    justify-content: flex-start !important;
    padding-left: 5rem;
  }
}
.cid-uN3bHoaody .mbr-slider .carousel-control {
  background: black!important;
  border-radius: 6px;
  height: 100px;
  width: 50px;
}
.cid-uN3bHoaody .mbri-right:before {
  content: "\e909";
  color: white;
}
.cid-uN3bHoaody .mbri-left:before {
  content: "\e90a";
  color: white;
}
.cid-uN3bHoaody .container {
  max-width: 100%;
  padding: 0;
}
.cid-uN3bHoaody .content-slider-wrap {
  width: 100%;
}
.cid-uN3bHoaody .carousel-inner > .active,
.cid-uN3bHoaody .carousel-inner > .next,
.cid-uN3bHoaody .carousel-inner > .prev {
  display: -webkit-flex;
}
.cid-uN3bHoaody .carousel-control .icon-next,
.cid-uN3bHoaody .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uN3bHoaody .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uN3bHoaody .mbr-iconfont {
  color: black;
  font-size: 2rem!important;
  font-family: 'Moririse2' !important;
  font-weight: 600;
}
.cid-uN3bHoaody .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uN3bHoaody .boxed-slider > div {
  position: relative;
}
.cid-uN3bHoaody .container img {
  width: 100%;
}
.cid-uN3bHoaody .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uN3bHoaody .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uN3bHoaody .mbr-table-cell {
  padding: 0;
}
.cid-uN3bHoaody .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uN3bHoaody .carousel-caption {
  top: auto;
  right: 0;
  bottom: 2rem;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uN3bHoaody .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uN3bHoaody .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-uN3bHoaody .carousel-item.active.right,
.cid-uN3bHoaody .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uN3bHoaody .carousel-item.active.left,
.cid-uN3bHoaody .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uN3bHoaody .carousel-item.active,
.cid-uN3bHoaody .carousel-item.next.left,
.cid-uN3bHoaody .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-uN3bHoaody .mbr-slider .carousel-control {
  top: 50%;
  margin-top: -1.5rem;
  font-size: 35px;
  transition: all .3s;
  z-index: 11;
}
@media (max-width: 767px) {
  .cid-uN3bHoaody .mbr-slider .carousel-control {
    top: 20%;
  }
}
.cid-uN3bHoaody .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uN3bHoaody .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uN3bHoaody .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-uN3bHoaody .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uN3bHoaody .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 10px;
  width: 10px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uN3bHoaody .mbr-slider .carousel-indicators li.active,
.cid-uN3bHoaody .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uN3bHoaody .mbr-slider .carousel-indicators li::after,
.cid-uN3bHoaody .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uN3bHoaody .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uN3bHoaody .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uN3bHoaody .mbr-slider > .container img {
  width: 100%;
}
.cid-uN3bHoaody .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uN3bHoaody .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uN3bHoaody .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uN3bHoaody .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uN3bHoaody .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uN3bHoaody .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-uN3bHoaody .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uN3bHoaody .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uN3bHoaody .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uN3bHoaody .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uN3bHoaody .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uN3bHoaody .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uN3bHoaody .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uN3bHoaody .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-uN3bHoaody .carousel-inner {
  height: 100%;
}
.cid-uN3bHoaody .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-uN3bHoaody .image_wrapper {
  height: 880px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-uN3bHoaody .image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uN3bHoaody .carousel-item .container-slide {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uN3bHoaody .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uN3bHoaody .content-slider-wrap {
    width: 100%!important;
  }
  .cid-uN3bHoaody .image_wrapper {
    height: 528px;
  }
}
.cid-uN0whEpcZd {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uN0whEpcZd .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uN0whEpcZd .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uN0whEpcZd .text-wrapper {
    padding: 0 5.5rem;
    margin-bottom: 3rem;
    padding: 0 4rem;
  }
}
@media (max-width: 768px) {
  .cid-uN0whEpcZd .text-wrapper {
    margin-bottom: 0;
  }
}
.cid-uN0whEpcZd .item-btn {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  position: absolute;
  top: -4.5rem;
  right: 2.5rem;
}
@media (max-width: 992px) {
  .cid-uN0whEpcZd .item-btn {
    width: 6rem;
    height: 6rem;
    top: -3.5rem;
    right: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uN0whEpcZd .item-btn {
    width: 4rem;
    height: 4rem;
    top: -2.5rem;
    right: 1.5rem;
  }
}
.cid-uN0whEpcZd .icon-wrap span {
  margin: 0;
}
@media (max-width: 768px) {
  .cid-uN0whEpcZd .icon-wrap span {
    transform: scale(0.6);
  }
}
@media (max-width: 600px) {
  .cid-uN0whEpcZd .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-uN0whEpcZd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN0whEpcZd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNHO5ZZezZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f7f7f7;
}
.cid-uNHO5ZZezZ .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uNHO5ZZezZ .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uNHO5ZZezZ .container {
    padding: 0 25px;
  }
}
.cid-uNHO5ZZezZ .row {
  margin: 0;
}
.cid-uNHO5ZZezZ .row .card {
  padding: 0;
  justify-content: center;
}
.cid-uNHO5ZZezZ .image-wrapper {
  position: relative;
  height: 100%;
  min-height: 450px;
}
@media (max-width: 992px) {
  .cid-uNHO5ZZezZ .image-wrapper {
    min-height: 350px;
  }
}
.cid-uNHO5ZZezZ .image-wrapper img {
  border-radius: 0 10rem 0 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uNHO5ZZezZ .title-wrapper {
  position: relative;
  padding: 0 12%;
}
@media (max-width: 992px) {
  .cid-uNHO5ZZezZ .title-wrapper {
    padding: 45px 25px;
  }
}
.cid-uNHO5ZZezZ .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uNHO5ZZezZ .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uNHO5ZZezZ .title-wrapper .mbr-section-btn {
  margin-top: 35px;
}
.cid-uNHO5ZZezZ .mbr-section-title {
  color: #000000;
}
.cid-uNHO5ZZezZ .mbr-text {
  color: #000000;
}
.cid-uNHOn2dE72 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNHOn2dE72 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uNHOn2dE72 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uNHOn2dE72 .container {
    padding: 0 25px;
  }
}
.cid-uNHOn2dE72 .row {
  margin: 0;
}
.cid-uNHOn2dE72 .row .card {
  padding: 0;
  justify-content: center;
}
.cid-uNHOn2dE72 .image-wrapper {
  position: relative;
  height: 100%;
  min-height: 450px;
}
@media (max-width: 992px) {
  .cid-uNHOn2dE72 .image-wrapper {
    min-height: 350px;
  }
}
.cid-uNHOn2dE72 .image-wrapper img {
  border-radius: 0 10rem 0 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10rem 0 0 0 !important;
}
.cid-uNHOn2dE72 .title-wrapper {
  position: relative;
  padding: 0 12%;
}
@media (max-width: 992px) {
  .cid-uNHOn2dE72 .title-wrapper {
    padding: 45px 25px;
  }
}
.cid-uNHOn2dE72 .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uNHOn2dE72 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uNHOn2dE72 .title-wrapper .mbr-section-btn {
  margin-top: 35px;
}
.cid-uNHOn2dE72 .mbr-section-title {
  color: #000000;
}
.cid-uNHOn2dE72 .mbr-text {
  color: #000000;
}
.cid-uNHOniYRg9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f7f7f7;
}
.cid-uNHOniYRg9 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uNHOniYRg9 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uNHOniYRg9 .container {
    padding: 0 25px;
  }
}
.cid-uNHOniYRg9 .row {
  margin: 0;
}
.cid-uNHOniYRg9 .row .card {
  padding: 0;
  justify-content: center;
}
.cid-uNHOniYRg9 .image-wrapper {
  position: relative;
  height: 100%;
  min-height: 450px;
}
@media (max-width: 992px) {
  .cid-uNHOniYRg9 .image-wrapper {
    min-height: 350px;
  }
}
.cid-uNHOniYRg9 .image-wrapper img {
  border-radius: 0 10rem 0 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uNHOniYRg9 .title-wrapper {
  position: relative;
  padding: 0 12%;
}
@media (max-width: 992px) {
  .cid-uNHOniYRg9 .title-wrapper {
    padding: 45px 25px;
  }
}
.cid-uNHOniYRg9 .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uNHOniYRg9 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uNHOniYRg9 .title-wrapper .mbr-section-btn {
  margin-top: 35px;
}
.cid-uNHOniYRg9 .mbr-section-title {
  color: #000000;
}
.cid-uNHOniYRg9 .mbr-text {
  color: #000000;
}
.cid-uNHOnymJPF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uNHOnymJPF .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uNHOnymJPF .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uNHOnymJPF .container {
    padding: 0 25px;
  }
}
.cid-uNHOnymJPF .row {
  margin: 0;
}
.cid-uNHOnymJPF .row .card {
  padding: 0;
  justify-content: center;
}
.cid-uNHOnymJPF .image-wrapper {
  position: relative;
  height: 100%;
  min-height: 450px;
}
@media (max-width: 992px) {
  .cid-uNHOnymJPF .image-wrapper {
    min-height: 350px;
  }
}
.cid-uNHOnymJPF .image-wrapper img {
  border-radius: 0 10rem 0 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10rem 0 0 0 !important;
}
.cid-uNHOnymJPF .title-wrapper {
  position: relative;
  padding: 0 12%;
}
@media (max-width: 992px) {
  .cid-uNHOnymJPF .title-wrapper {
    padding: 45px 25px;
  }
}
.cid-uNHOnymJPF .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uNHOnymJPF .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uNHOnymJPF .title-wrapper .mbr-section-btn {
  margin-top: 35px;
}
.cid-uNHOnymJPF .mbr-section-title {
  color: #000000;
}
.cid-uNHOnymJPF .mbr-text {
  color: #000000;
}
.cid-uNHOnXkNS6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f7f7f7;
}
.cid-uNHOnXkNS6 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uNHOnXkNS6 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uNHOnXkNS6 .container {
    padding: 0 25px;
  }
}
.cid-uNHOnXkNS6 .row {
  margin: 0;
}
.cid-uNHOnXkNS6 .row .card {
  padding: 0;
  justify-content: center;
}
.cid-uNHOnXkNS6 .image-wrapper {
  position: relative;
  height: 100%;
  min-height: 450px;
}
@media (max-width: 992px) {
  .cid-uNHOnXkNS6 .image-wrapper {
    min-height: 350px;
  }
}
.cid-uNHOnXkNS6 .image-wrapper img {
  border-radius: 0 10rem 0 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uNHOnXkNS6 .title-wrapper {
  position: relative;
  padding: 0 12%;
}
@media (max-width: 992px) {
  .cid-uNHOnXkNS6 .title-wrapper {
    padding: 45px 25px;
  }
}
.cid-uNHOnXkNS6 .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uNHOnXkNS6 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uNHOnXkNS6 .title-wrapper .mbr-section-btn {
  margin-top: 35px;
}
.cid-uNHOnXkNS6 .mbr-section-title {
  color: #000000;
}
.cid-uNHOnXkNS6 .mbr-text {
  color: #000000;
}
.cid-uNHOnLm3C2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uNHOnLm3C2 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uNHOnLm3C2 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uNHOnLm3C2 .container {
    padding: 0 25px;
  }
}
.cid-uNHOnLm3C2 .row {
  margin: 0;
}
.cid-uNHOnLm3C2 .row .card {
  padding: 0;
  justify-content: center;
}
.cid-uNHOnLm3C2 .image-wrapper {
  position: relative;
  height: 100%;
  min-height: 450px;
}
@media (max-width: 992px) {
  .cid-uNHOnLm3C2 .image-wrapper {
    min-height: 350px;
  }
}
.cid-uNHOnLm3C2 .image-wrapper img {
  border-radius: 0 10rem 0 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10rem 0 0 0 !important;
}
.cid-uNHOnLm3C2 .title-wrapper {
  position: relative;
  padding: 0 12%;
}
@media (max-width: 992px) {
  .cid-uNHOnLm3C2 .title-wrapper {
    padding: 45px 25px;
  }
}
.cid-uNHOnLm3C2 .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uNHOnLm3C2 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uNHOnLm3C2 .title-wrapper .mbr-section-btn {
  margin-top: 35px;
}
.cid-uNHOnLm3C2 .mbr-section-title {
  color: #000000;
}
.cid-uNHOnLm3C2 .mbr-text {
  color: #000000;
}
.cid-uNHOo8KSKQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f7f7f7;
}
.cid-uNHOo8KSKQ .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uNHOo8KSKQ .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uNHOo8KSKQ .container {
    padding: 0 25px;
  }
}
.cid-uNHOo8KSKQ .row {
  margin: 0;
}
.cid-uNHOo8KSKQ .row .card {
  padding: 0;
  justify-content: center;
}
.cid-uNHOo8KSKQ .image-wrapper {
  position: relative;
  height: 100%;
  min-height: 450px;
}
@media (max-width: 992px) {
  .cid-uNHOo8KSKQ .image-wrapper {
    min-height: 350px;
  }
}
.cid-uNHOo8KSKQ .image-wrapper img {
  border-radius: 0 10rem 0 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uNHOo8KSKQ .title-wrapper {
  position: relative;
  padding: 0 12%;
}
@media (max-width: 992px) {
  .cid-uNHOo8KSKQ .title-wrapper {
    padding: 45px 25px;
  }
}
.cid-uNHOo8KSKQ .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uNHOo8KSKQ .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uNHOo8KSKQ .title-wrapper .mbr-section-btn {
  margin-top: 35px;
}
.cid-uNHOo8KSKQ .mbr-section-title {
  color: #000000;
}
.cid-uNHOo8KSKQ .mbr-text {
  color: #000000;
}
.cid-uN0whFz7PG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #61616e;
}
.cid-uN0whFz7PG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN0whFz7PG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN0whFz7PG .row {
  justify-content: space-between;
}
.cid-uN0whFz7PG .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0whFz7PG .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0whFz7PG .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uN0whFz7PG .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uN0whFz7PG .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-uN0whFz7PG .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0whFz7PG .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0whFz7PG .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uN0whFz7PG .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uN0whFz7PG .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-uN0whFz7PG .list-wrapper .list .item-wrap:hover,
.cid-uN0whFz7PG .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uN0whFz7PG .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uN0whFz7PG .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0whFz7PG .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0whFz7PG .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-uN0whFz7PG .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-uN0whFz7PG .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uN0whFz7PG .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uN0whFz7PG .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uN0whFz7PG .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uN0whFz7PG .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uN0whFz7PG .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uN0whFz7PG .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-uN0whFz7PG .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uN0whFz7PG .mbr-section-title {
  color: #000000;
}
.cid-uN0whFz7PG .mbr-text {
  color: #ffffff;
}
.cid-uN0whFz7PG .list {
  color: #000000;
}
.cid-uN0whFz7PG .mbr-desc {
  color: #000000;
}
.cid-uN0whFz7PG .mbr-copy {
  color: #000000;
}
.cid-uN0whFz7PG .mbr-desc,
.cid-uN0whFz7PG .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-uN0whFz7PG .mbr-copy,
.cid-uN0whFz7PG .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-uN0whFz7PG .mbr-section-title,
.cid-uN0whFz7PG .mbr-section-btn {
  color: #ffffff;
}
.cid-uN0whFz7PG .list,
.cid-uN0whFz7PG .item-wrap {
  color: #ffffff;
}
.cid-uNIWKmMpaW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #254b45;
}
.cid-uNIWKmMpaW .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uNIWKmMpaW .modal-body .close {
  background: #1b1b1b;
}
.cid-uNIWKmMpaW .modal-body .close span {
  font-style: normal;
}
@media (min-width: 992px) {
  .cid-uNIWKmMpaW .align-center {
    text-align: left;
    max-width: 850px;
  }
  .cid-uNIWKmMpaW .carousel-caption {
    justify-content: flex-start !important;
    padding-left: 5rem;
  }
}
.cid-uNIWKmMpaW .mbr-slider .carousel-control {
  background: black!important;
  border-radius: 6px;
  height: 100px;
  width: 50px;
}
.cid-uNIWKmMpaW .mbri-right:before {
  content: "\e909";
  color: white;
}
.cid-uNIWKmMpaW .mbri-left:before {
  content: "\e90a";
  color: white;
}
.cid-uNIWKmMpaW .container {
  max-width: 100%;
  padding: 0;
}
.cid-uNIWKmMpaW .content-slider-wrap {
  width: 100%;
}
.cid-uNIWKmMpaW .carousel-inner > .active,
.cid-uNIWKmMpaW .carousel-inner > .next,
.cid-uNIWKmMpaW .carousel-inner > .prev {
  display: -webkit-flex;
}
.cid-uNIWKmMpaW .carousel-control .icon-next,
.cid-uNIWKmMpaW .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uNIWKmMpaW .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uNIWKmMpaW .mbr-iconfont {
  color: black;
  font-size: 2rem!important;
  font-family: 'Moririse2' !important;
  font-weight: 600;
}
.cid-uNIWKmMpaW .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uNIWKmMpaW .boxed-slider > div {
  position: relative;
}
.cid-uNIWKmMpaW .container img {
  width: 100%;
}
.cid-uNIWKmMpaW .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uNIWKmMpaW .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uNIWKmMpaW .mbr-table-cell {
  padding: 0;
}
.cid-uNIWKmMpaW .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uNIWKmMpaW .carousel-caption {
  top: auto;
  right: 0;
  bottom: 2rem;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uNIWKmMpaW .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uNIWKmMpaW .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-uNIWKmMpaW .carousel-item.active.right,
.cid-uNIWKmMpaW .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uNIWKmMpaW .carousel-item.active.left,
.cid-uNIWKmMpaW .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uNIWKmMpaW .carousel-item.active,
.cid-uNIWKmMpaW .carousel-item.next.left,
.cid-uNIWKmMpaW .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-uNIWKmMpaW .mbr-slider .carousel-control {
  top: 50%;
  margin-top: -1.5rem;
  font-size: 35px;
  transition: all .3s;
  z-index: 11;
}
@media (max-width: 767px) {
  .cid-uNIWKmMpaW .mbr-slider .carousel-control {
    top: 20%;
  }
}
.cid-uNIWKmMpaW .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uNIWKmMpaW .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uNIWKmMpaW .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-uNIWKmMpaW .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uNIWKmMpaW .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 10px;
  width: 10px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uNIWKmMpaW .mbr-slider .carousel-indicators li.active,
.cid-uNIWKmMpaW .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uNIWKmMpaW .mbr-slider .carousel-indicators li::after,
.cid-uNIWKmMpaW .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uNIWKmMpaW .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uNIWKmMpaW .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uNIWKmMpaW .mbr-slider > .container img {
  width: 100%;
}
.cid-uNIWKmMpaW .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uNIWKmMpaW .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uNIWKmMpaW .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uNIWKmMpaW .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uNIWKmMpaW .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uNIWKmMpaW .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-uNIWKmMpaW .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uNIWKmMpaW .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uNIWKmMpaW .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uNIWKmMpaW .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uNIWKmMpaW .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uNIWKmMpaW .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uNIWKmMpaW .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uNIWKmMpaW .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-uNIWKmMpaW .carousel-inner {
  height: 100%;
}
.cid-uNIWKmMpaW .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-uNIWKmMpaW .image_wrapper {
  height: 950px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-uNIWKmMpaW .image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uNIWKmMpaW .carousel-item .container-slide {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uNIWKmMpaW .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uNIWKmMpaW .content-slider-wrap {
    width: 100%!important;
  }
  .cid-uNIWKmMpaW .image_wrapper {
    height: 570px;
  }
}
.cid-uN0xnT9HpY {
  z-index: 1000;
  width: 100%;
}
.cid-uN0xnT9HpY nav.navbar {
  position: fixed;
}
.cid-uN0xnT9HpY .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-uN0xnT9HpY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uN0xnT9HpY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uN0xnT9HpY .dropdown-item:hover,
.cid-uN0xnT9HpY .dropdown-item:focus {
  background: #17171a !important;
  color: white !important;
}
.cid-uN0xnT9HpY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uN0xnT9HpY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uN0xnT9HpY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uN0xnT9HpY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uN0xnT9HpY .nav-link {
  position: relative;
}
.cid-uN0xnT9HpY .container {
  display: flex;
  margin: auto;
}
.cid-uN0xnT9HpY .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uN0xnT9HpY .dropdown-menu,
.cid-uN0xnT9HpY .navbar.opened {
  background: #7b7b8b !important;
}
.cid-uN0xnT9HpY .nav-item:focus,
.cid-uN0xnT9HpY .nav-link:focus {
  outline: none;
}
.cid-uN0xnT9HpY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uN0xnT9HpY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uN0xnT9HpY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uN0xnT9HpY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uN0xnT9HpY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uN0xnT9HpY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uN0xnT9HpY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(123, 123, 139, 0.6);
}
.cid-uN0xnT9HpY .navbar.opened {
  transition: all 0.3s;
}
.cid-uN0xnT9HpY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uN0xnT9HpY .navbar .navbar-logo img {
  width: auto;
}
.cid-uN0xnT9HpY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uN0xnT9HpY .navbar.collapsed {
  justify-content: center;
}
.cid-uN0xnT9HpY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uN0xnT9HpY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uN0xnT9HpY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uN0xnT9HpY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uN0xnT9HpY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uN0xnT9HpY .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-uN0xnT9HpY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uN0xnT9HpY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uN0xnT9HpY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uN0xnT9HpY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uN0xnT9HpY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uN0xnT9HpY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uN0xnT9HpY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uN0xnT9HpY .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-uN0xnT9HpY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uN0xnT9HpY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uN0xnT9HpY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uN0xnT9HpY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uN0xnT9HpY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uN0xnT9HpY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uN0xnT9HpY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uN0xnT9HpY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uN0xnT9HpY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uN0xnT9HpY .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uN0xnT9HpY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uN0xnT9HpY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uN0xnT9HpY .dropdown-item.active,
.cid-uN0xnT9HpY .dropdown-item:active {
  background-color: transparent;
}
.cid-uN0xnT9HpY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uN0xnT9HpY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uN0xnT9HpY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uN0xnT9HpY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #7b7b8b;
}
.cid-uN0xnT9HpY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uN0xnT9HpY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uN0xnT9HpY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uN0xnT9HpY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uN0xnT9HpY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uN0xnT9HpY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uN0xnT9HpY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uN0xnT9HpY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN0xnT9HpY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN0xnT9HpY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uN0xnT9HpY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN0xnT9HpY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uN0xnT9HpY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uN0xnT9HpY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN0xnT9HpY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uN0xnT9HpY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uN0xnT9HpY .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-uN0xnT9HpY .navbar {
    height: 70px;
  }
  .cid-uN0xnT9HpY .navbar.opened {
    height: auto;
  }
  .cid-uN0xnT9HpY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uN0xnTG4Pb {
  padding-top: 3.5rem;
  padding-bottom: 1.5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uN0xnTG4Pb .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uN0xnTG4Pb .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uN0xnTG4Pb .text-wrapper {
    padding: 0 5.5rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .cid-uN0xnTG4Pb .text-wrapper {
    margin-bottom: 0;
  }
}
.cid-uN0xnTG4Pb .item-btn {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  position: absolute;
  top: -4.5rem;
  right: 2.5rem;
}
@media (max-width: 992px) {
  .cid-uN0xnTG4Pb .item-btn {
    width: 6rem;
    height: 6rem;
    top: -3.5rem;
    right: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uN0xnTG4Pb .item-btn {
    width: 4rem;
    height: 4rem;
    top: -2.5rem;
    right: 1.5rem;
  }
}
.cid-uN0xnTG4Pb .icon-wrap span {
  margin: 0;
}
@media (max-width: 768px) {
  .cid-uN0xnTG4Pb .icon-wrap span {
    transform: scale(0.6);
  }
}
@media (max-width: 600px) {
  .cid-uN0xnTG4Pb .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-uN0xnTG4Pb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN0xnTG4Pb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN0xnU63sd {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uN0xnU63sd img,
.cid-uN0xnU63sd .item-img {
  width: 100%;
}
.cid-uN0xnU63sd .item:focus,
.cid-uN0xnU63sd span:focus {
  outline: none;
}
.cid-uN0xnU63sd .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uN0xnU63sd .item-wrapper {
  position: relative;
  background: #f8f8f8;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uN0xnU63sd .item-wrapper .item-content {
    padding: 2rem 4rem 0;
  }
  .cid-uN0xnU63sd .item-wrapper .mbr-text {
    margin-bottom: 3rem;
  }
  .cid-uN0xnU63sd .item-wrapper .item-footer {
    padding: 0 4rem 2rem;
    position: absolute;
    right: -2rem;
    top: 8rem;
  }
  .cid-uN0xnU63sd .item-wrapper .item-btn {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    padding-left: -0.5rem;
    padding-top: 0.5rem;
    margin: 0;
  }
  .cid-uN0xnU63sd .item-wrapper .item-btn span {
    transform: rotate(45deg);
    margin-top: 0.4rem;
    margin-right: 0.6rem;
    margin-left: 0.5rem;
    transition: all 0.8s;
  }
  .cid-uN0xnU63sd .item-wrapper .item-btn:hover > span {
    transform: rotate(90deg);
  }
}
@media (min-width: 992px) and (min-width: 1200px) and (max-width: 1399px) {
  .cid-uN0xnU63sd .item-wrapper .item-footer {
    top: 11.6rem;
  }
}
@media (min-width: 992px) and (min-width: 1400px) {
  .cid-uN0xnU63sd .item-wrapper .item-footer {
    top: 15.2rem;
  }
}
@media (max-width: 991px) {
  .cid-uN0xnU63sd .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uN0xnU63sd .item-wrapper .mbr-text {
    margin-bottom: 2rem;
  }
  .cid-uN0xnU63sd .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
    position: absolute;
    right: -0.4rem;
    top: 7.9rem;
  }
  .cid-uN0xnU63sd .item-wrapper .item-btn {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    padding-left: -0.5rem;
    padding-top: 0.5rem;
  }
  .cid-uN0xnU63sd .item-wrapper .item-btn span {
    transform: rotate(45deg) scale(0.6);
    margin-top: 0.2rem;
    margin-left: 0.2rem;
    transition: all 0.8s;
  }
  .cid-uN0xnU63sd .item-wrapper .item-btn:hover > span {
    transform: scale(0.6) rotate(90deg);
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uN0xnU63sd .item-wrapper .item-footer {
    position: static;
    margin-top: -2rem;
  }
}
@media (max-width: 600px) {
  .cid-uN0xnU63sd .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-uN0xnU63sd .mbr-text,
.cid-uN0xnU63sd .mbr-section-btn {
  color: #9b9ba5;
}
.cid-uN0xnU63sd .item-title {
  color: #ffb18a;
}
.cid-uN0xnURuWy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #61616e;
}
.cid-uN0xnURuWy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN0xnURuWy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN0xnURuWy .row {
  justify-content: space-between;
}
.cid-uN0xnURuWy .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0xnURuWy .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0xnURuWy .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uN0xnURuWy .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uN0xnURuWy .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-uN0xnURuWy .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0xnURuWy .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0xnURuWy .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uN0xnURuWy .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uN0xnURuWy .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-uN0xnURuWy .list-wrapper .list .item-wrap:hover,
.cid-uN0xnURuWy .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uN0xnURuWy .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uN0xnURuWy .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0xnURuWy .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0xnURuWy .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-uN0xnURuWy .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-uN0xnURuWy .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uN0xnURuWy .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uN0xnURuWy .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uN0xnURuWy .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uN0xnURuWy .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uN0xnURuWy .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uN0xnURuWy .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-uN0xnURuWy .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uN0xnURuWy .mbr-section-title {
  color: #000000;
}
.cid-uN0xnURuWy .mbr-text {
  color: #ffffff;
}
.cid-uN0xnURuWy .list {
  color: #000000;
}
.cid-uN0xnURuWy .mbr-desc {
  color: #000000;
}
.cid-uN0xnURuWy .mbr-copy {
  color: #000000;
}
.cid-uN0xnURuWy .mbr-desc,
.cid-uN0xnURuWy .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-uN0xnURuWy .mbr-copy,
.cid-uN0xnURuWy .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-uN0xnURuWy .mbr-section-title,
.cid-uN0xnURuWy .mbr-section-btn {
  color: #ffffff;
}
.cid-uN0xnURuWy .list,
.cid-uN0xnURuWy .item-wrap {
  color: #ffffff;
}
.cid-uN0wz9kxlu {
  z-index: 1000;
  width: 100%;
}
.cid-uN0wz9kxlu nav.navbar {
  position: fixed;
}
.cid-uN0wz9kxlu .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-uN0wz9kxlu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uN0wz9kxlu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uN0wz9kxlu .dropdown-item:hover,
.cid-uN0wz9kxlu .dropdown-item:focus {
  background: #17171a !important;
  color: white !important;
}
.cid-uN0wz9kxlu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uN0wz9kxlu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uN0wz9kxlu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uN0wz9kxlu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uN0wz9kxlu .nav-link {
  position: relative;
}
.cid-uN0wz9kxlu .container {
  display: flex;
  margin: auto;
}
.cid-uN0wz9kxlu .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uN0wz9kxlu .dropdown-menu,
.cid-uN0wz9kxlu .navbar.opened {
  background: #7b7b8b !important;
}
.cid-uN0wz9kxlu .nav-item:focus,
.cid-uN0wz9kxlu .nav-link:focus {
  outline: none;
}
.cid-uN0wz9kxlu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uN0wz9kxlu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uN0wz9kxlu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uN0wz9kxlu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uN0wz9kxlu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uN0wz9kxlu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uN0wz9kxlu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(123, 123, 139, 0.6);
}
.cid-uN0wz9kxlu .navbar.opened {
  transition: all 0.3s;
}
.cid-uN0wz9kxlu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uN0wz9kxlu .navbar .navbar-logo img {
  width: auto;
}
.cid-uN0wz9kxlu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uN0wz9kxlu .navbar.collapsed {
  justify-content: center;
}
.cid-uN0wz9kxlu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uN0wz9kxlu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uN0wz9kxlu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uN0wz9kxlu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uN0wz9kxlu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uN0wz9kxlu .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-uN0wz9kxlu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uN0wz9kxlu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uN0wz9kxlu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uN0wz9kxlu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uN0wz9kxlu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uN0wz9kxlu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uN0wz9kxlu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uN0wz9kxlu .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-uN0wz9kxlu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uN0wz9kxlu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uN0wz9kxlu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uN0wz9kxlu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uN0wz9kxlu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uN0wz9kxlu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uN0wz9kxlu .navbar.navbar-short {
  min-height: 60px;
}
.cid-uN0wz9kxlu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uN0wz9kxlu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uN0wz9kxlu .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uN0wz9kxlu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uN0wz9kxlu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uN0wz9kxlu .dropdown-item.active,
.cid-uN0wz9kxlu .dropdown-item:active {
  background-color: transparent;
}
.cid-uN0wz9kxlu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uN0wz9kxlu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uN0wz9kxlu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uN0wz9kxlu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #7b7b8b;
}
.cid-uN0wz9kxlu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uN0wz9kxlu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uN0wz9kxlu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uN0wz9kxlu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uN0wz9kxlu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uN0wz9kxlu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uN0wz9kxlu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uN0wz9kxlu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN0wz9kxlu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN0wz9kxlu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uN0wz9kxlu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN0wz9kxlu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uN0wz9kxlu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uN0wz9kxlu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN0wz9kxlu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uN0wz9kxlu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uN0wz9kxlu .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-uN0wz9kxlu .navbar {
    height: 70px;
  }
  .cid-uN0wz9kxlu .navbar.opened {
    height: auto;
  }
  .cid-uN0wz9kxlu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uN3bOygcBG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #254b45;
}
.cid-uN3bOygcBG .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uN3bOygcBG .modal-body .close {
  background: #1b1b1b;
}
.cid-uN3bOygcBG .modal-body .close span {
  font-style: normal;
}
@media (min-width: 992px) {
  .cid-uN3bOygcBG .align-center {
    text-align: left;
    max-width: 850px;
  }
  .cid-uN3bOygcBG .carousel-caption {
    justify-content: flex-start !important;
    padding-left: 5rem;
  }
}
.cid-uN3bOygcBG .mbr-slider .carousel-control {
  background: black!important;
  border-radius: 6px;
  height: 100px;
  width: 50px;
}
.cid-uN3bOygcBG .mbri-right:before {
  content: "\e909";
  color: white;
}
.cid-uN3bOygcBG .mbri-left:before {
  content: "\e90a";
  color: white;
}
.cid-uN3bOygcBG .container {
  max-width: 100%;
  padding: 0;
}
.cid-uN3bOygcBG .content-slider-wrap {
  width: 100%;
}
.cid-uN3bOygcBG .carousel-inner > .active,
.cid-uN3bOygcBG .carousel-inner > .next,
.cid-uN3bOygcBG .carousel-inner > .prev {
  display: -webkit-flex;
}
.cid-uN3bOygcBG .carousel-control .icon-next,
.cid-uN3bOygcBG .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uN3bOygcBG .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uN3bOygcBG .mbr-iconfont {
  color: black;
  font-size: 2rem!important;
  font-family: 'Moririse2' !important;
  font-weight: 600;
}
.cid-uN3bOygcBG .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uN3bOygcBG .boxed-slider > div {
  position: relative;
}
.cid-uN3bOygcBG .container img {
  width: 100%;
}
.cid-uN3bOygcBG .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uN3bOygcBG .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uN3bOygcBG .mbr-table-cell {
  padding: 0;
}
.cid-uN3bOygcBG .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uN3bOygcBG .carousel-caption {
  top: auto;
  right: 0;
  bottom: 2rem;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uN3bOygcBG .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uN3bOygcBG .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-uN3bOygcBG .carousel-item.active.right,
.cid-uN3bOygcBG .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uN3bOygcBG .carousel-item.active.left,
.cid-uN3bOygcBG .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uN3bOygcBG .carousel-item.active,
.cid-uN3bOygcBG .carousel-item.next.left,
.cid-uN3bOygcBG .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-uN3bOygcBG .mbr-slider .carousel-control {
  top: 50%;
  margin-top: -1.5rem;
  font-size: 35px;
  transition: all .3s;
  z-index: 11;
}
@media (max-width: 767px) {
  .cid-uN3bOygcBG .mbr-slider .carousel-control {
    top: 20%;
  }
}
.cid-uN3bOygcBG .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uN3bOygcBG .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uN3bOygcBG .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-uN3bOygcBG .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uN3bOygcBG .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 10px;
  width: 10px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uN3bOygcBG .mbr-slider .carousel-indicators li.active,
.cid-uN3bOygcBG .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uN3bOygcBG .mbr-slider .carousel-indicators li::after,
.cid-uN3bOygcBG .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uN3bOygcBG .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uN3bOygcBG .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uN3bOygcBG .mbr-slider > .container img {
  width: 100%;
}
.cid-uN3bOygcBG .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uN3bOygcBG .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uN3bOygcBG .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uN3bOygcBG .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uN3bOygcBG .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uN3bOygcBG .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-uN3bOygcBG .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uN3bOygcBG .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uN3bOygcBG .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uN3bOygcBG .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uN3bOygcBG .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uN3bOygcBG .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uN3bOygcBG .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uN3bOygcBG .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-uN3bOygcBG .carousel-inner {
  height: 100%;
}
.cid-uN3bOygcBG .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-uN3bOygcBG .image_wrapper {
  height: 880px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-uN3bOygcBG .image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uN3bOygcBG .carousel-item .container-slide {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uN3bOygcBG .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uN3bOygcBG .content-slider-wrap {
    width: 100%!important;
  }
  .cid-uN3bOygcBG .image_wrapper {
    height: 528px;
  }
}
.cid-uNIZSKjeMJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/slayt3-thrianda-bespoke-interior-architecture-20design-construction-london-england-1920x1080.jpg");
}
.cid-uNIZSKjeMJ .mbr-overlay {
  background: #edefeb;
  opacity: 0.9;
}
.cid-uNIZSKjeMJ .item:focus,
.cid-uNIZSKjeMJ span:focus {
  outline: none;
}
.cid-uNIZSKjeMJ .item {
  cursor: pointer;
}
.cid-uNIZSKjeMJ .grid-container {
  grid-row-gap: 20px;
}
.cid-uNIZSKjeMJ .grid-container-1,
.cid-uNIZSKjeMJ .grid-container-2 {
  gap: 0 20px;
}
.cid-uNIZSKjeMJ .mbr-section-title {
  margin-bottom: 64px;
  color: #61616e;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uNIZSKjeMJ .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uNIZSKjeMJ .content-head {
  max-width: 800px;
}
.cid-uNIZSKjeMJ .container,
.cid-uNIZSKjeMJ .container-fluid {
  overflow: hidden;
}
.cid-uNIZSKjeMJ .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uNIZSKjeMJ .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uNIZSKjeMJ .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  height: 450px;
  object-fit: cover;
  border: 20px solid #ffffff;
}
@media (max-width: 1200px) {
  .cid-uNIZSKjeMJ .grid-item img {
    height: 300px;
  }
}
@media (max-width: 992px) {
  .cid-uNIZSKjeMJ .grid-item img {
    border: 10px solid #ffffff;
  }
}
@media (max-width: 767px) {
  .cid-uNIZSKjeMJ .grid-item img {
    min-width: 35vw;
    height: 150px;
  }
}
.cid-uNIZSKjeMJ .grid-container-1,
.cid-uNIZSKjeMJ .grid-container-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uNIZSKjeMJ .grid-container-1 {
  align-items: flex-end;
}
.cid-uNIZSKjeMJ .grid-container-2 {
  align-items: flex-start;
}
.cid-uN0wzaPEk3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #61616e;
}
.cid-uN0wzaPEk3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN0wzaPEk3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN0wzaPEk3 .row {
  justify-content: space-between;
}
.cid-uN0wzaPEk3 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0wzaPEk3 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0wzaPEk3 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uN0wzaPEk3 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uN0wzaPEk3 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-uN0wzaPEk3 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0wzaPEk3 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0wzaPEk3 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uN0wzaPEk3 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uN0wzaPEk3 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-uN0wzaPEk3 .list-wrapper .list .item-wrap:hover,
.cid-uN0wzaPEk3 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uN0wzaPEk3 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uN0wzaPEk3 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0wzaPEk3 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0wzaPEk3 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-uN0wzaPEk3 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-uN0wzaPEk3 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uN0wzaPEk3 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uN0wzaPEk3 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uN0wzaPEk3 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uN0wzaPEk3 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uN0wzaPEk3 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uN0wzaPEk3 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-uN0wzaPEk3 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uN0wzaPEk3 .mbr-section-title {
  color: #000000;
}
.cid-uN0wzaPEk3 .mbr-text {
  color: #ffffff;
}
.cid-uN0wzaPEk3 .list {
  color: #000000;
}
.cid-uN0wzaPEk3 .mbr-desc {
  color: #000000;
}
.cid-uN0wzaPEk3 .mbr-copy {
  color: #000000;
}
.cid-uN0wzaPEk3 .mbr-desc,
.cid-uN0wzaPEk3 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-uN0wzaPEk3 .mbr-copy,
.cid-uN0wzaPEk3 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-uN0wzaPEk3 .mbr-section-title,
.cid-uN0wzaPEk3 .mbr-section-btn {
  color: #ffffff;
}
.cid-uN0wzaPEk3 .list,
.cid-uN0wzaPEk3 .item-wrap {
  color: #ffffff;
}
.cid-uMYlU6Bg0S {
  z-index: 1000;
  width: 100%;
}
.cid-uMYlU6Bg0S nav.navbar {
  position: fixed;
}
.cid-uMYlU6Bg0S .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-uMYlU6Bg0S .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMYlU6Bg0S .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMYlU6Bg0S .dropdown-item:hover,
.cid-uMYlU6Bg0S .dropdown-item:focus {
  background: #17171a !important;
  color: white !important;
}
.cid-uMYlU6Bg0S .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMYlU6Bg0S .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMYlU6Bg0S .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMYlU6Bg0S .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMYlU6Bg0S .nav-link {
  position: relative;
}
.cid-uMYlU6Bg0S .container {
  display: flex;
  margin: auto;
}
.cid-uMYlU6Bg0S .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMYlU6Bg0S .dropdown-menu,
.cid-uMYlU6Bg0S .navbar.opened {
  background: #7b7b8b !important;
}
.cid-uMYlU6Bg0S .nav-item:focus,
.cid-uMYlU6Bg0S .nav-link:focus {
  outline: none;
}
.cid-uMYlU6Bg0S .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMYlU6Bg0S .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMYlU6Bg0S .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMYlU6Bg0S .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMYlU6Bg0S .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMYlU6Bg0S .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMYlU6Bg0S .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(123, 123, 139, 0.6);
}
.cid-uMYlU6Bg0S .navbar.opened {
  transition: all 0.3s;
}
.cid-uMYlU6Bg0S .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMYlU6Bg0S .navbar .navbar-logo img {
  width: auto;
}
.cid-uMYlU6Bg0S .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMYlU6Bg0S .navbar.collapsed {
  justify-content: center;
}
.cid-uMYlU6Bg0S .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMYlU6Bg0S .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMYlU6Bg0S .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uMYlU6Bg0S .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMYlU6Bg0S .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMYlU6Bg0S .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-uMYlU6Bg0S .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMYlU6Bg0S .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMYlU6Bg0S .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMYlU6Bg0S .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMYlU6Bg0S .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMYlU6Bg0S .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMYlU6Bg0S .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMYlU6Bg0S .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-uMYlU6Bg0S .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMYlU6Bg0S .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMYlU6Bg0S .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMYlU6Bg0S .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMYlU6Bg0S .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMYlU6Bg0S .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMYlU6Bg0S .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMYlU6Bg0S .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMYlU6Bg0S .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMYlU6Bg0S .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uMYlU6Bg0S .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMYlU6Bg0S .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMYlU6Bg0S .dropdown-item.active,
.cid-uMYlU6Bg0S .dropdown-item:active {
  background-color: transparent;
}
.cid-uMYlU6Bg0S .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMYlU6Bg0S .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMYlU6Bg0S .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMYlU6Bg0S .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #7b7b8b;
}
.cid-uMYlU6Bg0S .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMYlU6Bg0S .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMYlU6Bg0S ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMYlU6Bg0S .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMYlU6Bg0S button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMYlU6Bg0S button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMYlU6Bg0S button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMYlU6Bg0S button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMYlU6Bg0S button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMYlU6Bg0S button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMYlU6Bg0S nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMYlU6Bg0S nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMYlU6Bg0S nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMYlU6Bg0S nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMYlU6Bg0S .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMYlU6Bg0S a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMYlU6Bg0S .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-uMYlU6Bg0S .navbar {
    height: 70px;
  }
  .cid-uMYlU6Bg0S .navbar.opened {
    height: auto;
  }
  .cid-uMYlU6Bg0S .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uN3jbW4Ib2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #254b45;
}
.cid-uN3jbW4Ib2 .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uN3jbW4Ib2 .modal-body .close {
  background: #1b1b1b;
}
.cid-uN3jbW4Ib2 .modal-body .close span {
  font-style: normal;
}
@media (min-width: 992px) {
  .cid-uN3jbW4Ib2 .align-center {
    text-align: left;
    max-width: 850px;
  }
  .cid-uN3jbW4Ib2 .carousel-caption {
    justify-content: flex-start !important;
    padding-left: 5rem;
  }
}
.cid-uN3jbW4Ib2 .mbr-slider .carousel-control {
  background: black!important;
  border-radius: 6px;
  height: 100px;
  width: 50px;
}
.cid-uN3jbW4Ib2 .mbri-right:before {
  content: "\e909";
  color: white;
}
.cid-uN3jbW4Ib2 .mbri-left:before {
  content: "\e90a";
  color: white;
}
.cid-uN3jbW4Ib2 .container {
  max-width: 100%;
  padding: 0;
}
.cid-uN3jbW4Ib2 .content-slider-wrap {
  width: 100%;
}
.cid-uN3jbW4Ib2 .carousel-inner > .active,
.cid-uN3jbW4Ib2 .carousel-inner > .next,
.cid-uN3jbW4Ib2 .carousel-inner > .prev {
  display: -webkit-flex;
}
.cid-uN3jbW4Ib2 .carousel-control .icon-next,
.cid-uN3jbW4Ib2 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uN3jbW4Ib2 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uN3jbW4Ib2 .mbr-iconfont {
  color: black;
  font-size: 2rem!important;
  font-family: 'Moririse2' !important;
  font-weight: 600;
}
.cid-uN3jbW4Ib2 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uN3jbW4Ib2 .boxed-slider > div {
  position: relative;
}
.cid-uN3jbW4Ib2 .container img {
  width: 100%;
}
.cid-uN3jbW4Ib2 .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uN3jbW4Ib2 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uN3jbW4Ib2 .mbr-table-cell {
  padding: 0;
}
.cid-uN3jbW4Ib2 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uN3jbW4Ib2 .carousel-caption {
  top: auto;
  right: 0;
  bottom: 2rem;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uN3jbW4Ib2 .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uN3jbW4Ib2 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-uN3jbW4Ib2 .carousel-item.active.right,
.cid-uN3jbW4Ib2 .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uN3jbW4Ib2 .carousel-item.active.left,
.cid-uN3jbW4Ib2 .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uN3jbW4Ib2 .carousel-item.active,
.cid-uN3jbW4Ib2 .carousel-item.next.left,
.cid-uN3jbW4Ib2 .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-uN3jbW4Ib2 .mbr-slider .carousel-control {
  top: 50%;
  margin-top: -1.5rem;
  font-size: 35px;
  transition: all .3s;
  z-index: 11;
}
@media (max-width: 767px) {
  .cid-uN3jbW4Ib2 .mbr-slider .carousel-control {
    top: 20%;
  }
}
.cid-uN3jbW4Ib2 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uN3jbW4Ib2 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uN3jbW4Ib2 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-uN3jbW4Ib2 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uN3jbW4Ib2 .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 10px;
  width: 10px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uN3jbW4Ib2 .mbr-slider .carousel-indicators li.active,
.cid-uN3jbW4Ib2 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uN3jbW4Ib2 .mbr-slider .carousel-indicators li::after,
.cid-uN3jbW4Ib2 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uN3jbW4Ib2 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uN3jbW4Ib2 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uN3jbW4Ib2 .mbr-slider > .container img {
  width: 100%;
}
.cid-uN3jbW4Ib2 .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uN3jbW4Ib2 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uN3jbW4Ib2 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uN3jbW4Ib2 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uN3jbW4Ib2 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uN3jbW4Ib2 .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-uN3jbW4Ib2 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uN3jbW4Ib2 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uN3jbW4Ib2 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uN3jbW4Ib2 .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uN3jbW4Ib2 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uN3jbW4Ib2 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uN3jbW4Ib2 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uN3jbW4Ib2 .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-uN3jbW4Ib2 .carousel-inner {
  height: 100%;
}
.cid-uN3jbW4Ib2 .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-uN3jbW4Ib2 .image_wrapper {
  height: 630px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-uN3jbW4Ib2 .image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uN3jbW4Ib2 .carousel-item .container-slide {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uN3jbW4Ib2 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uN3jbW4Ib2 .content-slider-wrap {
    width: 100%!important;
  }
  .cid-uN3jbW4Ib2 .image_wrapper {
    height: 378px;
  }
}
.cid-uN3848Zf6F {
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  background-color: #61616e;
}
.cid-uN3848Zf6F .bg-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #ffffff;
  height: 100%;
  width: 30%;
}
.cid-uN3848Zf6F .card-title {
  color: #ffffff;
}
.cid-uN3848Zf6F .mbr-text,
.cid-uN3848Zf6F .mbr-section-btn {
  color: #f8f8f8;
}
@media (min-width: 992px) {
  .cid-uN3848Zf6F .text-wrapper {
    padding-left: 5rem;
  }
  .cid-uN3848Zf6F .image-wrapper img {
    width: 650px;
    height: 615px;
    object-fit: cover;
  }
  .cid-uN3848Zf6F .item-btn {
    width: 10.6rem;
    height: 10.6rem;
  }
  .cid-uN3848Zf6F .item-btn:hover {
    color: #ffffff;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uN3848Zf6F .text-wrapper {
    padding-left: 2rem;
    position: relative;
  }
  .cid-uN3848Zf6F .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uN3848Zf6F .item-btn {
    width: 7rem;
    height: 7rem;
  }
}
@media (max-width: 767px) {
  .cid-uN3848Zf6F .bg-wrapper {
    display: none;
  }
  .cid-uN3848Zf6F .text-wrapper {
    text-align: center;
  }
  .cid-uN3848Zf6F .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uN3848Zf6F .item-btn {
    width: 7rem;
    height: 7rem;
    position: static;
  }
}
.cid-uN3848Zf6F .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 600px) {
  .cid-uN3848Zf6F .card-title {
    letter-spacing: -1px;
  }
}
.cid-uMYQL8JWMH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uMYQL8JWMH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMYQL8JWMH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMYQL8JWMH .row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uMYQL8JWMH .card-wrap:first-child {
    padding-right: 110px;
  }
}
@media (max-width: 992px) {
  .cid-uMYQL8JWMH .title-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 425px) {
  .cid-uMYQL8JWMH .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uMYQL8JWMH .title-wrapper .mbr-section-title {
  margin-bottom: 25px;
}
.cid-uMYQL8JWMH .title-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-uMYQL8JWMH .title-wrapper .mbr-text {
  margin-bottom: 27px;
}
.cid-uMYQL8JWMH .panel-group .card {
  border-bottom: 1px solid #e2e2e2;
  border-radius: 0;
}
.cid-uMYQL8JWMH .panel-group .card .card-header {
  padding: 15px 10px 15px 5px;
  background-color: transparent;
  border: none;
}
.cid-uMYQL8JWMH .panel-group .card .card-header .panel-title {
  display: flex;
}
.cid-uMYQL8JWMH .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont,
.cid-uMYQL8JWMH .panel-group .card .card-header .panel-title:hover .icon-wrapper .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uMYQL8JWMH .panel-group .card .card-header .panel-title .icon-wrapper {
  min-width: 36px;
  width: 36px;
  height: 36px;
  background-color: #ffb18a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-uMYQL8JWMH .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #ffffff;
  transition: all .3s ease;
}
.cid-uMYQL8JWMH .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-left: 26px;
  margin-bottom: 0;
}
.cid-uMYQL8JWMH .panel-group .card .panel-collapse .panel-body {
  padding: 0 0 30px 66px;
}
.cid-uMYQL8JWMH .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uMYQL8JWMH .mbr-section-title {
  color: #E0BDB6;
}
.cid-uMYQL8JWMH .mbr-section-subtitle {
  color: #747474;
}
.cid-uMYQL8JWMH .mbr-text {
  color: #747474;
}
.cid-uMYQL8JWMH .panel-title-edit {
  color: #47b5ed;
}
.cid-uMYQL8JWMH .panel-text {
  color: #747474;
}
.cid-uMYpknUoUp {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #61616e;
}
.cid-uMYpknUoUp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMYpknUoUp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMYpknUoUp .row {
  justify-content: space-between;
}
.cid-uMYpknUoUp .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uMYpknUoUp .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uMYpknUoUp .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uMYpknUoUp .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uMYpknUoUp .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-uMYpknUoUp .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uMYpknUoUp .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uMYpknUoUp .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uMYpknUoUp .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uMYpknUoUp .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-uMYpknUoUp .list-wrapper .list .item-wrap:hover,
.cid-uMYpknUoUp .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uMYpknUoUp .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uMYpknUoUp .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uMYpknUoUp .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uMYpknUoUp .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-uMYpknUoUp .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-uMYpknUoUp .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uMYpknUoUp .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uMYpknUoUp .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uMYpknUoUp .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uMYpknUoUp .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uMYpknUoUp .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uMYpknUoUp .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-uMYpknUoUp .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uMYpknUoUp .mbr-section-title {
  color: #000000;
}
.cid-uMYpknUoUp .mbr-text {
  color: #ffffff;
}
.cid-uMYpknUoUp .list {
  color: #000000;
}
.cid-uMYpknUoUp .mbr-desc {
  color: #000000;
}
.cid-uMYpknUoUp .mbr-copy {
  color: #000000;
}
.cid-uMYpknUoUp .mbr-desc,
.cid-uMYpknUoUp .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-uMYpknUoUp .mbr-copy,
.cid-uMYpknUoUp .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-uMYpknUoUp .mbr-section-title,
.cid-uMYpknUoUp .mbr-section-btn {
  color: #ffffff;
}
.cid-uMYpknUoUp .list,
.cid-uMYpknUoUp .item-wrap {
  color: #ffffff;
}
.cid-uN0xBmIKYn {
  z-index: 1000;
  width: 100%;
}
.cid-uN0xBmIKYn nav.navbar {
  position: fixed;
}
.cid-uN0xBmIKYn .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-uN0xBmIKYn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uN0xBmIKYn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uN0xBmIKYn .dropdown-item:hover,
.cid-uN0xBmIKYn .dropdown-item:focus {
  background: #17171a !important;
  color: white !important;
}
.cid-uN0xBmIKYn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uN0xBmIKYn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uN0xBmIKYn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uN0xBmIKYn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uN0xBmIKYn .nav-link {
  position: relative;
}
.cid-uN0xBmIKYn .container {
  display: flex;
  margin: auto;
}
.cid-uN0xBmIKYn .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uN0xBmIKYn .dropdown-menu,
.cid-uN0xBmIKYn .navbar.opened {
  background: #7b7b8b !important;
}
.cid-uN0xBmIKYn .nav-item:focus,
.cid-uN0xBmIKYn .nav-link:focus {
  outline: none;
}
.cid-uN0xBmIKYn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uN0xBmIKYn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uN0xBmIKYn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uN0xBmIKYn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uN0xBmIKYn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uN0xBmIKYn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uN0xBmIKYn .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(123, 123, 139, 0.6);
}
.cid-uN0xBmIKYn .navbar.opened {
  transition: all 0.3s;
}
.cid-uN0xBmIKYn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uN0xBmIKYn .navbar .navbar-logo img {
  width: auto;
}
.cid-uN0xBmIKYn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uN0xBmIKYn .navbar.collapsed {
  justify-content: center;
}
.cid-uN0xBmIKYn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uN0xBmIKYn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uN0xBmIKYn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uN0xBmIKYn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uN0xBmIKYn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uN0xBmIKYn .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-uN0xBmIKYn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uN0xBmIKYn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uN0xBmIKYn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uN0xBmIKYn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uN0xBmIKYn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uN0xBmIKYn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uN0xBmIKYn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uN0xBmIKYn .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-uN0xBmIKYn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uN0xBmIKYn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uN0xBmIKYn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uN0xBmIKYn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uN0xBmIKYn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uN0xBmIKYn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uN0xBmIKYn .navbar.navbar-short {
  min-height: 60px;
}
.cid-uN0xBmIKYn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uN0xBmIKYn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uN0xBmIKYn .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uN0xBmIKYn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uN0xBmIKYn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uN0xBmIKYn .dropdown-item.active,
.cid-uN0xBmIKYn .dropdown-item:active {
  background-color: transparent;
}
.cid-uN0xBmIKYn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uN0xBmIKYn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uN0xBmIKYn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uN0xBmIKYn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #7b7b8b;
}
.cid-uN0xBmIKYn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uN0xBmIKYn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uN0xBmIKYn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uN0xBmIKYn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uN0xBmIKYn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uN0xBmIKYn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uN0xBmIKYn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uN0xBmIKYn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN0xBmIKYn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN0xBmIKYn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uN0xBmIKYn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN0xBmIKYn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uN0xBmIKYn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uN0xBmIKYn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN0xBmIKYn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uN0xBmIKYn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uN0xBmIKYn .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-uN0xBmIKYn .navbar {
    height: 70px;
  }
  .cid-uN0xBmIKYn .navbar.opened {
    height: auto;
  }
  .cid-uN0xBmIKYn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uN39wpzMKG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #254b45;
}
.cid-uN39wpzMKG .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uN39wpzMKG .modal-body .close {
  background: #1b1b1b;
}
.cid-uN39wpzMKG .modal-body .close span {
  font-style: normal;
}
@media (min-width: 992px) {
  .cid-uN39wpzMKG .align-center {
    text-align: left;
    max-width: 850px;
  }
  .cid-uN39wpzMKG .carousel-caption {
    justify-content: flex-start !important;
    padding-left: 5rem;
  }
}
.cid-uN39wpzMKG .mbr-slider .carousel-control {
  background: black!important;
  border-radius: 6px;
  height: 100px;
  width: 50px;
}
.cid-uN39wpzMKG .mbri-right:before {
  content: "\e909";
  color: white;
}
.cid-uN39wpzMKG .mbri-left:before {
  content: "\e90a";
  color: white;
}
.cid-uN39wpzMKG .container {
  max-width: 100%;
  padding: 0;
}
.cid-uN39wpzMKG .content-slider-wrap {
  width: 100%;
}
.cid-uN39wpzMKG .carousel-inner > .active,
.cid-uN39wpzMKG .carousel-inner > .next,
.cid-uN39wpzMKG .carousel-inner > .prev {
  display: -webkit-flex;
}
.cid-uN39wpzMKG .carousel-control .icon-next,
.cid-uN39wpzMKG .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uN39wpzMKG .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uN39wpzMKG .mbr-iconfont {
  color: black;
  font-size: 2rem!important;
  font-family: 'Moririse2' !important;
  font-weight: 600;
}
.cid-uN39wpzMKG .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uN39wpzMKG .boxed-slider > div {
  position: relative;
}
.cid-uN39wpzMKG .container img {
  width: 100%;
}
.cid-uN39wpzMKG .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uN39wpzMKG .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uN39wpzMKG .mbr-table-cell {
  padding: 0;
}
.cid-uN39wpzMKG .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uN39wpzMKG .carousel-caption {
  top: auto;
  right: 0;
  bottom: 2rem;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uN39wpzMKG .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uN39wpzMKG .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-uN39wpzMKG .carousel-item.active.right,
.cid-uN39wpzMKG .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uN39wpzMKG .carousel-item.active.left,
.cid-uN39wpzMKG .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uN39wpzMKG .carousel-item.active,
.cid-uN39wpzMKG .carousel-item.next.left,
.cid-uN39wpzMKG .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-uN39wpzMKG .mbr-slider .carousel-control {
  top: 50%;
  margin-top: -1.5rem;
  font-size: 35px;
  transition: all .3s;
  z-index: 11;
}
@media (max-width: 767px) {
  .cid-uN39wpzMKG .mbr-slider .carousel-control {
    top: 20%;
  }
}
.cid-uN39wpzMKG .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uN39wpzMKG .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uN39wpzMKG .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-uN39wpzMKG .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uN39wpzMKG .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 10px;
  width: 10px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uN39wpzMKG .mbr-slider .carousel-indicators li.active,
.cid-uN39wpzMKG .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uN39wpzMKG .mbr-slider .carousel-indicators li::after,
.cid-uN39wpzMKG .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uN39wpzMKG .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uN39wpzMKG .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uN39wpzMKG .mbr-slider > .container img {
  width: 100%;
}
.cid-uN39wpzMKG .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uN39wpzMKG .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uN39wpzMKG .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uN39wpzMKG .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uN39wpzMKG .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uN39wpzMKG .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-uN39wpzMKG .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uN39wpzMKG .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uN39wpzMKG .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uN39wpzMKG .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uN39wpzMKG .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uN39wpzMKG .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uN39wpzMKG .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uN39wpzMKG .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-uN39wpzMKG .carousel-inner {
  height: 100%;
}
.cid-uN39wpzMKG .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-uN39wpzMKG .image_wrapper {
  height: 880px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-uN39wpzMKG .image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uN39wpzMKG .carousel-item .container-slide {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uN39wpzMKG .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uN39wpzMKG .content-slider-wrap {
    width: 100%!important;
  }
  .cid-uN39wpzMKG .image_wrapper {
    height: 528px;
  }
}
.cid-uN0xBnbECS {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uN0xBnbECS .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uN0xBnbECS .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uN0xBnbECS .text-wrapper {
    padding: 0 5.5rem;
    margin-bottom: 3rem;
    padding: 0 4rem;
  }
}
@media (max-width: 768px) {
  .cid-uN0xBnbECS .text-wrapper {
    margin-bottom: 0;
  }
}
.cid-uN0xBnbECS .item-btn {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  position: absolute;
  top: -4.5rem;
  right: 2.5rem;
}
@media (max-width: 992px) {
  .cid-uN0xBnbECS .item-btn {
    width: 6rem;
    height: 6rem;
    top: -3.5rem;
    right: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uN0xBnbECS .item-btn {
    width: 4rem;
    height: 4rem;
    top: -2.5rem;
    right: 1.5rem;
  }
}
.cid-uN0xBnbECS .icon-wrap span {
  margin: 0;
}
@media (max-width: 768px) {
  .cid-uN0xBnbECS .icon-wrap span {
    transform: scale(0.6);
  }
}
@media (max-width: 600px) {
  .cid-uN0xBnbECS .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-uN0xBnbECS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN0xBnbECS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN0xBnnL9l {
  padding-top: 3.5rem;
  padding-bottom: 1.5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uN0xBnnL9l .image-wrapper {
    width: 100%;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uN0xBnnL9l .image-wrapper {
    width: 49%;
  }
}
.cid-uN0xBnnL9l .text-wrapper {
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uN0xBnnL9l .text-wrapper {
    width: 100%;
    text-align: center;
  }
  .cid-uN0xBnnL9l .text-wrapper h3 {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .cid-uN0xBnnL9l .text-wrapper p {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-uN0xBnnL9l .text-wrapper {
    padding: 0 4rem;
    width: 49%;
  }
  .cid-uN0xBnnL9l .text-wrapper h3 {
    width: 85%;
    margin-bottom: 2.2rem;
  }
  .cid-uN0xBnnL9l .text-wrapper p {
    width: 50%;
    margin-bottom: 1rem;
  }
}
.cid-uN0xBnnL9l .item-btn {
  width: 10.6rem;
  height: 10.6rem;
  position: absolute;
  top: 5.2rem;
  right: 3.5rem;
  top: 1rem;
}
.cid-uN0xBnnL9l .item-btn:hover {
  opacity: 0.8;
}
.cid-uN0xBnnL9l .item-btn:hover > span {
  transform: scale(1.3) translateY(0.5rem);
}
.cid-uN0xBnnL9l .item-btn span {
  transform: scale(1.3);
  transition: all 0.8s;
}
@media (max-width: 1199px) {
  .cid-uN0xBnnL9l .item-btn {
    width: 7.6rem;
    height: 7.6rem;
    top: 6.2rem;
    right: 2.5rem;
    display: none;
  }
  .cid-uN0xBnnL9l .item-btn:hover > span {
    transform: translateY(0.5rem);
  }
}
@media (max-width: 992px) {
  .cid-uN0xBnnL9l .item-btn {
    width: 4rem;
    height: 4rem;
    position: static;
    display: inline-flex;
    align-self: center;
    margin-bottom: 1.6rem;
  }
  .cid-uN0xBnnL9l .item-btn:hover > span {
    transform: scale(0.6) translateY(0.3rem);
  }
  .cid-uN0xBnnL9l .item-btn span {
    transform: scale(0.6);
    transition: all 0.8s;
  }
}
@media (max-width: 767px) {
  .cid-uN0xBnnL9l .item-btn {
    position: static;
    margin-top: 0rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 600px) {
  .cid-uN0xBnnL9l .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-uN0xBnnL9l .mbr-section-title a {
  color: #9b9ba5;
}
.cid-uN0xBnnL9l P {
  color: #9b9ba5;
}
.cid-uN0xBnnL9l .mbr-section-subtitle {
  color: #9b9ba5;
  text-align: left;
}
.cid-uN0xBok0uR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #61616e;
}
.cid-uN0xBok0uR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN0xBok0uR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN0xBok0uR .row {
  justify-content: space-between;
}
.cid-uN0xBok0uR .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0xBok0uR .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0xBok0uR .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uN0xBok0uR .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uN0xBok0uR .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-uN0xBok0uR .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0xBok0uR .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0xBok0uR .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uN0xBok0uR .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uN0xBok0uR .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-uN0xBok0uR .list-wrapper .list .item-wrap:hover,
.cid-uN0xBok0uR .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uN0xBok0uR .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uN0xBok0uR .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0xBok0uR .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0xBok0uR .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-uN0xBok0uR .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-uN0xBok0uR .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uN0xBok0uR .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uN0xBok0uR .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uN0xBok0uR .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uN0xBok0uR .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uN0xBok0uR .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uN0xBok0uR .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-uN0xBok0uR .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uN0xBok0uR .mbr-section-title {
  color: #000000;
}
.cid-uN0xBok0uR .mbr-text {
  color: #ffffff;
}
.cid-uN0xBok0uR .list {
  color: #000000;
}
.cid-uN0xBok0uR .mbr-desc {
  color: #000000;
}
.cid-uN0xBok0uR .mbr-copy {
  color: #000000;
}
.cid-uN0xBok0uR .mbr-desc,
.cid-uN0xBok0uR .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-uN0xBok0uR .mbr-copy,
.cid-uN0xBok0uR .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-uN0xBok0uR .mbr-section-title,
.cid-uN0xBok0uR .mbr-section-btn {
  color: #ffffff;
}
.cid-uN0xBok0uR .list,
.cid-uN0xBok0uR .item-wrap {
  color: #ffffff;
}
.cid-uN0xEZBcmM {
  z-index: 1000;
  width: 100%;
}
.cid-uN0xEZBcmM nav.navbar {
  position: fixed;
}
.cid-uN0xEZBcmM .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-uN0xEZBcmM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uN0xEZBcmM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uN0xEZBcmM .dropdown-item:hover,
.cid-uN0xEZBcmM .dropdown-item:focus {
  background: #17171a !important;
  color: white !important;
}
.cid-uN0xEZBcmM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uN0xEZBcmM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uN0xEZBcmM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uN0xEZBcmM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uN0xEZBcmM .nav-link {
  position: relative;
}
.cid-uN0xEZBcmM .container {
  display: flex;
  margin: auto;
}
.cid-uN0xEZBcmM .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uN0xEZBcmM .dropdown-menu,
.cid-uN0xEZBcmM .navbar.opened {
  background: #7b7b8b !important;
}
.cid-uN0xEZBcmM .nav-item:focus,
.cid-uN0xEZBcmM .nav-link:focus {
  outline: none;
}
.cid-uN0xEZBcmM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uN0xEZBcmM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uN0xEZBcmM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uN0xEZBcmM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uN0xEZBcmM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uN0xEZBcmM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uN0xEZBcmM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(123, 123, 139, 0.6);
}
.cid-uN0xEZBcmM .navbar.opened {
  transition: all 0.3s;
}
.cid-uN0xEZBcmM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uN0xEZBcmM .navbar .navbar-logo img {
  width: auto;
}
.cid-uN0xEZBcmM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uN0xEZBcmM .navbar.collapsed {
  justify-content: center;
}
.cid-uN0xEZBcmM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uN0xEZBcmM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uN0xEZBcmM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uN0xEZBcmM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uN0xEZBcmM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uN0xEZBcmM .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-uN0xEZBcmM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uN0xEZBcmM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uN0xEZBcmM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uN0xEZBcmM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uN0xEZBcmM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uN0xEZBcmM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uN0xEZBcmM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uN0xEZBcmM .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-uN0xEZBcmM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uN0xEZBcmM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uN0xEZBcmM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uN0xEZBcmM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uN0xEZBcmM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uN0xEZBcmM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uN0xEZBcmM .navbar.navbar-short {
  min-height: 60px;
}
.cid-uN0xEZBcmM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uN0xEZBcmM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uN0xEZBcmM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uN0xEZBcmM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uN0xEZBcmM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uN0xEZBcmM .dropdown-item.active,
.cid-uN0xEZBcmM .dropdown-item:active {
  background-color: transparent;
}
.cid-uN0xEZBcmM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uN0xEZBcmM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uN0xEZBcmM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uN0xEZBcmM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #7b7b8b;
}
.cid-uN0xEZBcmM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uN0xEZBcmM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uN0xEZBcmM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uN0xEZBcmM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uN0xEZBcmM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uN0xEZBcmM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uN0xEZBcmM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uN0xEZBcmM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN0xEZBcmM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN0xEZBcmM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uN0xEZBcmM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN0xEZBcmM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uN0xEZBcmM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uN0xEZBcmM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN0xEZBcmM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uN0xEZBcmM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uN0xEZBcmM .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-uN0xEZBcmM .navbar {
    height: 70px;
  }
  .cid-uN0xEZBcmM .navbar.opened {
    height: auto;
  }
  .cid-uN0xEZBcmM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uN39HYKWiY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #254b45;
}
.cid-uN39HYKWiY .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uN39HYKWiY .modal-body .close {
  background: #1b1b1b;
}
.cid-uN39HYKWiY .modal-body .close span {
  font-style: normal;
}
@media (min-width: 992px) {
  .cid-uN39HYKWiY .align-center {
    text-align: left;
    max-width: 850px;
  }
  .cid-uN39HYKWiY .carousel-caption {
    justify-content: flex-start !important;
    padding-left: 5rem;
  }
}
.cid-uN39HYKWiY .mbr-slider .carousel-control {
  background: black!important;
  border-radius: 6px;
  height: 100px;
  width: 50px;
}
.cid-uN39HYKWiY .mbri-right:before {
  content: "\e909";
  color: white;
}
.cid-uN39HYKWiY .mbri-left:before {
  content: "\e90a";
  color: white;
}
.cid-uN39HYKWiY .container {
  max-width: 100%;
  padding: 0;
}
.cid-uN39HYKWiY .content-slider-wrap {
  width: 100%;
}
.cid-uN39HYKWiY .carousel-inner > .active,
.cid-uN39HYKWiY .carousel-inner > .next,
.cid-uN39HYKWiY .carousel-inner > .prev {
  display: -webkit-flex;
}
.cid-uN39HYKWiY .carousel-control .icon-next,
.cid-uN39HYKWiY .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uN39HYKWiY .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uN39HYKWiY .mbr-iconfont {
  color: black;
  font-size: 2rem!important;
  font-family: 'Moririse2' !important;
  font-weight: 600;
}
.cid-uN39HYKWiY .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uN39HYKWiY .boxed-slider > div {
  position: relative;
}
.cid-uN39HYKWiY .container img {
  width: 100%;
}
.cid-uN39HYKWiY .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uN39HYKWiY .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uN39HYKWiY .mbr-table-cell {
  padding: 0;
}
.cid-uN39HYKWiY .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uN39HYKWiY .carousel-caption {
  top: auto;
  right: 0;
  bottom: 2rem;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uN39HYKWiY .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uN39HYKWiY .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-uN39HYKWiY .carousel-item.active.right,
.cid-uN39HYKWiY .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uN39HYKWiY .carousel-item.active.left,
.cid-uN39HYKWiY .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uN39HYKWiY .carousel-item.active,
.cid-uN39HYKWiY .carousel-item.next.left,
.cid-uN39HYKWiY .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-uN39HYKWiY .mbr-slider .carousel-control {
  top: 50%;
  margin-top: -1.5rem;
  font-size: 35px;
  transition: all .3s;
  z-index: 11;
}
@media (max-width: 767px) {
  .cid-uN39HYKWiY .mbr-slider .carousel-control {
    top: 20%;
  }
}
.cid-uN39HYKWiY .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uN39HYKWiY .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uN39HYKWiY .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-uN39HYKWiY .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uN39HYKWiY .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 10px;
  width: 10px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uN39HYKWiY .mbr-slider .carousel-indicators li.active,
.cid-uN39HYKWiY .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uN39HYKWiY .mbr-slider .carousel-indicators li::after,
.cid-uN39HYKWiY .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uN39HYKWiY .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uN39HYKWiY .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uN39HYKWiY .mbr-slider > .container img {
  width: 100%;
}
.cid-uN39HYKWiY .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uN39HYKWiY .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uN39HYKWiY .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uN39HYKWiY .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uN39HYKWiY .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uN39HYKWiY .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-uN39HYKWiY .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uN39HYKWiY .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uN39HYKWiY .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uN39HYKWiY .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uN39HYKWiY .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uN39HYKWiY .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uN39HYKWiY .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uN39HYKWiY .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-uN39HYKWiY .carousel-inner {
  height: 100%;
}
.cid-uN39HYKWiY .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-uN39HYKWiY .image_wrapper {
  height: 880px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-uN39HYKWiY .image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uN39HYKWiY .carousel-item .container-slide {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uN39HYKWiY .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uN39HYKWiY .content-slider-wrap {
    width: 100%!important;
  }
  .cid-uN39HYKWiY .image_wrapper {
    height: 528px;
  }
}
.cid-uN0xF00OrB {
  padding-top: 3.5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uN0xF00OrB .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uN0xF00OrB .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uN0xF00OrB .text-wrapper {
    padding: 0 5.5rem;
    margin-bottom: 3rem;
    padding: 0 4rem;
  }
}
@media (max-width: 768px) {
  .cid-uN0xF00OrB .text-wrapper {
    margin-bottom: 0;
  }
}
.cid-uN0xF00OrB .item-btn {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  position: absolute;
  top: -4.5rem;
  right: 2.5rem;
}
@media (max-width: 992px) {
  .cid-uN0xF00OrB .item-btn {
    width: 6rem;
    height: 6rem;
    top: -3.5rem;
    right: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uN0xF00OrB .item-btn {
    width: 4rem;
    height: 4rem;
    top: -2.5rem;
    right: 1.5rem;
  }
}
.cid-uN0xF00OrB .icon-wrap span {
  margin: 0;
}
@media (max-width: 768px) {
  .cid-uN0xF00OrB .icon-wrap span {
    transform: scale(0.6);
  }
}
@media (max-width: 600px) {
  .cid-uN0xF00OrB .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-uN0xF00OrB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN0xF00OrB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN0xF0btCA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uN0xF0btCA .image-wrapper {
    width: 100%;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uN0xF0btCA .image-wrapper {
    width: 49%;
  }
}
.cid-uN0xF0btCA .text-wrapper {
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uN0xF0btCA .text-wrapper {
    width: 100%;
    text-align: center;
  }
  .cid-uN0xF0btCA .text-wrapper h3 {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .cid-uN0xF0btCA .text-wrapper p {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-uN0xF0btCA .text-wrapper {
    padding: 0 4rem;
    width: 49%;
  }
  .cid-uN0xF0btCA .text-wrapper h3 {
    width: 85%;
    margin-bottom: 2.2rem;
  }
  .cid-uN0xF0btCA .text-wrapper p {
    width: 50%;
    margin-bottom: 1rem;
  }
}
.cid-uN0xF0btCA .item-btn {
  width: 10.6rem;
  height: 10.6rem;
  position: absolute;
  top: 5.2rem;
  right: 3.5rem;
  top: 1rem;
}
.cid-uN0xF0btCA .item-btn:hover {
  opacity: 0.8;
}
.cid-uN0xF0btCA .item-btn:hover > span {
  transform: scale(1.3) translateY(0.5rem);
}
.cid-uN0xF0btCA .item-btn span {
  transform: scale(1.3);
  transition: all 0.8s;
}
@media (max-width: 1199px) {
  .cid-uN0xF0btCA .item-btn {
    width: 7.6rem;
    height: 7.6rem;
    top: 6.2rem;
    right: 2.5rem;
    display: none;
  }
  .cid-uN0xF0btCA .item-btn:hover > span {
    transform: translateY(0.5rem);
  }
}
@media (max-width: 992px) {
  .cid-uN0xF0btCA .item-btn {
    width: 4rem;
    height: 4rem;
    position: static;
    display: inline-flex;
    align-self: center;
    margin-bottom: 1.6rem;
  }
  .cid-uN0xF0btCA .item-btn:hover > span {
    transform: scale(0.6) translateY(0.3rem);
  }
  .cid-uN0xF0btCA .item-btn span {
    transform: scale(0.6);
    transition: all 0.8s;
  }
}
@media (max-width: 767px) {
  .cid-uN0xF0btCA .item-btn {
    position: static;
    margin-top: 0rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 600px) {
  .cid-uN0xF0btCA .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-uN0xF0btCA .mbr-section-title a {
  color: #9b9ba5;
}
.cid-uN0xF0btCA P {
  color: #9b9ba5;
}
.cid-uN0xF0btCA .mbr-section-subtitle {
  color: #9b9ba5;
  text-align: left;
}
.cid-uN0xF16M00 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #61616e;
}
.cid-uN0xF16M00 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN0xF16M00 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN0xF16M00 .row {
  justify-content: space-between;
}
.cid-uN0xF16M00 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0xF16M00 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0xF16M00 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uN0xF16M00 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uN0xF16M00 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-uN0xF16M00 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0xF16M00 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0xF16M00 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uN0xF16M00 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uN0xF16M00 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-uN0xF16M00 .list-wrapper .list .item-wrap:hover,
.cid-uN0xF16M00 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uN0xF16M00 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uN0xF16M00 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0xF16M00 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0xF16M00 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-uN0xF16M00 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-uN0xF16M00 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uN0xF16M00 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uN0xF16M00 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uN0xF16M00 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uN0xF16M00 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uN0xF16M00 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uN0xF16M00 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-uN0xF16M00 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uN0xF16M00 .mbr-section-title {
  color: #000000;
}
.cid-uN0xF16M00 .mbr-text {
  color: #ffffff;
}
.cid-uN0xF16M00 .list {
  color: #000000;
}
.cid-uN0xF16M00 .mbr-desc {
  color: #000000;
}
.cid-uN0xF16M00 .mbr-copy {
  color: #000000;
}
.cid-uN0xF16M00 .mbr-desc,
.cid-uN0xF16M00 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-uN0xF16M00 .mbr-copy,
.cid-uN0xF16M00 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-uN0xF16M00 .mbr-section-title,
.cid-uN0xF16M00 .mbr-section-btn {
  color: #ffffff;
}
.cid-uN0xF16M00 .list,
.cid-uN0xF16M00 .item-wrap {
  color: #ffffff;
}
.cid-uNIYs6VBKD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #254b45;
}
.cid-uNIYs6VBKD .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uNIYs6VBKD .modal-body .close {
  background: #1b1b1b;
}
.cid-uNIYs6VBKD .modal-body .close span {
  font-style: normal;
}
@media (min-width: 992px) {
  .cid-uNIYs6VBKD .align-center {
    text-align: left;
    max-width: 850px;
  }
  .cid-uNIYs6VBKD .carousel-caption {
    justify-content: flex-start !important;
    padding-left: 5rem;
  }
}
.cid-uNIYs6VBKD .mbr-slider .carousel-control {
  background: black!important;
  border-radius: 6px;
  height: 100px;
  width: 50px;
}
.cid-uNIYs6VBKD .mbri-right:before {
  content: "\e909";
  color: white;
}
.cid-uNIYs6VBKD .mbri-left:before {
  content: "\e90a";
  color: white;
}
.cid-uNIYs6VBKD .container {
  max-width: 100%;
  padding: 0;
}
.cid-uNIYs6VBKD .content-slider-wrap {
  width: 100%;
}
.cid-uNIYs6VBKD .carousel-inner > .active,
.cid-uNIYs6VBKD .carousel-inner > .next,
.cid-uNIYs6VBKD .carousel-inner > .prev {
  display: -webkit-flex;
}
.cid-uNIYs6VBKD .carousel-control .icon-next,
.cid-uNIYs6VBKD .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uNIYs6VBKD .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uNIYs6VBKD .mbr-iconfont {
  color: black;
  font-size: 2rem!important;
  font-family: 'Moririse2' !important;
  font-weight: 600;
}
.cid-uNIYs6VBKD .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uNIYs6VBKD .boxed-slider > div {
  position: relative;
}
.cid-uNIYs6VBKD .container img {
  width: 100%;
}
.cid-uNIYs6VBKD .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uNIYs6VBKD .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uNIYs6VBKD .mbr-table-cell {
  padding: 0;
}
.cid-uNIYs6VBKD .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uNIYs6VBKD .carousel-caption {
  top: auto;
  right: 0;
  bottom: 2rem;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uNIYs6VBKD .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uNIYs6VBKD .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-uNIYs6VBKD .carousel-item.active.right,
.cid-uNIYs6VBKD .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uNIYs6VBKD .carousel-item.active.left,
.cid-uNIYs6VBKD .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uNIYs6VBKD .carousel-item.active,
.cid-uNIYs6VBKD .carousel-item.next.left,
.cid-uNIYs6VBKD .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-uNIYs6VBKD .mbr-slider .carousel-control {
  top: 50%;
  margin-top: -1.5rem;
  font-size: 35px;
  transition: all .3s;
  z-index: 11;
}
@media (max-width: 767px) {
  .cid-uNIYs6VBKD .mbr-slider .carousel-control {
    top: 20%;
  }
}
.cid-uNIYs6VBKD .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uNIYs6VBKD .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uNIYs6VBKD .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-uNIYs6VBKD .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uNIYs6VBKD .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 10px;
  width: 10px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uNIYs6VBKD .mbr-slider .carousel-indicators li.active,
.cid-uNIYs6VBKD .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uNIYs6VBKD .mbr-slider .carousel-indicators li::after,
.cid-uNIYs6VBKD .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uNIYs6VBKD .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uNIYs6VBKD .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uNIYs6VBKD .mbr-slider > .container img {
  width: 100%;
}
.cid-uNIYs6VBKD .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uNIYs6VBKD .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uNIYs6VBKD .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uNIYs6VBKD .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uNIYs6VBKD .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uNIYs6VBKD .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-uNIYs6VBKD .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uNIYs6VBKD .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uNIYs6VBKD .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uNIYs6VBKD .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uNIYs6VBKD .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uNIYs6VBKD .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uNIYs6VBKD .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uNIYs6VBKD .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-uNIYs6VBKD .carousel-inner {
  height: 100%;
}
.cid-uNIYs6VBKD .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-uNIYs6VBKD .image_wrapper {
  height: 950px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-uNIYs6VBKD .image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uNIYs6VBKD .carousel-item .container-slide {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uNIYs6VBKD .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uNIYs6VBKD .content-slider-wrap {
    width: 100%!important;
  }
  .cid-uNIYs6VBKD .image_wrapper {
    height: 570px;
  }
}
.cid-uN0xJ3YXcr {
  z-index: 1000;
  width: 100%;
}
.cid-uN0xJ3YXcr nav.navbar {
  position: fixed;
}
.cid-uN0xJ3YXcr .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-uN0xJ3YXcr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uN0xJ3YXcr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uN0xJ3YXcr .dropdown-item:hover,
.cid-uN0xJ3YXcr .dropdown-item:focus {
  background: #17171a !important;
  color: white !important;
}
.cid-uN0xJ3YXcr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uN0xJ3YXcr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uN0xJ3YXcr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uN0xJ3YXcr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uN0xJ3YXcr .nav-link {
  position: relative;
}
.cid-uN0xJ3YXcr .container {
  display: flex;
  margin: auto;
}
.cid-uN0xJ3YXcr .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uN0xJ3YXcr .dropdown-menu,
.cid-uN0xJ3YXcr .navbar.opened {
  background: #7b7b8b !important;
}
.cid-uN0xJ3YXcr .nav-item:focus,
.cid-uN0xJ3YXcr .nav-link:focus {
  outline: none;
}
.cid-uN0xJ3YXcr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uN0xJ3YXcr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uN0xJ3YXcr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uN0xJ3YXcr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uN0xJ3YXcr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uN0xJ3YXcr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uN0xJ3YXcr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(123, 123, 139, 0.6);
}
.cid-uN0xJ3YXcr .navbar.opened {
  transition: all 0.3s;
}
.cid-uN0xJ3YXcr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uN0xJ3YXcr .navbar .navbar-logo img {
  width: auto;
}
.cid-uN0xJ3YXcr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uN0xJ3YXcr .navbar.collapsed {
  justify-content: center;
}
.cid-uN0xJ3YXcr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uN0xJ3YXcr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uN0xJ3YXcr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uN0xJ3YXcr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uN0xJ3YXcr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uN0xJ3YXcr .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-uN0xJ3YXcr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uN0xJ3YXcr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uN0xJ3YXcr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uN0xJ3YXcr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uN0xJ3YXcr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uN0xJ3YXcr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uN0xJ3YXcr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uN0xJ3YXcr .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-uN0xJ3YXcr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uN0xJ3YXcr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uN0xJ3YXcr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uN0xJ3YXcr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uN0xJ3YXcr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uN0xJ3YXcr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uN0xJ3YXcr .navbar.navbar-short {
  min-height: 60px;
}
.cid-uN0xJ3YXcr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uN0xJ3YXcr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uN0xJ3YXcr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uN0xJ3YXcr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uN0xJ3YXcr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uN0xJ3YXcr .dropdown-item.active,
.cid-uN0xJ3YXcr .dropdown-item:active {
  background-color: transparent;
}
.cid-uN0xJ3YXcr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uN0xJ3YXcr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uN0xJ3YXcr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uN0xJ3YXcr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #7b7b8b;
}
.cid-uN0xJ3YXcr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uN0xJ3YXcr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uN0xJ3YXcr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uN0xJ3YXcr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uN0xJ3YXcr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uN0xJ3YXcr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uN0xJ3YXcr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uN0xJ3YXcr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN0xJ3YXcr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN0xJ3YXcr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uN0xJ3YXcr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN0xJ3YXcr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uN0xJ3YXcr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uN0xJ3YXcr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN0xJ3YXcr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uN0xJ3YXcr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uN0xJ3YXcr .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-uN0xJ3YXcr .navbar {
    height: 70px;
  }
  .cid-uN0xJ3YXcr .navbar.opened {
    height: auto;
  }
  .cid-uN0xJ3YXcr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uN0xJ4wZcZ {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uN0xJ4wZcZ .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uN0xJ4wZcZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uN0xJ4wZcZ .text-wrapper {
    padding: 0 5.5rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .cid-uN0xJ4wZcZ .text-wrapper {
    margin-bottom: 0;
  }
}
.cid-uN0xJ4wZcZ .item-btn {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  position: absolute;
  top: -4.5rem;
  right: 2.5rem;
}
@media (max-width: 992px) {
  .cid-uN0xJ4wZcZ .item-btn {
    width: 6rem;
    height: 6rem;
    top: -3.5rem;
    right: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uN0xJ4wZcZ .item-btn {
    width: 4rem;
    height: 4rem;
    top: -2.5rem;
    right: 1.5rem;
  }
}
.cid-uN0xJ4wZcZ .icon-wrap span {
  margin: 0;
}
@media (max-width: 768px) {
  .cid-uN0xJ4wZcZ .icon-wrap span {
    transform: scale(0.6);
  }
}
@media (max-width: 600px) {
  .cid-uN0xJ4wZcZ .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-uN0xJ4wZcZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN0xJ4wZcZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN0xJ4JSrn {
  padding-top: 0rem;
  padding-bottom: 1.5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uN0xJ4JSrn .image-wrapper {
    width: 100%;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uN0xJ4JSrn .image-wrapper {
    width: 49%;
  }
}
.cid-uN0xJ4JSrn .text-wrapper {
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uN0xJ4JSrn .text-wrapper {
    width: 100%;
    text-align: center;
  }
  .cid-uN0xJ4JSrn .text-wrapper h3 {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .cid-uN0xJ4JSrn .text-wrapper p {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-uN0xJ4JSrn .text-wrapper {
    padding: 0 4rem;
    width: 49%;
  }
  .cid-uN0xJ4JSrn .text-wrapper h3 {
    width: 85%;
    margin-bottom: 2.2rem;
  }
  .cid-uN0xJ4JSrn .text-wrapper p {
    width: 50%;
    margin-bottom: 1rem;
  }
}
.cid-uN0xJ4JSrn .item-btn {
  width: 10.6rem;
  height: 10.6rem;
  position: absolute;
  top: 5.2rem;
  right: 3.5rem;
}
.cid-uN0xJ4JSrn .item-btn:hover {
  opacity: 0.8;
}
.cid-uN0xJ4JSrn .item-btn:hover > span {
  transform: scale(1.3) translateY(0.5rem);
}
.cid-uN0xJ4JSrn .item-btn span {
  transform: scale(1.3);
  transition: all 0.8s;
}
@media (max-width: 1199px) {
  .cid-uN0xJ4JSrn .item-btn {
    width: 7.6rem;
    height: 7.6rem;
    top: 6.2rem;
    right: 2.5rem;
  }
  .cid-uN0xJ4JSrn .item-btn:hover > span {
    transform: translateY(0.5rem);
  }
}
@media (max-width: 992px) {
  .cid-uN0xJ4JSrn .item-btn {
    width: 4rem;
    height: 4rem;
    position: static;
    display: inline-flex;
    align-self: center;
    margin-bottom: 1.6rem;
  }
  .cid-uN0xJ4JSrn .item-btn:hover > span {
    transform: scale(0.6) translateY(0.3rem);
  }
  .cid-uN0xJ4JSrn .item-btn span {
    transform: scale(0.6);
    transition: all 0.8s;
  }
}
@media (max-width: 767px) {
  .cid-uN0xJ4JSrn .item-btn {
    position: static;
    margin-top: 0rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 600px) {
  .cid-uN0xJ4JSrn .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-uN0xJ4JSrn .mbr-section-title a {
  color: #9b9ba5;
}
.cid-uN0xJ4JSrn P {
  color: #9b9ba5;
}
.cid-uN0xJ4JSrn .mbr-section-subtitle {
  color: #9b9ba5;
  text-align: left;
}
.cid-uN0xJ5DtlN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #61616e;
}
.cid-uN0xJ5DtlN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN0xJ5DtlN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN0xJ5DtlN .row {
  justify-content: space-between;
}
.cid-uN0xJ5DtlN .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0xJ5DtlN .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0xJ5DtlN .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uN0xJ5DtlN .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uN0xJ5DtlN .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-uN0xJ5DtlN .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0xJ5DtlN .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0xJ5DtlN .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uN0xJ5DtlN .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uN0xJ5DtlN .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-uN0xJ5DtlN .list-wrapper .list .item-wrap:hover,
.cid-uN0xJ5DtlN .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uN0xJ5DtlN .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uN0xJ5DtlN .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0xJ5DtlN .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0xJ5DtlN .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-uN0xJ5DtlN .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-uN0xJ5DtlN .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uN0xJ5DtlN .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uN0xJ5DtlN .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uN0xJ5DtlN .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uN0xJ5DtlN .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uN0xJ5DtlN .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uN0xJ5DtlN .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-uN0xJ5DtlN .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uN0xJ5DtlN .mbr-section-title {
  color: #000000;
}
.cid-uN0xJ5DtlN .mbr-text {
  color: #ffffff;
}
.cid-uN0xJ5DtlN .list {
  color: #000000;
}
.cid-uN0xJ5DtlN .mbr-desc {
  color: #000000;
}
.cid-uN0xJ5DtlN .mbr-copy {
  color: #000000;
}
.cid-uN0xJ5DtlN .mbr-desc,
.cid-uN0xJ5DtlN .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-uN0xJ5DtlN .mbr-copy,
.cid-uN0xJ5DtlN .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-uN0xJ5DtlN .mbr-section-title,
.cid-uN0xJ5DtlN .mbr-section-btn {
  color: #ffffff;
}
.cid-uN0xJ5DtlN .list,
.cid-uN0xJ5DtlN .item-wrap {
  color: #ffffff;
}
.cid-uNIYMFsUXL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #254b45;
}
.cid-uNIYMFsUXL .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uNIYMFsUXL .modal-body .close {
  background: #1b1b1b;
}
.cid-uNIYMFsUXL .modal-body .close span {
  font-style: normal;
}
@media (min-width: 992px) {
  .cid-uNIYMFsUXL .align-center {
    text-align: left;
    max-width: 850px;
  }
  .cid-uNIYMFsUXL .carousel-caption {
    justify-content: flex-start !important;
    padding-left: 5rem;
  }
}
.cid-uNIYMFsUXL .mbr-slider .carousel-control {
  background: black!important;
  border-radius: 6px;
  height: 100px;
  width: 50px;
}
.cid-uNIYMFsUXL .mbri-right:before {
  content: "\e909";
  color: white;
}
.cid-uNIYMFsUXL .mbri-left:before {
  content: "\e90a";
  color: white;
}
.cid-uNIYMFsUXL .container {
  max-width: 100%;
  padding: 0;
}
.cid-uNIYMFsUXL .content-slider-wrap {
  width: 100%;
}
.cid-uNIYMFsUXL .carousel-inner > .active,
.cid-uNIYMFsUXL .carousel-inner > .next,
.cid-uNIYMFsUXL .carousel-inner > .prev {
  display: -webkit-flex;
}
.cid-uNIYMFsUXL .carousel-control .icon-next,
.cid-uNIYMFsUXL .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uNIYMFsUXL .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uNIYMFsUXL .mbr-iconfont {
  color: black;
  font-size: 2rem!important;
  font-family: 'Moririse2' !important;
  font-weight: 600;
}
.cid-uNIYMFsUXL .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uNIYMFsUXL .boxed-slider > div {
  position: relative;
}
.cid-uNIYMFsUXL .container img {
  width: 100%;
}
.cid-uNIYMFsUXL .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uNIYMFsUXL .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uNIYMFsUXL .mbr-table-cell {
  padding: 0;
}
.cid-uNIYMFsUXL .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uNIYMFsUXL .carousel-caption {
  top: auto;
  right: 0;
  bottom: 2rem;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uNIYMFsUXL .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uNIYMFsUXL .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-uNIYMFsUXL .carousel-item.active.right,
.cid-uNIYMFsUXL .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uNIYMFsUXL .carousel-item.active.left,
.cid-uNIYMFsUXL .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uNIYMFsUXL .carousel-item.active,
.cid-uNIYMFsUXL .carousel-item.next.left,
.cid-uNIYMFsUXL .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-uNIYMFsUXL .mbr-slider .carousel-control {
  top: 50%;
  margin-top: -1.5rem;
  font-size: 35px;
  transition: all .3s;
  z-index: 11;
}
@media (max-width: 767px) {
  .cid-uNIYMFsUXL .mbr-slider .carousel-control {
    top: 20%;
  }
}
.cid-uNIYMFsUXL .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uNIYMFsUXL .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uNIYMFsUXL .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-uNIYMFsUXL .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uNIYMFsUXL .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 10px;
  width: 10px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uNIYMFsUXL .mbr-slider .carousel-indicators li.active,
.cid-uNIYMFsUXL .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uNIYMFsUXL .mbr-slider .carousel-indicators li::after,
.cid-uNIYMFsUXL .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uNIYMFsUXL .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uNIYMFsUXL .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uNIYMFsUXL .mbr-slider > .container img {
  width: 100%;
}
.cid-uNIYMFsUXL .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uNIYMFsUXL .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uNIYMFsUXL .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uNIYMFsUXL .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uNIYMFsUXL .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uNIYMFsUXL .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-uNIYMFsUXL .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uNIYMFsUXL .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uNIYMFsUXL .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uNIYMFsUXL .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uNIYMFsUXL .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uNIYMFsUXL .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uNIYMFsUXL .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uNIYMFsUXL .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-uNIYMFsUXL .carousel-inner {
  height: 100%;
}
.cid-uNIYMFsUXL .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-uNIYMFsUXL .image_wrapper {
  height: 950px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-uNIYMFsUXL .image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uNIYMFsUXL .carousel-item .container-slide {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uNIYMFsUXL .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uNIYMFsUXL .content-slider-wrap {
    width: 100%!important;
  }
  .cid-uNIYMFsUXL .image_wrapper {
    height: 570px;
  }
}
.cid-uN0xKAnVkB {
  z-index: 1000;
  width: 100%;
}
.cid-uN0xKAnVkB nav.navbar {
  position: fixed;
}
.cid-uN0xKAnVkB .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-uN0xKAnVkB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uN0xKAnVkB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uN0xKAnVkB .dropdown-item:hover,
.cid-uN0xKAnVkB .dropdown-item:focus {
  background: #17171a !important;
  color: white !important;
}
.cid-uN0xKAnVkB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uN0xKAnVkB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uN0xKAnVkB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uN0xKAnVkB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uN0xKAnVkB .nav-link {
  position: relative;
}
.cid-uN0xKAnVkB .container {
  display: flex;
  margin: auto;
}
.cid-uN0xKAnVkB .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uN0xKAnVkB .dropdown-menu,
.cid-uN0xKAnVkB .navbar.opened {
  background: #7b7b8b !important;
}
.cid-uN0xKAnVkB .nav-item:focus,
.cid-uN0xKAnVkB .nav-link:focus {
  outline: none;
}
.cid-uN0xKAnVkB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uN0xKAnVkB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uN0xKAnVkB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uN0xKAnVkB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uN0xKAnVkB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uN0xKAnVkB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uN0xKAnVkB .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(123, 123, 139, 0.6);
}
.cid-uN0xKAnVkB .navbar.opened {
  transition: all 0.3s;
}
.cid-uN0xKAnVkB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uN0xKAnVkB .navbar .navbar-logo img {
  width: auto;
}
.cid-uN0xKAnVkB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uN0xKAnVkB .navbar.collapsed {
  justify-content: center;
}
.cid-uN0xKAnVkB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uN0xKAnVkB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uN0xKAnVkB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uN0xKAnVkB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uN0xKAnVkB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uN0xKAnVkB .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-uN0xKAnVkB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uN0xKAnVkB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uN0xKAnVkB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uN0xKAnVkB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uN0xKAnVkB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uN0xKAnVkB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uN0xKAnVkB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uN0xKAnVkB .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-uN0xKAnVkB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uN0xKAnVkB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uN0xKAnVkB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uN0xKAnVkB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uN0xKAnVkB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uN0xKAnVkB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uN0xKAnVkB .navbar.navbar-short {
  min-height: 60px;
}
.cid-uN0xKAnVkB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uN0xKAnVkB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uN0xKAnVkB .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uN0xKAnVkB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uN0xKAnVkB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uN0xKAnVkB .dropdown-item.active,
.cid-uN0xKAnVkB .dropdown-item:active {
  background-color: transparent;
}
.cid-uN0xKAnVkB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uN0xKAnVkB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uN0xKAnVkB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uN0xKAnVkB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #7b7b8b;
}
.cid-uN0xKAnVkB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uN0xKAnVkB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uN0xKAnVkB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uN0xKAnVkB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uN0xKAnVkB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uN0xKAnVkB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uN0xKAnVkB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uN0xKAnVkB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN0xKAnVkB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN0xKAnVkB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uN0xKAnVkB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN0xKAnVkB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uN0xKAnVkB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uN0xKAnVkB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN0xKAnVkB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uN0xKAnVkB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uN0xKAnVkB .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-uN0xKAnVkB .navbar {
    height: 70px;
  }
  .cid-uN0xKAnVkB .navbar.opened {
    height: auto;
  }
  .cid-uN0xKAnVkB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uN0xKAKKM2 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uN0xKAKKM2 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uN0xKAKKM2 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uN0xKAKKM2 .text-wrapper {
    padding: 0 5.5rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .cid-uN0xKAKKM2 .text-wrapper {
    margin-bottom: 0;
  }
}
.cid-uN0xKAKKM2 .item-btn {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  position: absolute;
  top: -4.5rem;
  right: 2.5rem;
}
@media (max-width: 992px) {
  .cid-uN0xKAKKM2 .item-btn {
    width: 6rem;
    height: 6rem;
    top: -3.5rem;
    right: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uN0xKAKKM2 .item-btn {
    width: 4rem;
    height: 4rem;
    top: -2.5rem;
    right: 1.5rem;
  }
}
.cid-uN0xKAKKM2 .icon-wrap span {
  margin: 0;
}
@media (max-width: 768px) {
  .cid-uN0xKAKKM2 .icon-wrap span {
    transform: scale(0.6);
  }
}
@media (max-width: 600px) {
  .cid-uN0xKAKKM2 .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-uN0xKAKKM2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN0xKAKKM2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN0xKAUWOd {
  padding-top: 3.5rem;
  padding-bottom: 1.5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uN0xKAUWOd .image-wrapper {
    width: 100%;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uN0xKAUWOd .image-wrapper {
    width: 49%;
  }
}
.cid-uN0xKAUWOd .text-wrapper {
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uN0xKAUWOd .text-wrapper {
    width: 100%;
    text-align: center;
  }
  .cid-uN0xKAUWOd .text-wrapper h3 {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .cid-uN0xKAUWOd .text-wrapper p {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-uN0xKAUWOd .text-wrapper {
    padding: 0 4rem;
    width: 49%;
  }
  .cid-uN0xKAUWOd .text-wrapper h3 {
    width: 85%;
    margin-bottom: 2.2rem;
  }
  .cid-uN0xKAUWOd .text-wrapper p {
    width: 50%;
    margin-bottom: 1rem;
  }
}
.cid-uN0xKAUWOd .item-btn {
  width: 10.6rem;
  height: 10.6rem;
  position: absolute;
  top: 5.2rem;
  right: 3.5rem;
  top: 1rem;
}
.cid-uN0xKAUWOd .item-btn:hover {
  opacity: 0.8;
}
.cid-uN0xKAUWOd .item-btn:hover > span {
  transform: scale(1.3) translateY(0.5rem);
}
.cid-uN0xKAUWOd .item-btn span {
  transform: scale(1.3);
  transition: all 0.8s;
}
@media (max-width: 1199px) {
  .cid-uN0xKAUWOd .item-btn {
    width: 7.6rem;
    height: 7.6rem;
    top: 6.2rem;
    right: 2.5rem;
    display: none;
  }
  .cid-uN0xKAUWOd .item-btn:hover > span {
    transform: translateY(0.5rem);
  }
}
@media (max-width: 992px) {
  .cid-uN0xKAUWOd .item-btn {
    width: 4rem;
    height: 4rem;
    position: static;
    display: inline-flex;
    align-self: center;
    margin-bottom: 1.6rem;
  }
  .cid-uN0xKAUWOd .item-btn:hover > span {
    transform: scale(0.6) translateY(0.3rem);
  }
  .cid-uN0xKAUWOd .item-btn span {
    transform: scale(0.6);
    transition: all 0.8s;
  }
}
@media (max-width: 767px) {
  .cid-uN0xKAUWOd .item-btn {
    position: static;
    margin-top: 0rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 600px) {
  .cid-uN0xKAUWOd .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-uN0xKAUWOd .mbr-section-title a {
  color: #9b9ba5;
}
.cid-uN0xKAUWOd P {
  color: #9b9ba5;
}
.cid-uN0xKAUWOd .mbr-section-subtitle {
  color: #9b9ba5;
  text-align: left;
}
.cid-uN0xKBOwrg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #61616e;
}
.cid-uN0xKBOwrg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN0xKBOwrg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN0xKBOwrg .row {
  justify-content: space-between;
}
.cid-uN0xKBOwrg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0xKBOwrg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0xKBOwrg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uN0xKBOwrg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uN0xKBOwrg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-uN0xKBOwrg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0xKBOwrg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0xKBOwrg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uN0xKBOwrg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uN0xKBOwrg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-uN0xKBOwrg .list-wrapper .list .item-wrap:hover,
.cid-uN0xKBOwrg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uN0xKBOwrg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uN0xKBOwrg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0xKBOwrg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0xKBOwrg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-uN0xKBOwrg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-uN0xKBOwrg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uN0xKBOwrg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uN0xKBOwrg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uN0xKBOwrg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uN0xKBOwrg .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uN0xKBOwrg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uN0xKBOwrg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-uN0xKBOwrg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uN0xKBOwrg .mbr-section-title {
  color: #000000;
}
.cid-uN0xKBOwrg .mbr-text {
  color: #ffffff;
}
.cid-uN0xKBOwrg .list {
  color: #000000;
}
.cid-uN0xKBOwrg .mbr-desc {
  color: #000000;
}
.cid-uN0xKBOwrg .mbr-copy {
  color: #000000;
}
.cid-uN0xKBOwrg .mbr-desc,
.cid-uN0xKBOwrg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-uN0xKBOwrg .mbr-copy,
.cid-uN0xKBOwrg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-uN0xKBOwrg .mbr-section-title,
.cid-uN0xKBOwrg .mbr-section-btn {
  color: #ffffff;
}
.cid-uN0xKBOwrg .list,
.cid-uN0xKBOwrg .item-wrap {
  color: #ffffff;
}
.cid-uNIZ7ixgpn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #254b45;
}
.cid-uNIZ7ixgpn .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uNIZ7ixgpn .modal-body .close {
  background: #1b1b1b;
}
.cid-uNIZ7ixgpn .modal-body .close span {
  font-style: normal;
}
@media (min-width: 992px) {
  .cid-uNIZ7ixgpn .align-center {
    text-align: left;
    max-width: 850px;
  }
  .cid-uNIZ7ixgpn .carousel-caption {
    justify-content: flex-start !important;
    padding-left: 5rem;
  }
}
.cid-uNIZ7ixgpn .mbr-slider .carousel-control {
  background: black!important;
  border-radius: 6px;
  height: 100px;
  width: 50px;
}
.cid-uNIZ7ixgpn .mbri-right:before {
  content: "\e909";
  color: white;
}
.cid-uNIZ7ixgpn .mbri-left:before {
  content: "\e90a";
  color: white;
}
.cid-uNIZ7ixgpn .container {
  max-width: 100%;
  padding: 0;
}
.cid-uNIZ7ixgpn .content-slider-wrap {
  width: 100%;
}
.cid-uNIZ7ixgpn .carousel-inner > .active,
.cid-uNIZ7ixgpn .carousel-inner > .next,
.cid-uNIZ7ixgpn .carousel-inner > .prev {
  display: -webkit-flex;
}
.cid-uNIZ7ixgpn .carousel-control .icon-next,
.cid-uNIZ7ixgpn .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uNIZ7ixgpn .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uNIZ7ixgpn .mbr-iconfont {
  color: black;
  font-size: 2rem!important;
  font-family: 'Moririse2' !important;
  font-weight: 600;
}
.cid-uNIZ7ixgpn .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uNIZ7ixgpn .boxed-slider > div {
  position: relative;
}
.cid-uNIZ7ixgpn .container img {
  width: 100%;
}
.cid-uNIZ7ixgpn .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uNIZ7ixgpn .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uNIZ7ixgpn .mbr-table-cell {
  padding: 0;
}
.cid-uNIZ7ixgpn .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uNIZ7ixgpn .carousel-caption {
  top: auto;
  right: 0;
  bottom: 2rem;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uNIZ7ixgpn .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uNIZ7ixgpn .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-uNIZ7ixgpn .carousel-item.active.right,
.cid-uNIZ7ixgpn .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uNIZ7ixgpn .carousel-item.active.left,
.cid-uNIZ7ixgpn .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uNIZ7ixgpn .carousel-item.active,
.cid-uNIZ7ixgpn .carousel-item.next.left,
.cid-uNIZ7ixgpn .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-uNIZ7ixgpn .mbr-slider .carousel-control {
  top: 50%;
  margin-top: -1.5rem;
  font-size: 35px;
  transition: all .3s;
  z-index: 11;
}
@media (max-width: 767px) {
  .cid-uNIZ7ixgpn .mbr-slider .carousel-control {
    top: 20%;
  }
}
.cid-uNIZ7ixgpn .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uNIZ7ixgpn .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uNIZ7ixgpn .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-uNIZ7ixgpn .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uNIZ7ixgpn .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 10px;
  width: 10px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uNIZ7ixgpn .mbr-slider .carousel-indicators li.active,
.cid-uNIZ7ixgpn .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uNIZ7ixgpn .mbr-slider .carousel-indicators li::after,
.cid-uNIZ7ixgpn .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uNIZ7ixgpn .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uNIZ7ixgpn .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uNIZ7ixgpn .mbr-slider > .container img {
  width: 100%;
}
.cid-uNIZ7ixgpn .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uNIZ7ixgpn .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uNIZ7ixgpn .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uNIZ7ixgpn .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uNIZ7ixgpn .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uNIZ7ixgpn .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-uNIZ7ixgpn .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uNIZ7ixgpn .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uNIZ7ixgpn .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uNIZ7ixgpn .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uNIZ7ixgpn .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uNIZ7ixgpn .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uNIZ7ixgpn .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uNIZ7ixgpn .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-uNIZ7ixgpn .carousel-inner {
  height: 100%;
}
.cid-uNIZ7ixgpn .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-uNIZ7ixgpn .image_wrapper {
  height: 950px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-uNIZ7ixgpn .image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uNIZ7ixgpn .carousel-item .container-slide {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uNIZ7ixgpn .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uNIZ7ixgpn .content-slider-wrap {
    width: 100%!important;
  }
  .cid-uNIZ7ixgpn .image_wrapper {
    height: 570px;
  }
}
.cid-uN0xOdBNU7 {
  z-index: 1000;
  width: 100%;
}
.cid-uN0xOdBNU7 nav.navbar {
  position: fixed;
}
.cid-uN0xOdBNU7 .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-uN0xOdBNU7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uN0xOdBNU7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uN0xOdBNU7 .dropdown-item:hover,
.cid-uN0xOdBNU7 .dropdown-item:focus {
  background: #17171a !important;
  color: white !important;
}
.cid-uN0xOdBNU7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uN0xOdBNU7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uN0xOdBNU7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uN0xOdBNU7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uN0xOdBNU7 .nav-link {
  position: relative;
}
.cid-uN0xOdBNU7 .container {
  display: flex;
  margin: auto;
}
.cid-uN0xOdBNU7 .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uN0xOdBNU7 .dropdown-menu,
.cid-uN0xOdBNU7 .navbar.opened {
  background: #7b7b8b !important;
}
.cid-uN0xOdBNU7 .nav-item:focus,
.cid-uN0xOdBNU7 .nav-link:focus {
  outline: none;
}
.cid-uN0xOdBNU7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uN0xOdBNU7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uN0xOdBNU7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uN0xOdBNU7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uN0xOdBNU7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uN0xOdBNU7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uN0xOdBNU7 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(123, 123, 139, 0.6);
}
.cid-uN0xOdBNU7 .navbar.opened {
  transition: all 0.3s;
}
.cid-uN0xOdBNU7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uN0xOdBNU7 .navbar .navbar-logo img {
  width: auto;
}
.cid-uN0xOdBNU7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uN0xOdBNU7 .navbar.collapsed {
  justify-content: center;
}
.cid-uN0xOdBNU7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uN0xOdBNU7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uN0xOdBNU7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uN0xOdBNU7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uN0xOdBNU7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uN0xOdBNU7 .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-uN0xOdBNU7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uN0xOdBNU7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uN0xOdBNU7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uN0xOdBNU7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uN0xOdBNU7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uN0xOdBNU7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uN0xOdBNU7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uN0xOdBNU7 .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-uN0xOdBNU7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uN0xOdBNU7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uN0xOdBNU7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uN0xOdBNU7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uN0xOdBNU7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uN0xOdBNU7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uN0xOdBNU7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uN0xOdBNU7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uN0xOdBNU7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uN0xOdBNU7 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uN0xOdBNU7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uN0xOdBNU7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uN0xOdBNU7 .dropdown-item.active,
.cid-uN0xOdBNU7 .dropdown-item:active {
  background-color: transparent;
}
.cid-uN0xOdBNU7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uN0xOdBNU7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uN0xOdBNU7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uN0xOdBNU7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #7b7b8b;
}
.cid-uN0xOdBNU7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uN0xOdBNU7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uN0xOdBNU7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uN0xOdBNU7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uN0xOdBNU7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uN0xOdBNU7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uN0xOdBNU7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uN0xOdBNU7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN0xOdBNU7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN0xOdBNU7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uN0xOdBNU7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN0xOdBNU7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uN0xOdBNU7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uN0xOdBNU7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN0xOdBNU7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uN0xOdBNU7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uN0xOdBNU7 .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-uN0xOdBNU7 .navbar {
    height: 70px;
  }
  .cid-uN0xOdBNU7 .navbar.opened {
    height: auto;
  }
  .cid-uN0xOdBNU7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uN0xOe2qDj {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uN0xOe2qDj .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uN0xOe2qDj .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uN0xOe2qDj .text-wrapper {
    padding: 0 5.5rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .cid-uN0xOe2qDj .text-wrapper {
    margin-bottom: 0;
  }
}
.cid-uN0xOe2qDj .item-btn {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  position: absolute;
  top: -4.5rem;
  right: 2.5rem;
}
@media (max-width: 992px) {
  .cid-uN0xOe2qDj .item-btn {
    width: 6rem;
    height: 6rem;
    top: -3.5rem;
    right: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uN0xOe2qDj .item-btn {
    width: 4rem;
    height: 4rem;
    top: -2.5rem;
    right: 1.5rem;
  }
}
.cid-uN0xOe2qDj .icon-wrap span {
  margin: 0;
}
@media (max-width: 768px) {
  .cid-uN0xOe2qDj .icon-wrap span {
    transform: scale(0.6);
  }
}
@media (max-width: 600px) {
  .cid-uN0xOe2qDj .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-uN0xOe2qDj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN0xOe2qDj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN0xOedqDN {
  padding-top: 3.5rem;
  padding-bottom: 1.5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uN0xOedqDN .image-wrapper {
    width: 100%;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uN0xOedqDN .image-wrapper {
    width: 49%;
  }
}
.cid-uN0xOedqDN .text-wrapper {
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uN0xOedqDN .text-wrapper {
    width: 100%;
    text-align: center;
  }
  .cid-uN0xOedqDN .text-wrapper h3 {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .cid-uN0xOedqDN .text-wrapper p {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-uN0xOedqDN .text-wrapper {
    padding: 0 4rem;
    width: 49%;
  }
  .cid-uN0xOedqDN .text-wrapper h3 {
    width: 85%;
    margin-bottom: 2.2rem;
  }
  .cid-uN0xOedqDN .text-wrapper p {
    width: 50%;
    margin-bottom: 1rem;
  }
}
.cid-uN0xOedqDN .item-btn {
  width: 10.6rem;
  height: 10.6rem;
  position: absolute;
  top: 5.2rem;
  right: 3.5rem;
  top: 1rem;
}
.cid-uN0xOedqDN .item-btn:hover {
  opacity: 0.8;
}
.cid-uN0xOedqDN .item-btn:hover > span {
  transform: scale(1.3) translateY(0.5rem);
}
.cid-uN0xOedqDN .item-btn span {
  transform: scale(1.3);
  transition: all 0.8s;
}
@media (max-width: 1199px) {
  .cid-uN0xOedqDN .item-btn {
    width: 7.6rem;
    height: 7.6rem;
    top: 6.2rem;
    right: 2.5rem;
    display: none;
  }
  .cid-uN0xOedqDN .item-btn:hover > span {
    transform: translateY(0.5rem);
  }
}
@media (max-width: 992px) {
  .cid-uN0xOedqDN .item-btn {
    width: 4rem;
    height: 4rem;
    position: static;
    display: inline-flex;
    align-self: center;
    margin-bottom: 1.6rem;
  }
  .cid-uN0xOedqDN .item-btn:hover > span {
    transform: scale(0.6) translateY(0.3rem);
  }
  .cid-uN0xOedqDN .item-btn span {
    transform: scale(0.6);
    transition: all 0.8s;
  }
}
@media (max-width: 767px) {
  .cid-uN0xOedqDN .item-btn {
    position: static;
    margin-top: 0rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 600px) {
  .cid-uN0xOedqDN .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-uN0xOedqDN .mbr-section-title a {
  color: #9b9ba5;
}
.cid-uN0xOedqDN P {
  color: #9b9ba5;
}
.cid-uN0xOedqDN .mbr-section-subtitle {
  color: #9b9ba5;
  text-align: left;
}
.cid-uN0xOf9uuk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #61616e;
}
.cid-uN0xOf9uuk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN0xOf9uuk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN0xOf9uuk .row {
  justify-content: space-between;
}
.cid-uN0xOf9uuk .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0xOf9uuk .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0xOf9uuk .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uN0xOf9uuk .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uN0xOf9uuk .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-uN0xOf9uuk .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0xOf9uuk .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0xOf9uuk .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uN0xOf9uuk .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uN0xOf9uuk .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-uN0xOf9uuk .list-wrapper .list .item-wrap:hover,
.cid-uN0xOf9uuk .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uN0xOf9uuk .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uN0xOf9uuk .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0xOf9uuk .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0xOf9uuk .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-uN0xOf9uuk .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-uN0xOf9uuk .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uN0xOf9uuk .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uN0xOf9uuk .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uN0xOf9uuk .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uN0xOf9uuk .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uN0xOf9uuk .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uN0xOf9uuk .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-uN0xOf9uuk .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uN0xOf9uuk .mbr-section-title {
  color: #000000;
}
.cid-uN0xOf9uuk .mbr-text {
  color: #ffffff;
}
.cid-uN0xOf9uuk .list {
  color: #000000;
}
.cid-uN0xOf9uuk .mbr-desc {
  color: #000000;
}
.cid-uN0xOf9uuk .mbr-copy {
  color: #000000;
}
.cid-uN0xOf9uuk .mbr-desc,
.cid-uN0xOf9uuk .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-uN0xOf9uuk .mbr-copy,
.cid-uN0xOf9uuk .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-uN0xOf9uuk .mbr-section-title,
.cid-uN0xOf9uuk .mbr-section-btn {
  color: #ffffff;
}
.cid-uN0xOf9uuk .list,
.cid-uN0xOf9uuk .item-wrap {
  color: #ffffff;
}
.cid-uNIZcl6e4X {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #254b45;
}
.cid-uNIZcl6e4X .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uNIZcl6e4X .modal-body .close {
  background: #1b1b1b;
}
.cid-uNIZcl6e4X .modal-body .close span {
  font-style: normal;
}
@media (min-width: 992px) {
  .cid-uNIZcl6e4X .align-center {
    text-align: left;
    max-width: 850px;
  }
  .cid-uNIZcl6e4X .carousel-caption {
    justify-content: flex-start !important;
    padding-left: 5rem;
  }
}
.cid-uNIZcl6e4X .mbr-slider .carousel-control {
  background: black!important;
  border-radius: 6px;
  height: 100px;
  width: 50px;
}
.cid-uNIZcl6e4X .mbri-right:before {
  content: "\e909";
  color: white;
}
.cid-uNIZcl6e4X .mbri-left:before {
  content: "\e90a";
  color: white;
}
.cid-uNIZcl6e4X .container {
  max-width: 100%;
  padding: 0;
}
.cid-uNIZcl6e4X .content-slider-wrap {
  width: 100%;
}
.cid-uNIZcl6e4X .carousel-inner > .active,
.cid-uNIZcl6e4X .carousel-inner > .next,
.cid-uNIZcl6e4X .carousel-inner > .prev {
  display: -webkit-flex;
}
.cid-uNIZcl6e4X .carousel-control .icon-next,
.cid-uNIZcl6e4X .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uNIZcl6e4X .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uNIZcl6e4X .mbr-iconfont {
  color: black;
  font-size: 2rem!important;
  font-family: 'Moririse2' !important;
  font-weight: 600;
}
.cid-uNIZcl6e4X .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uNIZcl6e4X .boxed-slider > div {
  position: relative;
}
.cid-uNIZcl6e4X .container img {
  width: 100%;
}
.cid-uNIZcl6e4X .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uNIZcl6e4X .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uNIZcl6e4X .mbr-table-cell {
  padding: 0;
}
.cid-uNIZcl6e4X .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uNIZcl6e4X .carousel-caption {
  top: auto;
  right: 0;
  bottom: 2rem;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uNIZcl6e4X .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uNIZcl6e4X .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-uNIZcl6e4X .carousel-item.active.right,
.cid-uNIZcl6e4X .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uNIZcl6e4X .carousel-item.active.left,
.cid-uNIZcl6e4X .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uNIZcl6e4X .carousel-item.active,
.cid-uNIZcl6e4X .carousel-item.next.left,
.cid-uNIZcl6e4X .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-uNIZcl6e4X .mbr-slider .carousel-control {
  top: 50%;
  margin-top: -1.5rem;
  font-size: 35px;
  transition: all .3s;
  z-index: 11;
}
@media (max-width: 767px) {
  .cid-uNIZcl6e4X .mbr-slider .carousel-control {
    top: 20%;
  }
}
.cid-uNIZcl6e4X .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uNIZcl6e4X .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uNIZcl6e4X .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-uNIZcl6e4X .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uNIZcl6e4X .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 10px;
  width: 10px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uNIZcl6e4X .mbr-slider .carousel-indicators li.active,
.cid-uNIZcl6e4X .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uNIZcl6e4X .mbr-slider .carousel-indicators li::after,
.cid-uNIZcl6e4X .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uNIZcl6e4X .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uNIZcl6e4X .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uNIZcl6e4X .mbr-slider > .container img {
  width: 100%;
}
.cid-uNIZcl6e4X .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uNIZcl6e4X .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uNIZcl6e4X .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uNIZcl6e4X .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uNIZcl6e4X .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uNIZcl6e4X .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-uNIZcl6e4X .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uNIZcl6e4X .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uNIZcl6e4X .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uNIZcl6e4X .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uNIZcl6e4X .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uNIZcl6e4X .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uNIZcl6e4X .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uNIZcl6e4X .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-uNIZcl6e4X .carousel-inner {
  height: 100%;
}
.cid-uNIZcl6e4X .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-uNIZcl6e4X .image_wrapper {
  height: 950px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-uNIZcl6e4X .image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uNIZcl6e4X .carousel-item .container-slide {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uNIZcl6e4X .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uNIZcl6e4X .content-slider-wrap {
    width: 100%!important;
  }
  .cid-uNIZcl6e4X .image_wrapper {
    height: 570px;
  }
}
.cid-uN0xQONelw {
  z-index: 1000;
  width: 100%;
}
.cid-uN0xQONelw nav.navbar {
  position: fixed;
}
.cid-uN0xQONelw .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-uN0xQONelw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uN0xQONelw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uN0xQONelw .dropdown-item:hover,
.cid-uN0xQONelw .dropdown-item:focus {
  background: #17171a !important;
  color: white !important;
}
.cid-uN0xQONelw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uN0xQONelw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uN0xQONelw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uN0xQONelw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uN0xQONelw .nav-link {
  position: relative;
}
.cid-uN0xQONelw .container {
  display: flex;
  margin: auto;
}
.cid-uN0xQONelw .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uN0xQONelw .dropdown-menu,
.cid-uN0xQONelw .navbar.opened {
  background: #7b7b8b !important;
}
.cid-uN0xQONelw .nav-item:focus,
.cid-uN0xQONelw .nav-link:focus {
  outline: none;
}
.cid-uN0xQONelw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uN0xQONelw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uN0xQONelw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uN0xQONelw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uN0xQONelw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uN0xQONelw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uN0xQONelw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(123, 123, 139, 0.6);
}
.cid-uN0xQONelw .navbar.opened {
  transition: all 0.3s;
}
.cid-uN0xQONelw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uN0xQONelw .navbar .navbar-logo img {
  width: auto;
}
.cid-uN0xQONelw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uN0xQONelw .navbar.collapsed {
  justify-content: center;
}
.cid-uN0xQONelw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uN0xQONelw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uN0xQONelw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uN0xQONelw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uN0xQONelw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uN0xQONelw .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-uN0xQONelw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uN0xQONelw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uN0xQONelw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uN0xQONelw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uN0xQONelw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uN0xQONelw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uN0xQONelw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uN0xQONelw .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-uN0xQONelw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uN0xQONelw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uN0xQONelw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uN0xQONelw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uN0xQONelw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uN0xQONelw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uN0xQONelw .navbar.navbar-short {
  min-height: 60px;
}
.cid-uN0xQONelw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uN0xQONelw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uN0xQONelw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uN0xQONelw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uN0xQONelw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uN0xQONelw .dropdown-item.active,
.cid-uN0xQONelw .dropdown-item:active {
  background-color: transparent;
}
.cid-uN0xQONelw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uN0xQONelw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uN0xQONelw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uN0xQONelw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #7b7b8b;
}
.cid-uN0xQONelw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uN0xQONelw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uN0xQONelw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uN0xQONelw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uN0xQONelw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uN0xQONelw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uN0xQONelw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uN0xQONelw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN0xQONelw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN0xQONelw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uN0xQONelw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN0xQONelw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uN0xQONelw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uN0xQONelw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN0xQONelw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uN0xQONelw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uN0xQONelw .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-uN0xQONelw .navbar {
    height: 70px;
  }
  .cid-uN0xQONelw .navbar.opened {
    height: auto;
  }
  .cid-uN0xQONelw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uN0xQPjpNb {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uN0xQPjpNb .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uN0xQPjpNb .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uN0xQPjpNb .text-wrapper {
    padding: 0 5.5rem;
    margin-bottom: 3rem;
    padding: 0 4rem;
  }
}
@media (max-width: 768px) {
  .cid-uN0xQPjpNb .text-wrapper {
    margin-bottom: 0;
  }
}
.cid-uN0xQPjpNb .item-btn {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  position: absolute;
  top: -4.5rem;
  right: 2.5rem;
}
@media (max-width: 992px) {
  .cid-uN0xQPjpNb .item-btn {
    width: 6rem;
    height: 6rem;
    top: -3.5rem;
    right: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uN0xQPjpNb .item-btn {
    width: 4rem;
    height: 4rem;
    top: -2.5rem;
    right: 1.5rem;
  }
}
.cid-uN0xQPjpNb .icon-wrap span {
  margin: 0;
}
@media (max-width: 768px) {
  .cid-uN0xQPjpNb .icon-wrap span {
    transform: scale(0.6);
  }
}
@media (max-width: 600px) {
  .cid-uN0xQPjpNb .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-uN0xQPjpNb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN0xQPjpNb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN0xQPvw9J {
  padding-top: 3.5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uN0xQPvw9J .image-wrapper {
    width: 100%;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uN0xQPvw9J .image-wrapper {
    width: 49%;
  }
}
.cid-uN0xQPvw9J .text-wrapper {
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uN0xQPvw9J .text-wrapper {
    width: 100%;
    text-align: center;
  }
  .cid-uN0xQPvw9J .text-wrapper h3 {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .cid-uN0xQPvw9J .text-wrapper p {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-uN0xQPvw9J .text-wrapper {
    padding: 0 4rem;
    width: 49%;
  }
  .cid-uN0xQPvw9J .text-wrapper h3 {
    width: 85%;
    margin-bottom: 2.2rem;
  }
  .cid-uN0xQPvw9J .text-wrapper p {
    width: 50%;
    margin-bottom: 1rem;
  }
}
.cid-uN0xQPvw9J .item-btn {
  width: 10.6rem;
  height: 10.6rem;
  position: absolute;
  top: 5.2rem;
  right: 3.5rem;
  top: 1rem;
}
.cid-uN0xQPvw9J .item-btn:hover {
  opacity: 0.8;
}
.cid-uN0xQPvw9J .item-btn:hover > span {
  transform: scale(1.3) translateY(0.5rem);
}
.cid-uN0xQPvw9J .item-btn span {
  transform: scale(1.3);
  transition: all 0.8s;
}
@media (max-width: 1199px) {
  .cid-uN0xQPvw9J .item-btn {
    width: 7.6rem;
    height: 7.6rem;
    top: 6.2rem;
    right: 2.5rem;
    display: none;
  }
  .cid-uN0xQPvw9J .item-btn:hover > span {
    transform: translateY(0.5rem);
  }
}
@media (max-width: 992px) {
  .cid-uN0xQPvw9J .item-btn {
    width: 4rem;
    height: 4rem;
    position: static;
    display: inline-flex;
    align-self: center;
    margin-bottom: 1.6rem;
  }
  .cid-uN0xQPvw9J .item-btn:hover > span {
    transform: scale(0.6) translateY(0.3rem);
  }
  .cid-uN0xQPvw9J .item-btn span {
    transform: scale(0.6);
    transition: all 0.8s;
  }
}
@media (max-width: 767px) {
  .cid-uN0xQPvw9J .item-btn {
    position: static;
    margin-top: 0rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 600px) {
  .cid-uN0xQPvw9J .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-uN0xQPvw9J .mbr-section-title a {
  color: #9b9ba5;
}
.cid-uN0xQPvw9J P {
  color: #9b9ba5;
}
.cid-uN0xQPvw9J .mbr-section-subtitle {
  color: #9b9ba5;
  text-align: left;
}
.cid-uN0xQQvxsq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #61616e;
}
.cid-uN0xQQvxsq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN0xQQvxsq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN0xQQvxsq .row {
  justify-content: space-between;
}
.cid-uN0xQQvxsq .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0xQQvxsq .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0xQQvxsq .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uN0xQQvxsq .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uN0xQQvxsq .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-uN0xQQvxsq .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0xQQvxsq .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0xQQvxsq .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uN0xQQvxsq .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uN0xQQvxsq .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-uN0xQQvxsq .list-wrapper .list .item-wrap:hover,
.cid-uN0xQQvxsq .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uN0xQQvxsq .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uN0xQQvxsq .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0xQQvxsq .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0xQQvxsq .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-uN0xQQvxsq .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-uN0xQQvxsq .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uN0xQQvxsq .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uN0xQQvxsq .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uN0xQQvxsq .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uN0xQQvxsq .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uN0xQQvxsq .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uN0xQQvxsq .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-uN0xQQvxsq .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uN0xQQvxsq .mbr-section-title {
  color: #000000;
}
.cid-uN0xQQvxsq .mbr-text {
  color: #ffffff;
}
.cid-uN0xQQvxsq .list {
  color: #000000;
}
.cid-uN0xQQvxsq .mbr-desc {
  color: #000000;
}
.cid-uN0xQQvxsq .mbr-copy {
  color: #000000;
}
.cid-uN0xQQvxsq .mbr-desc,
.cid-uN0xQQvxsq .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-uN0xQQvxsq .mbr-copy,
.cid-uN0xQQvxsq .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-uN0xQQvxsq .mbr-section-title,
.cid-uN0xQQvxsq .mbr-section-btn {
  color: #ffffff;
}
.cid-uN0xQQvxsq .list,
.cid-uN0xQQvxsq .item-wrap {
  color: #ffffff;
}
.cid-uN0GXpYa9n {
  z-index: 1000;
  width: 100%;
}
.cid-uN0GXpYa9n nav.navbar {
  position: fixed;
}
.cid-uN0GXpYa9n .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-uN0GXpYa9n .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uN0GXpYa9n .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uN0GXpYa9n .dropdown-item:hover,
.cid-uN0GXpYa9n .dropdown-item:focus {
  background: #17171a !important;
  color: white !important;
}
.cid-uN0GXpYa9n .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uN0GXpYa9n .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uN0GXpYa9n .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uN0GXpYa9n .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uN0GXpYa9n .nav-link {
  position: relative;
}
.cid-uN0GXpYa9n .container {
  display: flex;
  margin: auto;
}
.cid-uN0GXpYa9n .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uN0GXpYa9n .dropdown-menu,
.cid-uN0GXpYa9n .navbar.opened {
  background: #7b7b8b !important;
}
.cid-uN0GXpYa9n .nav-item:focus,
.cid-uN0GXpYa9n .nav-link:focus {
  outline: none;
}
.cid-uN0GXpYa9n .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uN0GXpYa9n .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uN0GXpYa9n .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uN0GXpYa9n .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uN0GXpYa9n .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uN0GXpYa9n .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uN0GXpYa9n .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(123, 123, 139, 0.6);
}
.cid-uN0GXpYa9n .navbar.opened {
  transition: all 0.3s;
}
.cid-uN0GXpYa9n .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uN0GXpYa9n .navbar .navbar-logo img {
  width: auto;
}
.cid-uN0GXpYa9n .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uN0GXpYa9n .navbar.collapsed {
  justify-content: center;
}
.cid-uN0GXpYa9n .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uN0GXpYa9n .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uN0GXpYa9n .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uN0GXpYa9n .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uN0GXpYa9n .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uN0GXpYa9n .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-uN0GXpYa9n .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uN0GXpYa9n .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uN0GXpYa9n .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uN0GXpYa9n .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uN0GXpYa9n .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uN0GXpYa9n .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uN0GXpYa9n .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uN0GXpYa9n .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-uN0GXpYa9n .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uN0GXpYa9n .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uN0GXpYa9n .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uN0GXpYa9n .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uN0GXpYa9n .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uN0GXpYa9n .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uN0GXpYa9n .navbar.navbar-short {
  min-height: 60px;
}
.cid-uN0GXpYa9n .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uN0GXpYa9n .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uN0GXpYa9n .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uN0GXpYa9n .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uN0GXpYa9n .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uN0GXpYa9n .dropdown-item.active,
.cid-uN0GXpYa9n .dropdown-item:active {
  background-color: transparent;
}
.cid-uN0GXpYa9n .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uN0GXpYa9n .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uN0GXpYa9n .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uN0GXpYa9n .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #7b7b8b;
}
.cid-uN0GXpYa9n .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uN0GXpYa9n .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uN0GXpYa9n ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uN0GXpYa9n .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uN0GXpYa9n button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uN0GXpYa9n button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uN0GXpYa9n button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uN0GXpYa9n button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN0GXpYa9n button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN0GXpYa9n button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uN0GXpYa9n nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN0GXpYa9n nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uN0GXpYa9n nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uN0GXpYa9n nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN0GXpYa9n .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uN0GXpYa9n a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uN0GXpYa9n .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-uN0GXpYa9n .navbar {
    height: 70px;
  }
  .cid-uN0GXpYa9n .navbar.opened {
    height: auto;
  }
  .cid-uN0GXpYa9n .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uN0GXqsiup {
  padding-top: 10rem;
  padding-bottom: 3.5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uN0GXqsiup .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uN0GXqsiup .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uN0GXqsiup .text-wrapper {
    padding: 0 5.5rem;
    margin-bottom: 3rem;
    padding: 0 4rem;
  }
}
@media (max-width: 768px) {
  .cid-uN0GXqsiup .text-wrapper {
    margin-bottom: 0;
  }
}
.cid-uN0GXqsiup .item-btn {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  position: absolute;
  top: -4.5rem;
  right: 2.5rem;
}
@media (max-width: 992px) {
  .cid-uN0GXqsiup .item-btn {
    width: 6rem;
    height: 6rem;
    top: -3.5rem;
    right: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uN0GXqsiup .item-btn {
    width: 4rem;
    height: 4rem;
    top: -2.5rem;
    right: 1.5rem;
  }
}
.cid-uN0GXqsiup .icon-wrap span {
  margin: 0;
}
@media (max-width: 768px) {
  .cid-uN0GXqsiup .icon-wrap span {
    transform: scale(0.6);
  }
}
@media (max-width: 600px) {
  .cid-uN0GXqsiup .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-uN0GXqsiup .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN0GXqsiup .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN0GXqsiup .mbr-text,
.cid-uN0GXqsiup .mbr-section-btn {
  text-align: left;
}
.cid-uN3c7SZKGr {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  background-color: #28282c;
}
.cid-uN3c7SZKGr .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uN3c7SZKGr form .mbr-section-btn {
  text-align: center;
}
.cid-uN3c7SZKGr .mbr-section-subtitle {
  color: #ebeff2;
}
.cid-uN3c7SZKGr .form-control {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #ffffff;
  padding-left: 0;
  font-size: small;
  color: rgba(225, 225, 225, 0.3);
}
.cid-uN3c7SZKGr .form-control:focus {
  background: none;
}
.cid-uN3c7SZKGr .form-control:focus::placeholder {
  color: transparent;
}
.cid-uN3c7SZKGr .btn:hover {
  color: #ebeff2;
}
@media (max-width: 600px) {
  .cid-uN3c7SZKGr .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-uN3c7SZKGr .mbr-section-title {
  color: #ffffff;
}
.cid-uN3c7SZKGr LABEL {
  color: #e8e8e8;
}
.cid-uN3AeS6zYS {
  background-color: #f8f8f8;
}
@media (max-width: 768px) {
  .cid-uN3AeS6zYS {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.cid-uN3AeS6zYS .container-fluid {
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 992px) {
  .cid-uN3AeS6zYS .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uN3AeS6zYS .row {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-uN3AeS6zYS .row {
    position: relative;
  }
}
.cid-uN3AeS6zYS .custom-row {
  display: flex;
  max-width: 1200px;
  padding-left: 12px;
  padding-right: 12px;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uN3AeS6zYS .custom-row {
    padding-left: 16px;
    padding-right: 16px;
    flex-wrap: nowrap;
  }
}
@media (max-width: 767px) {
  .cid-uN3AeS6zYS .map-col {
    height: 650px;
    order: 2;
    padding: 0!important;
  }
}
.cid-uN3AeS6zYS .col-text {
  position: relative;
}
.cid-uN3AeS6zYS .col-text .radial-svg {
  display: none;
}
@media (max-width: 767px) {
  .cid-uN3AeS6zYS .col-text {
    order: 0;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .cid-uN3AeS6zYS .col-text {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media (min-width: 992px) {
  .cid-uN3AeS6zYS .col-text .radial-svg {
    display: block;
    position: absolute;
    top: 0;
    right: 84%;
    transform: scale(-1, 1);
    height: 100%;
    width: 150px;
    z-index: 1;
  }
  .cid-uN3AeS6zYS .col-text .radial-svg path {
    fill: #f8f8f8;
  }
}
.cid-uN3AeS6zYS .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .cid-uN3AeS6zYS .text-wrapper {
    padding-left: 4rem;
  }
}
.cid-uN3AeS6zYS .text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.cid-uN3AeS6zYS .label-text {
  width: 100%;
  letter-spacing: 2px;
  color: #0057fc;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .cid-uN3AeS6zYS .label-text {
    text-align: center;
  }
}
.cid-uN3AeS6zYS .mbr-section-title {
  margin-bottom: 32px;
  width: 100%;
  color: #111111;
}
@media (max-width: 767px) {
  .cid-uN3AeS6zYS .mbr-section-title {
    text-align: center;
    margin-bottom: 20px;
  }
}
.cid-uN3AeS6zYS .contact-container {
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uN3AeS6zYS .contact-container {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-uN3AeS6zYS .contact-container .phone-container {
  padding: 16px 25px;
  background-color: #0057fc;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-right: 16px;
}
@media (max-width: 767px) {
  .cid-uN3AeS6zYS .contact-container .phone-container {
    width: 100%;
    margin-right: 0;
  }
}
.cid-uN3AeS6zYS .contact-container .email-container {
  padding: 16px 25px;
  background-color: #111111;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-right: 16px;
}
@media (max-width: 767px) {
  .cid-uN3AeS6zYS .contact-container .email-container {
    width: 100%;
    margin-right: 0;
  }
}
.cid-uN3AeS6zYS .contact-text {
  color: #ffffff;
}
.cid-uN3AeS6zYS .cards-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 0;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cid-uN3AeS6zYS .cards-container {
    text-align: center;
  }
}
.cid-uN3AeS6zYS .cards-title {
  margin-bottom: 12px;
}
.cid-uN3AeS6zYS .card {
  padding: 9px 0;
}
.cid-uN3AeS6zYS .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .cid-uN3AeS6zYS .card-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-uN3AeS6zYS .card-title {
    font-size: 1.5rem !important;
  }
}
.cid-uN3AeS6zYS .icon-box {
  margin-right: 12px;
}
.cid-uN3AeS6zYS .icon-box .mbr-iconfont {
  color: #111111;
}
.cid-uN3AeS6zYS .card-text {
  color: #555555;
  letter-spacing: inherit;
  flex-grow: 1;
}
.cid-uN3AeS6zYS .btn-container {
  width: 100%;
}
.cid-uN3AeS6zYS .mbr-section-btn {
  margin-top: 10px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uN3AeS6zYS .mbr-section-btn {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }
}
.cid-uN3AeS6zYS .mbr-section-btn .btn {
  padding: 0;
  transition: all 0.3s ease 0s;
}
.cid-uN3AeS6zYS .mbr-section-btn .btn span {
  margin-left: 0;
  padding-left: 0.5rem;
  transition: all 0.3s ease 0s;
}
.cid-uN3AeS6zYS .mbr-section-btn .btn:hover span {
  padding-left: 1.25rem;
}
.cid-uN3AeS6zYS .google-map {
  position: absolute;
}
@media (max-width: 767px) {
  .cid-uN3AeS6zYS .google-map {
    height: 650px;
    width: 100%;
    padding: 0;
    left: 0;
    bottom: 0;
  }
}
@media (min-width: 768px) {
  .cid-uN3AeS6zYS .google-map {
    height: 100%;
    width: 50%;
    padding: 0;
    left: 0;
    top: 0;
  }
}
.cid-uN3AeS6zYS .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uN3AeS6zYS .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uN3AeS6zYS .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uN3AeS6zYS .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uN3AeS6zYS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN3AeS6zYS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN0GXrJito {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #61616e;
}
.cid-uN0GXrJito .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN0GXrJito .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN0GXrJito .row {
  justify-content: space-between;
}
.cid-uN0GXrJito .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0GXrJito .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0GXrJito .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uN0GXrJito .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uN0GXrJito .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-uN0GXrJito .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0GXrJito .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0GXrJito .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uN0GXrJito .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uN0GXrJito .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-uN0GXrJito .list-wrapper .list .item-wrap:hover,
.cid-uN0GXrJito .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uN0GXrJito .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uN0GXrJito .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uN0GXrJito .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uN0GXrJito .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-uN0GXrJito .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-uN0GXrJito .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uN0GXrJito .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uN0GXrJito .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uN0GXrJito .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uN0GXrJito .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uN0GXrJito .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uN0GXrJito .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-uN0GXrJito .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uN0GXrJito .mbr-section-title {
  color: #000000;
}
.cid-uN0GXrJito .mbr-text {
  color: #ffffff;
}
.cid-uN0GXrJito .list {
  color: #000000;
}
.cid-uN0GXrJito .mbr-desc {
  color: #000000;
}
.cid-uN0GXrJito .mbr-copy {
  color: #000000;
}
.cid-uN0GXrJito .mbr-desc,
.cid-uN0GXrJito .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-uN0GXrJito .mbr-copy,
.cid-uN0GXrJito .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-uN0GXrJito .mbr-section-title,
.cid-uN0GXrJito .mbr-section-btn {
  color: #ffffff;
}
.cid-uN0GXrJito .list,
.cid-uN0GXrJito .item-wrap {
  color: #ffffff;
}
