body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  line-height: 1.5;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  line-height: 1.3;
}
.display-2 > .mbr-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.875rem;
  line-height: 1.3;
}
.display-5 > .mbr-iconfont {
  font-size: 3rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  line-height: 2;
}
.display-7 > .mbr-iconfont {
  font-size: 2rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.9rem !important;
    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.5rem;
    font-size: calc( 1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.4rem 1rem;
  border-radius: 4px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 8px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 8px;
}
.bg-primary {
  background-color: #1f1f1f !important;
}
.bg-success {
  background-color: #fbb744 !important;
}
.bg-info {
  background-color: #61728a !important;
}
.bg-warning {
  background-color: #d52b27 !important;
}
.bg-danger {
  background-color: #1352ff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #1f1f1f !important;
  border-color: #1f1f1f !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary:hover {
  background-color: #1f1f1f !important;
  border-color: #1f1f1f !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #282f39 !important;
  border-color: #282f39 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #080a0c !important;
  border-color: #080a0c !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #080a0c !important;
  border-color: #080a0c !important;
}
.btn-secondary:hover {
  background-color: #1f1f1f !important;
  border-color: #1f1f1f !important;
}
.btn-info,
.btn-info:active {
  background-color: #61728a !important;
  border-color: #61728a !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #414d5d !important;
  border-color: #414d5d !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #414d5d !important;
  border-color: #414d5d !important;
}
.btn-info:hover {
  background-color: #1f1f1f !important;
  border-color: #1f1f1f !important;
}
.btn-success,
.btn-success:active {
  background-color: #fbb744 !important;
  border-color: #fbb744 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #ed9705 !important;
  border-color: #ed9705 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #ed9705 !important;
  border-color: #ed9705 !important;
}
.btn-success:hover {
  background-color: #1f1f1f !important;
  border-color: #1f1f1f !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #d52b27 !important;
  border-color: #d52b27 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #941e1b !important;
  border-color: #941e1b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #941e1b !important;
  border-color: #941e1b !important;
}
.btn-warning:hover {
  background-color: #1f1f1f !important;
  border-color: #1f1f1f !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #1352ff !important;
  border-color: #1352ff !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #0035c5 !important;
  border-color: #0035c5 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0035c5 !important;
  border-color: #0035c5 !important;
}
.btn-danger:hover {
  background-color: #1f1f1f !important;
  border-color: #1f1f1f !important;
}
.btn-white,
.btn-white:active {
  background-color: #f3f3f3 !important;
  border-color: #f3f3f3 !important;
  color: #737373 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #737373 !important;
  background-color: #cdcdcd !important;
  border-color: #cdcdcd !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #737373 !important;
  background-color: #cdcdcd !important;
  border-color: #cdcdcd !important;
}
.btn-white:hover {
  background-color: #1f1f1f !important;
  border-color: #1f1f1f !important;
}
.btn-white:hover {
  color: white!important;
}
.btn-black,
.btn-black:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black:hover {
  background-color: #1f1f1f !important;
  border-color: #1f1f1f !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #1f1f1f;
  color: #1f1f1f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #1f1f1f;
  border-color: #1f1f1f;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #1f1f1f !important;
  border-color: #1f1f1f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #282f39;
  color: #282f39;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #282f39;
  border-color: #282f39;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #282f39 !important;
  border-color: #282f39 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #61728a;
  color: #61728a;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #61728a;
  border-color: #61728a;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #61728a !important;
  border-color: #61728a !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #fbb744;
  color: #fbb744;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #fbb744;
  border-color: #fbb744;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #fbb744 !important;
  border-color: #fbb744 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #d52b27;
  color: #d52b27;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #d52b27;
  border-color: #d52b27;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #d52b27 !important;
  border-color: #d52b27 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #1352ff;
  color: #1352ff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #1352ff;
  border-color: #1352ff;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #1352ff !important;
  border-color: #1352ff !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #333333;
  color: #333333;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background: none;
  border-color: #f3f3f3;
  color: #f3f3f3;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #737373;
  background-color: #f3f3f3;
  border-color: #f3f3f3;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #737373 !important;
  background-color: #f3f3f3 !important;
  border-color: #f3f3f3 !important;
}
.text-primary {
  color: #1f1f1f !important;
}
.text-secondary {
  color: #282f39 !important;
}
.text-success {
  color: #fbb744 !important;
}
.text-info {
  color: #61728a !important;
}
.text-warning {
  color: #d52b27 !important;
}
.text-danger {
  color: #1352ff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #525252 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #526075 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #fddda8 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #99a6b8 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #e77e7b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #799dff !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #61728a;
}
.alert-warning {
  background-color: #d52b27;
}
.alert-danger {
  background-color: #1352ff;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #1f1f1f;
  border-color: #1f1f1f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #1f1f1f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d2d2d2;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #a8b3c2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #f7d2d1;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfe8ff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
blockquote {
  border-color: #1f1f1f;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.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: #1f1f1f;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #1f1f1f;
  border-bottom-color: #1f1f1f;
}
.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: #1f1f1f !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #282f39 !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='%231f1f1f' %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-uKlnbifG9K {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKlnbifG9K nav.navbar {
  position: fixed;
}
.cid-uKlnbifG9K .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-uKlnbifG9K .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uKlnbifG9K .dropdown-item:hover,
.cid-uKlnbifG9K .dropdown-item:focus {
  color: #1f1f1f !important;
}
.cid-uKlnbifG9K .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-uKlnbifG9K .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKlnbifG9K .nav-link {
  position: relative;
  padding: 0;
}
.cid-uKlnbifG9K .container {
  display: flex;
  margin: auto;
}
.cid-uKlnbifG9K .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uKlnbifG9K .dropdown-menu,
.cid-uKlnbifG9K .navbar.opened {
  background: #1f1f1f !important;
}
.cid-uKlnbifG9K .nav-item:focus,
.cid-uKlnbifG9K .nav-link:focus {
  outline: none;
}
.cid-uKlnbifG9K .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKlnbifG9K .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKlnbifG9K .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKlnbifG9K .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKlnbifG9K .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKlnbifG9K .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKlnbifG9K .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #1f1f1f;
}
.cid-uKlnbifG9K .navbar.opened {
  transition: all 0.3s;
}
.cid-uKlnbifG9K .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKlnbifG9K .navbar .navbar-logo img {
  width: auto;
}
.cid-uKlnbifG9K .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKlnbifG9K .navbar.collapsed {
  justify-content: center;
}
.cid-uKlnbifG9K .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKlnbifG9K .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKlnbifG9K .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 10rem);
  }
}
.cid-uKlnbifG9K .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKlnbifG9K .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKlnbifG9K .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-uKlnbifG9K .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKlnbifG9K .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKlnbifG9K .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKlnbifG9K .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKlnbifG9K .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKlnbifG9K .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKlnbifG9K .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKlnbifG9K .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-uKlnbifG9K .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKlnbifG9K .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKlnbifG9K .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKlnbifG9K .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKlnbifG9K .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKlnbifG9K .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKlnbifG9K .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKlnbifG9K .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKlnbifG9K .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKlnbifG9K .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-uKlnbifG9K .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKlnbifG9K .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKlnbifG9K .dropdown-item.active,
.cid-uKlnbifG9K .dropdown-item:active {
  background-color: transparent;
}
.cid-uKlnbifG9K .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKlnbifG9K .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKlnbifG9K .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKlnbifG9K .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f1f1f;
}
.cid-uKlnbifG9K .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKlnbifG9K .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKlnbifG9K ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-uKlnbifG9K .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKlnbifG9K button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uKlnbifG9K button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uKlnbifG9K button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKlnbifG9K button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKlnbifG9K button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKlnbifG9K button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKlnbifG9K nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKlnbifG9K nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKlnbifG9K nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKlnbifG9K nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKlnbifG9K .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-uKlnbifG9K a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKlnbifG9K .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uKlnbifG9K .navbar {
    height: 70px;
  }
  .cid-uKlnbifG9K .navbar.opened {
    height: auto;
  }
  .cid-uKlnbifG9K .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKlnbifG9K a {
  display: inline;
}
.cid-uKlnbifG9K img {
  display: inline;
  padding-right: 10px;
}
.cid-uKlnbifG9K .dropdown-toggle:after {
  display: none;
}
.cid-uKlnbifG9K .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uKlnbifG9K .dropdown-item:hover {
  color: #61728a !important;
}
@media (max-width: 990px) {
  .cid-uKlnbifG9K .dropdown-menu {
    margin-top: 0px;
  }
  .cid-uKlnbifG9K .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-uKlnbifG9K .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-uKlnbifG9K .nav-item {
  margin-right: 32px;
}
.cid-uKlnbifG9K .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-uKlnbifG9K ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-uKlnbifG9K .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-uKlnbifG9K .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-uKlnbifG9K .navbar-nav {
  margin: auto;
}
.cid-uKlnbifG9K .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-uKlnbifG9K .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-uKlnbifG9K .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-uKlnbifG9K .btn {
  border-radius: 1000px !important;
}
.cid-uKlnbifG9K .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-uKlnbifG9K .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-uKlnbifG9K .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-uKlnbifG9K .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-uKlnbifG9K .dropdown-item:focus {
  color: #61728a !important;
}
@media (max-width: 945px) {
  .cid-uKlnbifG9K .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-uKlnbifG9K .top {
    margin-top: 25px;
  }
}
.cid-uKlnbifG9K .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-uKlnbifG9K .container,
  .cid-uKlnbifG9K .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uKlnbifG9K li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-uKlnbifG9K ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-uKlnbifG9K .icons-menu {
    min-width: initial !important;
  }
  .cid-uKlnbifG9K a.btn {
    margin-top: 10px;
  }
}
.cid-uKlnbifG9K a.btn > span {
  margin-left: 0.5rem;
}
.cid-rZqakGdhKi {
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background1.webp");
}
.cid-rZqakGdhKi .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-rZqakGdhKi .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-rZqakGdhKi .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rZqakGdhKi .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-rZqakGdhKi .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-rZqakGdhKi .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-rZqakGdhKi .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-rZqakGdhKi .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-rZqakGdhKi .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-rZqakGdhKi .card .wrapper .mbr-section-title,
.cid-rZqakGdhKi .mbr-section-btn,
.cid-rZqakGdhKi .mbr-list .list {
  text-align: center;
}
.cid-uKloZ1F0nu {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uKloZ1F0nu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKloZ1F0nu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKloZ1F0nu .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uKloZ1F0nu .mbr-section-title {
  color: #24262b;
}
.cid-uKloZ1F0nu .mbr-section-subtitle {
  color: #24262b;
}
.cid-uKloZ1F0nu .items-row {
  row-gap: 32px;
}
.cid-uKloZ1F0nu .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uKloZ1F0nu .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uKloZ1F0nu .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uKloZ1F0nu .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uKloZ1F0nu .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uKloZ1F0nu .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uKloZ1F0nu .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uKloZ1F0nu .mbr-item-subtitle {
  color: #24262b;
}
.cid-uKloZ1F0nu .carousel-control,
.cid-uKloZ1F0nu .close {
  background: #1b1b1b;
}
.cid-uKloZ1F0nu .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uKloZ1F0nu .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uKloZ1F0nu .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uKloZ1F0nu .carousel-control-next span {
  margin-left: 5px;
}
.cid-uKloZ1F0nu .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uKloZ1F0nu .close::before {
  content: '\e91a';
}
.cid-uKloZ1F0nu .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uKloZ1F0nu .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uKloZ1F0nu .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKloZ1F0nu .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uKloZ1F0nu .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uKloZ1F0nu .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uKloZ1F0nu .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uKloZ1F0nu .carousel-indicators li.active,
.cid-uKloZ1F0nu .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uKloZ1F0nu .carousel-indicators li::after,
.cid-uKloZ1F0nu .carousel-indicators li::before {
  content: none;
}
.cid-uKloZ1F0nu .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uKloZ1F0nu .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uKloZ1F0nu .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uKloZ1F0nu .carousel-indicators {
    display: none;
  }
}
.cid-uKloZ1F0nu .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uKloZ1F0nu .carousel-inner > .active {
  display: block;
}
.cid-uKloZ1F0nu .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKloZ1F0nu .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uKloZ1F0nu .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uKloZ1F0nu .carousel-control,
  .cid-uKloZ1F0nu .carousel-indicators,
  .cid-uKloZ1F0nu .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uKloZ1F0nu .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uKloZ1F0nu .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uKloZ1F0nu .carousel-indicators .active,
.cid-uKloZ1F0nu .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uKloZ1F0nu .carousel-indicators .active {
  background: #fff;
}
.cid-uKloZ1F0nu .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uKloZ1F0nu .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uKloZ1F0nu .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKloZ1F0nu .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uKloZ1F0nu .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uKloZ1F0nu .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uKloZ1F0nu .carousel {
  width: 100%;
}
.cid-uKloZ1F0nu .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uKloZ1F0nu .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uKloZ1F0nu .modal.fade .modal-dialog,
.cid-uKloZ1F0nu .modal.in .modal-dialog {
  transform: none;
}
.cid-uKloZ1F0nu .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uKloZ1F0nu H6 {
  text-align: center;
}
.cid-rZqakYmFVv {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rZqakYmFVv .row {
  flex-direction: row-reverse;
}
.cid-rZqakYmFVv .img-wrap img {
  width: 100%;
}
.cid-rZqakYmFVv .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-rZqakYmFVv .card .wrapper {
  overflow: hidden;
}
.cid-rZqakYmFVv .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-rZqakYmFVv .card .wrapper .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #1f1f1f 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-rZqakYmFVv .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-rZqakYmFVv .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-rZqakYmFVv .card .wrapper .mbr-text {
  color: #61728a;
  font-weight: 300;
}
.cid-rZqakYmFVv .card .wrapper .sign-wrap {
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cid-rZqakYmFVv .card .wrapper .sign-wrap::before {
  right: 65.8%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #dfe3e8;
}
.cid-rZqakYmFVv .card .wrapper .sign-wrap img {
  width: 140px;
}
.cid-rZqakYmFVv .card .wrapper .sign-wrap::after {
  left: 65.9%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #dfe3e8;
}
.cid-rZqakYmFVv .card .wrapper .mbr-section-title {
  text-align: center;
}
.cid-rZqakYmFVv .card .wrapper .mbr-text {
  color: #000000;
}
.cid-rZqakYmFVv .card .wrapper .mbr-section-subtitle {
  text-align: center;
}
.cid-rZqalT6jOx {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-1920x1280.webp");
}
.cid-rZqalT6jOx .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-rZqalT6jOx .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-rZqalT6jOx .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff653c;
  background: linear-gradient(#ff653c 0%, #1f1f1f 69%, #ff653c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-rZqalT6jOx .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rZqalT6jOx .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-rZqalT6jOx .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-rZqalT6jOx .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-rZqalT6jOx .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-rZqalT6jOx .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-uKlz7QKcyv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uKlz7QKcyv .container-fluid {
  padding: 0 70px;
}
@media (max-width: 1440px) {
  .cid-uKlz7QKcyv .container-fluid {
    padding: 0 48px;
  }
}
@media (max-width: 992px) {
  .cid-uKlz7QKcyv .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uKlz7QKcyv .container {
    padding: 0 20px;
  }
}
.cid-uKlz7QKcyv .mbr-desc {
  margin-bottom: 90px;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-uKlz7QKcyv .mbr-desc {
    margin-bottom: 40px;
  }
}
.cid-uKlz7QKcyv .mbr-section-title {
  margin-bottom: 90px;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-uKlz7QKcyv .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uKlz7QKcyv .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 700px;
  max-width: 700px;
}
@media (max-width: 1200px) {
  .cid-uKlz7QKcyv .embla__slide {
    min-width: 500px;
    max-width: 500px;
  }
}
@media (max-width: 767px) {
  .cid-uKlz7QKcyv .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uKlz7QKcyv .embla__slide .slide-content {
  width: 100%;
}
.cid-uKlz7QKcyv .embla__slide .slide-content .item-wrapper .item-img {
  position: relative;
  border-radius: 1.2rem;
  display: flex;
  align-items: flex-end;
  min-height: 550px;
  padding: 30px;
}
@media (max-width: 992px) {
  .cid-uKlz7QKcyv .embla__slide .slide-content .item-wrapper .item-img {
    padding: 24px;
    min-height: 360px;
  }
}
.cid-uKlz7QKcyv .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.2rem !important;
}
.cid-uKlz7QKcyv .embla__slide .slide-content .item-wrapper .item-img .item-content {
  width: 100%;
  position: relative;
  z-index: 1;
}
.cid-uKlz7QKcyv .embla__slide .slide-content .item-wrapper .item-img .item-content .item-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  background-color: #ffffff;
  border-radius: .75rem;
}
@media (max-width: 992px) {
  .cid-uKlz7QKcyv .embla__slide .slide-content .item-wrapper .item-img .item-content .item-title {
    padding: 24px;
  }
}
@media (max-width: 768px) {
  .cid-uKlz7QKcyv .embla__slide .slide-content .item-wrapper .item-img .item-content .item-title {
    width: 100%;
  }
}
.cid-uKlz7QKcyv .embla__button--next,
.cid-uKlz7QKcyv .embla__button--prev {
  display: flex;
}
.cid-uKlz7QKcyv .embla__button {
  bottom: 0;
  width: 25px;
  height: 25px;
  margin-top: -1.5rem;
  font-size: 16px;
  background-color: transparent !important;
  color: #282f39 !important;
  border: none;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uKlz7QKcyv .embla__button:hover {
  opacity: .5 !important;
}
.cid-uKlz7QKcyv .embla__button.embla__button--prev {
  right: 3rem;
}
.cid-uKlz7QKcyv .embla__button.embla__button--next {
  right: 0;
}
.cid-uKlz7QKcyv .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-uKlz7QKcyv .embla::before {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 90%;
  height: 1px;
  background-color: #dfe6ea;
  margin-right: 10rem;
}
@media (max-width: 992px) {
  .cid-uKlz7QKcyv .embla::before {
    display: none;
  }
}
.cid-uKlz7QKcyv .embla__viewport {
  overflow: visible;
  width: 100%;
  margin-right: 1rem;
}
@media (max-width: 767px) {
  .cid-uKlz7QKcyv .embla__viewport {
    overflow: hidden ;
  }
}
.cid-uKlz7QKcyv .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uKlz7QKcyv .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uKlz7QKcyv .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uKlz7QKcyv .item-title {
  color: #000000;
}
.cid-rZqasE8Bhf {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #1f1f1f;
}
.cid-rZqasE8Bhf .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-rZqasE8Bhf .copyright {
    margin-bottom: 1rem;
  }
}
.cid-rZqasE8Bhf .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #ffffff;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff653c;
  border-color: #ff653c;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-rZqasE8Bhf .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-rZqasE8Bhf .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-uKlnbifG9K {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKlnbifG9K nav.navbar {
  position: fixed;
}
.cid-uKlnbifG9K .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-uKlnbifG9K .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uKlnbifG9K .dropdown-item:hover,
.cid-uKlnbifG9K .dropdown-item:focus {
  color: #1f1f1f !important;
}
.cid-uKlnbifG9K .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-uKlnbifG9K .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKlnbifG9K .nav-link {
  position: relative;
  padding: 0;
}
.cid-uKlnbifG9K .container {
  display: flex;
  margin: auto;
}
.cid-uKlnbifG9K .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uKlnbifG9K .dropdown-menu,
.cid-uKlnbifG9K .navbar.opened {
  background: #1f1f1f !important;
}
.cid-uKlnbifG9K .nav-item:focus,
.cid-uKlnbifG9K .nav-link:focus {
  outline: none;
}
.cid-uKlnbifG9K .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKlnbifG9K .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKlnbifG9K .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKlnbifG9K .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKlnbifG9K .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKlnbifG9K .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKlnbifG9K .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #1f1f1f;
}
.cid-uKlnbifG9K .navbar.opened {
  transition: all 0.3s;
}
.cid-uKlnbifG9K .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKlnbifG9K .navbar .navbar-logo img {
  width: auto;
}
.cid-uKlnbifG9K .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKlnbifG9K .navbar.collapsed {
  justify-content: center;
}
.cid-uKlnbifG9K .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKlnbifG9K .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKlnbifG9K .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 10rem);
  }
}
.cid-uKlnbifG9K .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKlnbifG9K .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKlnbifG9K .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-uKlnbifG9K .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKlnbifG9K .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKlnbifG9K .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKlnbifG9K .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKlnbifG9K .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKlnbifG9K .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKlnbifG9K .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKlnbifG9K .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-uKlnbifG9K .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKlnbifG9K .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKlnbifG9K .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKlnbifG9K .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKlnbifG9K .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKlnbifG9K .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKlnbifG9K .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKlnbifG9K .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKlnbifG9K .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKlnbifG9K .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-uKlnbifG9K .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKlnbifG9K .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKlnbifG9K .dropdown-item.active,
.cid-uKlnbifG9K .dropdown-item:active {
  background-color: transparent;
}
.cid-uKlnbifG9K .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKlnbifG9K .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKlnbifG9K .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKlnbifG9K .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f1f1f;
}
.cid-uKlnbifG9K .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKlnbifG9K .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKlnbifG9K ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-uKlnbifG9K .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKlnbifG9K button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uKlnbifG9K button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uKlnbifG9K button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKlnbifG9K button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKlnbifG9K button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKlnbifG9K button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKlnbifG9K nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKlnbifG9K nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKlnbifG9K nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKlnbifG9K nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKlnbifG9K .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-uKlnbifG9K a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKlnbifG9K .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uKlnbifG9K .navbar {
    height: 70px;
  }
  .cid-uKlnbifG9K .navbar.opened {
    height: auto;
  }
  .cid-uKlnbifG9K .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKlnbifG9K a {
  display: inline;
}
.cid-uKlnbifG9K img {
  display: inline;
  padding-right: 10px;
}
.cid-uKlnbifG9K .dropdown-toggle:after {
  display: none;
}
.cid-uKlnbifG9K .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uKlnbifG9K .dropdown-item:hover {
  color: #61728a !important;
}
@media (max-width: 990px) {
  .cid-uKlnbifG9K .dropdown-menu {
    margin-top: 0px;
  }
  .cid-uKlnbifG9K .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-uKlnbifG9K .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-uKlnbifG9K .nav-item {
  margin-right: 32px;
}
.cid-uKlnbifG9K .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-uKlnbifG9K ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-uKlnbifG9K .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-uKlnbifG9K .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-uKlnbifG9K .navbar-nav {
  margin: auto;
}
.cid-uKlnbifG9K .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-uKlnbifG9K .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-uKlnbifG9K .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-uKlnbifG9K .btn {
  border-radius: 1000px !important;
}
.cid-uKlnbifG9K .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-uKlnbifG9K .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-uKlnbifG9K .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-uKlnbifG9K .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-uKlnbifG9K .dropdown-item:focus {
  color: #61728a !important;
}
@media (max-width: 945px) {
  .cid-uKlnbifG9K .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-uKlnbifG9K .top {
    margin-top: 25px;
  }
}
.cid-uKlnbifG9K .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-uKlnbifG9K .container,
  .cid-uKlnbifG9K .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uKlnbifG9K li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-uKlnbifG9K ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-uKlnbifG9K .icons-menu {
    min-width: initial !important;
  }
  .cid-uKlnbifG9K a.btn {
    margin-top: 10px;
  }
}
.cid-uKlnbifG9K a.btn > span {
  margin-left: 0.5rem;
}
.cid-uKg8xK51kC {
  padding-top: 120px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/background1.webp");
}
.cid-uKg8xK51kC .google-map {
  height: 100%;
  min-height: 25rem;
  position: relative;
  width: 100%;
}
.cid-uKg8xK51kC .google-map iframe {
  min-height: 100%;
  width: 100%;
}
.cid-uKg8xK51kC .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-uKg8xK51kC .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uKg8xK51kC .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uKg8xK51kC .map-placeholder {
  display: none;
}
.cid-uKg8xK51kC .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-uKg8xK51kC .card {
  padding: 3rem 8rem;
}
.cid-uKg8xK51kC .card .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-uKg8xK51kC .card .mbr-text {
  color: #06182d;
}
.cid-uKg8xK51kC .card .mbr-text.display-7 {
  letter-spacing: 0;
}
.cid-uKg8xK51kC .card .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uKg8xK51kC .card .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-uKg8xK51kC .card .items .list-item .text2 {
  display: inline-block;
  color: #000000;
  text-align: left;
}
.cid-uKg8xK51kC .card .mbr-section-btn .btn {
  margin: 0 !important;
  padding: 7px 39px;
}
.cid-uKg8xK51kC .card .mbr-section-btn .btn.display-4 {
  letter-spacing: 0;
}
.cid-uKg8xK51kC .card .mbr-section-btn .btn-success {
  color: #030f1c;
}
.cid-uKg8xK51kC .card .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.cid-uKg8xK51kC .card .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uKg8xK51kC .card .social-list .soc-item a {
  margin: 0;
  transition: 0.2s linear;
}
.cid-uKg8xK51kC .card .social-list .soc-item a .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKg8xK51kC .card .social-list .soc-item a:hover {
  opacity: 0.4;
}
.cid-uKg8xK51kC .card .form-group {
  padding-right: 0;
}
.cid-uKg8xK51kC .card .form-group .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uKg8xK51kC .card .btn-primary {
  border: 1px solid #1f1f1f !important;
}
.cid-uKg8xK51kC .card .btn-primary:hover {
  border: 1px solid #1f1f1f !important;
}
@media (max-width: 1200px) {
  .cid-uKg8xK51kC .card {
    padding: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-uKg8xK51kC .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uKg8xK51kC h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .cid-uKg8xK51kC * {
    text-align: center !important;
  }
  .cid-uKg8xK51kC .card .social-list {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .cid-uKg8xK51kC .form-group {
    max-width: 180px;
  }
  .cid-uKg8xK51kC .card {
    padding: 2rem 1rem;
  }
}
.cid-uKg8xK51kC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKg8xK51kC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKg8xK51kC .card .mbr-section-title {
  color: #ffffff;
}
.cid-uKg8xK51kC .card .group-title {
  color: #ffffff;
}
.cid-uKg8xK51kC .card .items .list-item .text2,
.cid-uKg8xK51kC .card .items .list-item {
  color: #ffffff;
}
.cid-uKg8xK51kC .card .mbr-text {
  color: #ffffff;
}
.cid-rZqasE8Bhf {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #1f1f1f;
}
.cid-rZqasE8Bhf .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-rZqasE8Bhf .copyright {
    margin-bottom: 1rem;
  }
}
.cid-rZqasE8Bhf .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #ffffff;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff653c;
  border-color: #ff653c;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-rZqasE8Bhf .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-rZqasE8Bhf .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-uKlnbifG9K {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKlnbifG9K nav.navbar {
  position: fixed;
}
.cid-uKlnbifG9K .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-uKlnbifG9K .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uKlnbifG9K .dropdown-item:hover,
.cid-uKlnbifG9K .dropdown-item:focus {
  color: #1f1f1f !important;
}
.cid-uKlnbifG9K .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-uKlnbifG9K .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKlnbifG9K .nav-link {
  position: relative;
  padding: 0;
}
.cid-uKlnbifG9K .container {
  display: flex;
  margin: auto;
}
.cid-uKlnbifG9K .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uKlnbifG9K .dropdown-menu,
.cid-uKlnbifG9K .navbar.opened {
  background: #1f1f1f !important;
}
.cid-uKlnbifG9K .nav-item:focus,
.cid-uKlnbifG9K .nav-link:focus {
  outline: none;
}
.cid-uKlnbifG9K .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKlnbifG9K .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKlnbifG9K .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKlnbifG9K .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKlnbifG9K .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKlnbifG9K .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKlnbifG9K .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #1f1f1f;
}
.cid-uKlnbifG9K .navbar.opened {
  transition: all 0.3s;
}
.cid-uKlnbifG9K .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKlnbifG9K .navbar .navbar-logo img {
  width: auto;
}
.cid-uKlnbifG9K .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKlnbifG9K .navbar.collapsed {
  justify-content: center;
}
.cid-uKlnbifG9K .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKlnbifG9K .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKlnbifG9K .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 10rem);
  }
}
.cid-uKlnbifG9K .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKlnbifG9K .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKlnbifG9K .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-uKlnbifG9K .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKlnbifG9K .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKlnbifG9K .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKlnbifG9K .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKlnbifG9K .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKlnbifG9K .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKlnbifG9K .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKlnbifG9K .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-uKlnbifG9K .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKlnbifG9K .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKlnbifG9K .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKlnbifG9K .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKlnbifG9K .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKlnbifG9K .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKlnbifG9K .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKlnbifG9K .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKlnbifG9K .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKlnbifG9K .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-uKlnbifG9K .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKlnbifG9K .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKlnbifG9K .dropdown-item.active,
.cid-uKlnbifG9K .dropdown-item:active {
  background-color: transparent;
}
.cid-uKlnbifG9K .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKlnbifG9K .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKlnbifG9K .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKlnbifG9K .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f1f1f;
}
.cid-uKlnbifG9K .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKlnbifG9K .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKlnbifG9K ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-uKlnbifG9K .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKlnbifG9K button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uKlnbifG9K button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uKlnbifG9K button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKlnbifG9K button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKlnbifG9K button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKlnbifG9K button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKlnbifG9K nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKlnbifG9K nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKlnbifG9K nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKlnbifG9K nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKlnbifG9K .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-uKlnbifG9K a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKlnbifG9K .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uKlnbifG9K .navbar {
    height: 70px;
  }
  .cid-uKlnbifG9K .navbar.opened {
    height: auto;
  }
  .cid-uKlnbifG9K .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKlnbifG9K a {
  display: inline;
}
.cid-uKlnbifG9K img {
  display: inline;
  padding-right: 10px;
}
.cid-uKlnbifG9K .dropdown-toggle:after {
  display: none;
}
.cid-uKlnbifG9K .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uKlnbifG9K .dropdown-item:hover {
  color: #61728a !important;
}
@media (max-width: 990px) {
  .cid-uKlnbifG9K .dropdown-menu {
    margin-top: 0px;
  }
  .cid-uKlnbifG9K .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-uKlnbifG9K .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-uKlnbifG9K .nav-item {
  margin-right: 32px;
}
.cid-uKlnbifG9K .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-uKlnbifG9K ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-uKlnbifG9K .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-uKlnbifG9K .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-uKlnbifG9K .navbar-nav {
  margin: auto;
}
.cid-uKlnbifG9K .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-uKlnbifG9K .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-uKlnbifG9K .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-uKlnbifG9K .btn {
  border-radius: 1000px !important;
}
.cid-uKlnbifG9K .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-uKlnbifG9K .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-uKlnbifG9K .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-uKlnbifG9K .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-uKlnbifG9K .dropdown-item:focus {
  color: #61728a !important;
}
@media (max-width: 945px) {
  .cid-uKlnbifG9K .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-uKlnbifG9K .top {
    margin-top: 25px;
  }
}
.cid-uKlnbifG9K .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-uKlnbifG9K .container,
  .cid-uKlnbifG9K .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uKlnbifG9K li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-uKlnbifG9K ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-uKlnbifG9K .icons-menu {
    min-width: initial !important;
  }
  .cid-uKlnbifG9K a.btn {
    margin-top: 10px;
  }
}
.cid-uKlnbifG9K a.btn > span {
  margin-left: 0.5rem;
}
.cid-uN66haR5UT {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #1f1f1f;
}
.cid-uN66haR5UT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN66haR5UT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN66haR5UT .item-wrapper {
  padding: 30px;
  transition: 0.2s;
  border: 1px solid transparent;
  position: relative;
}
.cid-uN66haR5UT .item-wrapper:hover {
  border: 1px solid #fafafa;
}
.cid-uN66haR5UT .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uN66haR5UT .item-wrapper .w-100 {
  height: 100%;
}
.cid-uN66haR5UT .item-wrapper img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-uN66haR5UT .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  color: #fafafa;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uN66haR5UT .carousel-control,
.cid-uN66haR5UT .close {
  background: #1b1b1b;
}
.cid-uN66haR5UT .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uN66haR5UT .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uN66haR5UT .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uN66haR5UT .carousel-control-next span {
  margin-left: 5px;
}
.cid-uN66haR5UT .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fafafa;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fafafa;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uN66haR5UT .close::before {
  content: '\e91a';
}
.cid-uN66haR5UT .close:hover {
  opacity: 1;
  background: #000000;
  color: #fafafa;
}
.cid-uN66haR5UT .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fafafa;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uN66haR5UT .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uN66haR5UT .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uN66haR5UT .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uN66haR5UT .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uN66haR5UT .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fafafa;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uN66haR5UT .carousel-indicators li.active,
.cid-uN66haR5UT .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uN66haR5UT .carousel-indicators li::after,
.cid-uN66haR5UT .carousel-indicators li::before {
  content: none;
}
.cid-uN66haR5UT .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uN66haR5UT .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uN66haR5UT .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uN66haR5UT .carousel-indicators {
    display: none;
  }
}
.cid-uN66haR5UT .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uN66haR5UT .carousel-inner > .active {
  display: block;
}
.cid-uN66haR5UT .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uN66haR5UT .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uN66haR5UT .carousel-control:hover {
  background: #1c1c1c;
  color: #fafafa;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uN66haR5UT .carousel-control,
  .cid-uN66haR5UT .carousel-indicators,
  .cid-uN66haR5UT .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uN66haR5UT .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uN66haR5UT .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uN66haR5UT .carousel-indicators .active,
.cid-uN66haR5UT .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uN66haR5UT .carousel-indicators .active {
  background: #fafafa;
}
.cid-uN66haR5UT .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uN66haR5UT .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uN66haR5UT .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uN66haR5UT .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uN66haR5UT .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uN66haR5UT .modal-body img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uN66haR5UT .carousel {
  width: 100%;
}
.cid-uN66haR5UT .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uN66haR5UT .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uN66haR5UT .modal.fade .modal-dialog,
.cid-uN66haR5UT .modal.in .modal-dialog {
  transform: none;
}
.cid-uN66haR5UT .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uN66haR5UT H6 {
  text-align: center;
}
.cid-uN66haR5UT .rotate {
  transform: rotate(225deg);
  position: absolute;
}
@media (max-width: 425px) {
  .cid-uN66haR5UT .rotate {
    top: -6px;
  }
}
.cid-uN66haR5UT .title-relative {
  position: relative;
}
.cid-uN66haR5UT .mbr-section-title,
.cid-uN66haR5UT .mbr-section-subtitle {
  color: #fafafa;
}
@media (min-width: 992px) {
  .cid-uN66haR5UT .item-content {
    padding-top: 10px;
  }
}
@media (max-width: 991px) {
  .cid-uN66haR5UT .item-content {
    padding-top: 10px;
  }
}
.cid-uN66haR5UT .mbr-text,
.cid-uN66haR5UT .item-title {
  color: #fafafa;
}
.cid-uN66haR5UT .inner-position {
  padding: 40px;
  background-color: #fafafa;
  max-width: 60%;
  margin: 0 auto;
}
.cid-uN66haR5UT .inner-price {
  margin-bottom: 0;
  align-self: center;
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
}
.cid-uN66haR5UT .style-button {
  padding: 15px 30px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 0;
  font-weight: 500;
  background-color: #000000;
  color: #fafafa;
}
.cid-uN66haR5UT .order-position {
  display: flex;
  justify-content: space-between;
}
.cid-uN66haR5UT .text-size {
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
}
.cid-uN66haR5UT .text-color {
  color: #c4c4c8;
  font-size: 14px;
  line-height: 24px;
}
.cid-uN66haR5UT .span-color {
  color: #000000;
  font-weight: 700;
}
.cid-uN66haR5UT P {
  color: #ffffff;
}
.cid-uN66haR5UT .item-title {
  text-align: left;
}
.cid-uNPZHbdS7I {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #1f1f1f;
}
.cid-uNPZHbdS7I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNPZHbdS7I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNPZHbdS7I .item-wrapper {
  padding: 30px;
  transition: 0.2s;
  border: 1px solid transparent;
  position: relative;
}
.cid-uNPZHbdS7I .item-wrapper:hover {
  border: 1px solid #fafafa;
}
.cid-uNPZHbdS7I .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uNPZHbdS7I .item-wrapper .w-100 {
  height: 100%;
}
.cid-uNPZHbdS7I .item-wrapper img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-uNPZHbdS7I .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  color: #fafafa;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uNPZHbdS7I .carousel-control,
.cid-uNPZHbdS7I .close {
  background: #1b1b1b;
}
.cid-uNPZHbdS7I .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uNPZHbdS7I .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uNPZHbdS7I .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uNPZHbdS7I .carousel-control-next span {
  margin-left: 5px;
}
.cid-uNPZHbdS7I .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fafafa;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fafafa;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uNPZHbdS7I .close::before {
  content: '\e91a';
}
.cid-uNPZHbdS7I .close:hover {
  opacity: 1;
  background: #000000;
  color: #fafafa;
}
.cid-uNPZHbdS7I .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fafafa;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uNPZHbdS7I .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uNPZHbdS7I .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uNPZHbdS7I .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uNPZHbdS7I .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uNPZHbdS7I .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fafafa;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uNPZHbdS7I .carousel-indicators li.active,
.cid-uNPZHbdS7I .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uNPZHbdS7I .carousel-indicators li::after,
.cid-uNPZHbdS7I .carousel-indicators li::before {
  content: none;
}
.cid-uNPZHbdS7I .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uNPZHbdS7I .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uNPZHbdS7I .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uNPZHbdS7I .carousel-indicators {
    display: none;
  }
}
.cid-uNPZHbdS7I .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uNPZHbdS7I .carousel-inner > .active {
  display: block;
}
.cid-uNPZHbdS7I .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uNPZHbdS7I .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uNPZHbdS7I .carousel-control:hover {
  background: #1c1c1c;
  color: #fafafa;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uNPZHbdS7I .carousel-control,
  .cid-uNPZHbdS7I .carousel-indicators,
  .cid-uNPZHbdS7I .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uNPZHbdS7I .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uNPZHbdS7I .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uNPZHbdS7I .carousel-indicators .active,
.cid-uNPZHbdS7I .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uNPZHbdS7I .carousel-indicators .active {
  background: #fafafa;
}
.cid-uNPZHbdS7I .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uNPZHbdS7I .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uNPZHbdS7I .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uNPZHbdS7I .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uNPZHbdS7I .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uNPZHbdS7I .modal-body img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uNPZHbdS7I .carousel {
  width: 100%;
}
.cid-uNPZHbdS7I .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uNPZHbdS7I .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uNPZHbdS7I .modal.fade .modal-dialog,
.cid-uNPZHbdS7I .modal.in .modal-dialog {
  transform: none;
}
.cid-uNPZHbdS7I .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uNPZHbdS7I H6 {
  text-align: center;
}
.cid-uNPZHbdS7I .rotate {
  transform: rotate(225deg);
  position: absolute;
}
@media (max-width: 425px) {
  .cid-uNPZHbdS7I .rotate {
    top: -6px;
  }
}
.cid-uNPZHbdS7I .title-relative {
  position: relative;
}
.cid-uNPZHbdS7I .mbr-section-title,
.cid-uNPZHbdS7I .mbr-section-subtitle {
  color: #fafafa;
}
@media (min-width: 992px) {
  .cid-uNPZHbdS7I .item-content {
    padding-top: 10px;
  }
}
@media (max-width: 991px) {
  .cid-uNPZHbdS7I .item-content {
    padding-top: 10px;
  }
}
.cid-uNPZHbdS7I .mbr-text,
.cid-uNPZHbdS7I .item-title {
  color: #fafafa;
}
.cid-uNPZHbdS7I .inner-position {
  padding: 40px;
  background-color: #fafafa;
  max-width: 60%;
  margin: 0 auto;
}
.cid-uNPZHbdS7I .inner-price {
  margin-bottom: 0;
  align-self: center;
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
}
.cid-uNPZHbdS7I .style-button {
  padding: 15px 30px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 0;
  font-weight: 500;
  background-color: #000000;
  color: #fafafa;
}
.cid-uNPZHbdS7I .order-position {
  display: flex;
  justify-content: space-between;
}
.cid-uNPZHbdS7I .text-size {
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
}
.cid-uNPZHbdS7I .text-color {
  color: #c4c4c8;
  font-size: 14px;
  line-height: 24px;
}
.cid-uNPZHbdS7I .span-color {
  color: #000000;
  font-weight: 700;
}
.cid-uNPZHbdS7I P {
  color: #ffffff;
}
.cid-uNPZHbdS7I .item-title {
  text-align: left;
}
.cid-uQcaCnuG2B {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f1f1f;
}
.cid-uQcaCnuG2B .item:focus,
.cid-uQcaCnuG2B span:focus {
  outline: none;
}
.cid-uQcaCnuG2B .item-wrapper {
  position: relative;
}
.cid-uQcaCnuG2B .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uQcaCnuG2B .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uQcaCnuG2B .container {
    padding: 0 24px;
  }
}
.cid-uQcaCnuG2B .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 767px) {
  .cid-uQcaCnuG2B .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uQcaCnuG2B .embla__slide .slide-content {
  width: 100%;
}
.cid-uQcaCnuG2B .embla__slide .slide-content .item-wrapper {
  padding: 30px;
  border-radius: .5rem !important;
  position: relative;
  overflow: hidden;
}
.cid-uQcaCnuG2B .embla__slide .slide-content .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ff653c;
  opacity: .2;
  width: 100%;
  height: 100%;
}
.cid-uQcaCnuG2B .embla__slide .slide-content .item-wrapper .item-img {
  position: relative;
  z-index: 1;
}
.cid-uQcaCnuG2B .embla__slide .slide-content .item-wrapper .item-img img {
  height: 400px;
  object-fit: cover;
}
.cid-uQcaCnuG2B .embla__button--next,
.cid-uQcaCnuG2B .embla__button--prev {
  display: flex;
}
.cid-uQcaCnuG2B .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 21px;
  background-color: #282f39 !important;
  color: #fbb744;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uQcaCnuG2B .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uQcaCnuG2B .embla__button:hover {
  opacity: .85 !important;
  color: #1f1f1f !important;
}
.cid-uQcaCnuG2B .embla__button.embla__button--prev {
  left: 32px;
}
.cid-uQcaCnuG2B .embla__button.embla__button--next {
  right: 32px;
}
.cid-uQcaCnuG2B .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-uQcaCnuG2B .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uQcaCnuG2B .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uQcaCnuG2B .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uQcaCnuG2B .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uNQ05FbHax {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f1f1f;
}
.cid-uNQ05FbHax .item:focus,
.cid-uNQ05FbHax span:focus {
  outline: none;
}
.cid-uNQ05FbHax .item-wrapper {
  position: relative;
}
.cid-uNQ05FbHax .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uNQ05FbHax .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uNQ05FbHax .container {
    padding: 0 24px;
  }
}
.cid-uNQ05FbHax .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 767px) {
  .cid-uNQ05FbHax .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uNQ05FbHax .embla__slide .slide-content {
  width: 100%;
}
.cid-uNQ05FbHax .embla__slide .slide-content .item-wrapper {
  padding: 30px;
  border-radius: .5rem !important;
  position: relative;
  overflow: hidden;
}
.cid-uNQ05FbHax .embla__slide .slide-content .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ff653c;
  opacity: .2;
  width: 100%;
  height: 100%;
}
.cid-uNQ05FbHax .embla__slide .slide-content .item-wrapper .item-img {
  position: relative;
  z-index: 1;
}
.cid-uNQ05FbHax .embla__slide .slide-content .item-wrapper .item-img img {
  height: 400px;
  object-fit: cover;
}
.cid-uNQ05FbHax .embla__button--next,
.cid-uNQ05FbHax .embla__button--prev {
  display: flex;
}
.cid-uNQ05FbHax .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 21px;
  background-color: #282f39 !important;
  color: #fbb744;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uNQ05FbHax .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uNQ05FbHax .embla__button:hover {
  opacity: .85 !important;
  color: #1f1f1f !important;
}
.cid-uNQ05FbHax .embla__button.embla__button--prev {
  left: 32px;
}
.cid-uNQ05FbHax .embla__button.embla__button--next {
  right: 32px;
}
.cid-uNQ05FbHax .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-uNQ05FbHax .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uNQ05FbHax .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uNQ05FbHax .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uNQ05FbHax .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uNPYbE0byz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f1f1f;
}
.cid-uNPYbE0byz .item:focus,
.cid-uNPYbE0byz span:focus {
  outline: none;
}
.cid-uNPYbE0byz .item-wrapper {
  position: relative;
}
.cid-uNPYbE0byz .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uNPYbE0byz .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uNPYbE0byz .container {
    padding: 0 24px;
  }
}
.cid-uNPYbE0byz .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 767px) {
  .cid-uNPYbE0byz .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uNPYbE0byz .embla__slide .slide-content {
  width: 100%;
}
.cid-uNPYbE0byz .embla__slide .slide-content .item-wrapper {
  padding: 30px;
  border-radius: .5rem !important;
  position: relative;
  overflow: hidden;
}
.cid-uNPYbE0byz .embla__slide .slide-content .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ff653c;
  opacity: .2;
  width: 100%;
  height: 100%;
}
.cid-uNPYbE0byz .embla__slide .slide-content .item-wrapper .item-img {
  position: relative;
  z-index: 1;
}
.cid-uNPYbE0byz .embla__slide .slide-content .item-wrapper .item-img img {
  height: 400px;
  object-fit: cover;
}
.cid-uNPYbE0byz .embla__button--next,
.cid-uNPYbE0byz .embla__button--prev {
  display: flex;
}
.cid-uNPYbE0byz .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 21px;
  background-color: #282f39 !important;
  color: #fbb744;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uNPYbE0byz .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uNPYbE0byz .embla__button:hover {
  opacity: .85 !important;
  color: #1f1f1f !important;
}
.cid-uNPYbE0byz .embla__button.embla__button--prev {
  left: 32px;
}
.cid-uNPYbE0byz .embla__button.embla__button--next {
  right: 32px;
}
.cid-uNPYbE0byz .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-uNPYbE0byz .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uNPYbE0byz .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uNPYbE0byz .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uNPYbE0byz .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uNb3RwWb3Q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f1f1f;
}
.cid-uNb3RwWb3Q .item:focus,
.cid-uNb3RwWb3Q span:focus {
  outline: none;
}
.cid-uNb3RwWb3Q .item-wrapper {
  position: relative;
}
.cid-uNb3RwWb3Q .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uNb3RwWb3Q .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uNb3RwWb3Q .container {
    padding: 0 24px;
  }
}
.cid-uNb3RwWb3Q .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 767px) {
  .cid-uNb3RwWb3Q .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uNb3RwWb3Q .embla__slide .slide-content {
  width: 100%;
}
.cid-uNb3RwWb3Q .embla__slide .slide-content .item-wrapper {
  padding: 30px;
  border-radius: .5rem !important;
  position: relative;
  overflow: hidden;
}
.cid-uNb3RwWb3Q .embla__slide .slide-content .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ff653c;
  opacity: .2;
  width: 100%;
  height: 100%;
}
.cid-uNb3RwWb3Q .embla__slide .slide-content .item-wrapper .item-img {
  position: relative;
  z-index: 1;
}
.cid-uNb3RwWb3Q .embla__slide .slide-content .item-wrapper .item-img img {
  height: 400px;
  object-fit: cover;
}
.cid-uNb3RwWb3Q .embla__button--next,
.cid-uNb3RwWb3Q .embla__button--prev {
  display: flex;
}
.cid-uNb3RwWb3Q .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 21px;
  background-color: #282f39 !important;
  color: #fbb744;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uNb3RwWb3Q .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uNb3RwWb3Q .embla__button:hover {
  opacity: .85 !important;
  color: #1f1f1f !important;
}
.cid-uNb3RwWb3Q .embla__button.embla__button--prev {
  left: 32px;
}
.cid-uNb3RwWb3Q .embla__button.embla__button--next {
  right: 32px;
}
.cid-uNb3RwWb3Q .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-uNb3RwWb3Q .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uNb3RwWb3Q .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uNb3RwWb3Q .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uNb3RwWb3Q .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uN69UeJh2B {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f1f1f;
}
.cid-uN69UeJh2B .item:focus,
.cid-uN69UeJh2B span:focus {
  outline: none;
}
.cid-uN69UeJh2B .item-wrapper {
  position: relative;
}
.cid-uN69UeJh2B .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uN69UeJh2B .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uN69UeJh2B .container {
    padding: 0 24px;
  }
}
.cid-uN69UeJh2B .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 767px) {
  .cid-uN69UeJh2B .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uN69UeJh2B .embla__slide .slide-content {
  width: 100%;
}
.cid-uN69UeJh2B .embla__slide .slide-content .item-wrapper {
  padding: 30px;
  border-radius: .5rem !important;
  position: relative;
  overflow: hidden;
}
.cid-uN69UeJh2B .embla__slide .slide-content .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ff653c;
  opacity: .2;
  width: 100%;
  height: 100%;
}
.cid-uN69UeJh2B .embla__slide .slide-content .item-wrapper .item-img {
  position: relative;
  z-index: 1;
}
.cid-uN69UeJh2B .embla__slide .slide-content .item-wrapper .item-img img {
  height: 400px;
  object-fit: cover;
}
.cid-uN69UeJh2B .embla__button--next,
.cid-uN69UeJh2B .embla__button--prev {
  display: flex;
}
.cid-uN69UeJh2B .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 21px;
  background-color: #282f39 !important;
  color: #fbb744;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uN69UeJh2B .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uN69UeJh2B .embla__button:hover {
  opacity: .85 !important;
  color: #1f1f1f !important;
}
.cid-uN69UeJh2B .embla__button.embla__button--prev {
  left: 32px;
}
.cid-uN69UeJh2B .embla__button.embla__button--next {
  right: 32px;
}
.cid-uN69UeJh2B .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-uN69UeJh2B .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uN69UeJh2B .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uN69UeJh2B .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uN69UeJh2B .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uN6aEG4tdk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f1f1f;
}
.cid-uN6aEG4tdk .item:focus,
.cid-uN6aEG4tdk span:focus {
  outline: none;
}
.cid-uN6aEG4tdk .item-wrapper {
  position: relative;
}
.cid-uN6aEG4tdk .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uN6aEG4tdk .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uN6aEG4tdk .container {
    padding: 0 24px;
  }
}
.cid-uN6aEG4tdk .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 767px) {
  .cid-uN6aEG4tdk .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uN6aEG4tdk .embla__slide .slide-content {
  width: 100%;
}
.cid-uN6aEG4tdk .embla__slide .slide-content .item-wrapper {
  padding: 30px;
  border-radius: .5rem !important;
  position: relative;
  overflow: hidden;
}
.cid-uN6aEG4tdk .embla__slide .slide-content .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ff653c;
  opacity: .2;
  width: 100%;
  height: 100%;
}
.cid-uN6aEG4tdk .embla__slide .slide-content .item-wrapper .item-img {
  position: relative;
  z-index: 1;
}
.cid-uN6aEG4tdk .embla__slide .slide-content .item-wrapper .item-img img {
  height: 400px;
  object-fit: cover;
}
.cid-uN6aEG4tdk .embla__button--next,
.cid-uN6aEG4tdk .embla__button--prev {
  display: flex;
}
.cid-uN6aEG4tdk .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 21px;
  background-color: #282f39 !important;
  color: #fbb744;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uN6aEG4tdk .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uN6aEG4tdk .embla__button:hover {
  opacity: .85 !important;
  color: #1f1f1f !important;
}
.cid-uN6aEG4tdk .embla__button.embla__button--prev {
  left: 32px;
}
.cid-uN6aEG4tdk .embla__button.embla__button--next {
  right: 32px;
}
.cid-uN6aEG4tdk .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-uN6aEG4tdk .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uN6aEG4tdk .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uN6aEG4tdk .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uN6aEG4tdk .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uN6baMH7BD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f1f1f;
}
.cid-uN6baMH7BD .item:focus,
.cid-uN6baMH7BD span:focus {
  outline: none;
}
.cid-uN6baMH7BD .item-wrapper {
  position: relative;
}
.cid-uN6baMH7BD .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uN6baMH7BD .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uN6baMH7BD .container {
    padding: 0 24px;
  }
}
.cid-uN6baMH7BD .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 767px) {
  .cid-uN6baMH7BD .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uN6baMH7BD .embla__slide .slide-content {
  width: 100%;
}
.cid-uN6baMH7BD .embla__slide .slide-content .item-wrapper {
  padding: 30px;
  border-radius: .5rem !important;
  position: relative;
  overflow: hidden;
}
.cid-uN6baMH7BD .embla__slide .slide-content .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ff653c;
  opacity: .2;
  width: 100%;
  height: 100%;
}
.cid-uN6baMH7BD .embla__slide .slide-content .item-wrapper .item-img {
  position: relative;
  z-index: 1;
}
.cid-uN6baMH7BD .embla__slide .slide-content .item-wrapper .item-img img {
  height: 400px;
  object-fit: cover;
}
.cid-uN6baMH7BD .embla__button--next,
.cid-uN6baMH7BD .embla__button--prev {
  display: flex;
}
.cid-uN6baMH7BD .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 21px;
  background-color: #282f39 !important;
  color: #fbb744;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uN6baMH7BD .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uN6baMH7BD .embla__button:hover {
  opacity: .85 !important;
  color: #1f1f1f !important;
}
.cid-uN6baMH7BD .embla__button.embla__button--prev {
  left: 32px;
}
.cid-uN6baMH7BD .embla__button.embla__button--next {
  right: 32px;
}
.cid-uN6baMH7BD .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-uN6baMH7BD .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uN6baMH7BD .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uN6baMH7BD .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uN6baMH7BD .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uKly4vNJIO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f1f1f;
}
.cid-uKly4vNJIO .item:focus,
.cid-uKly4vNJIO span:focus {
  outline: none;
}
.cid-uKly4vNJIO .item-wrapper {
  position: relative;
}
.cid-uKly4vNJIO .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uKly4vNJIO .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uKly4vNJIO .container {
    padding: 0 24px;
  }
}
.cid-uKly4vNJIO .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 767px) {
  .cid-uKly4vNJIO .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uKly4vNJIO .embla__slide .slide-content {
  width: 100%;
}
.cid-uKly4vNJIO .embla__slide .slide-content .item-wrapper {
  padding: 30px;
  border-radius: .5rem !important;
  position: relative;
  overflow: hidden;
}
.cid-uKly4vNJIO .embla__slide .slide-content .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ff653c;
  opacity: .2;
  width: 100%;
  height: 100%;
}
.cid-uKly4vNJIO .embla__slide .slide-content .item-wrapper .item-img {
  position: relative;
  z-index: 1;
}
.cid-uKly4vNJIO .embla__slide .slide-content .item-wrapper .item-img img {
  height: 400px;
  object-fit: cover;
}
.cid-uKly4vNJIO .embla__button--next,
.cid-uKly4vNJIO .embla__button--prev {
  display: flex;
}
.cid-uKly4vNJIO .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 21px;
  background-color: #282f39 !important;
  color: #fbb744;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uKly4vNJIO .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uKly4vNJIO .embla__button:hover {
  opacity: .85 !important;
  color: #1f1f1f !important;
}
.cid-uKly4vNJIO .embla__button.embla__button--prev {
  left: 32px;
}
.cid-uKly4vNJIO .embla__button.embla__button--next {
  right: 32px;
}
.cid-uKly4vNJIO .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-uKly4vNJIO .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uKly4vNJIO .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uKly4vNJIO .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uKly4vNJIO .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uKGgtIFfBs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f1f1f;
}
.cid-uKGgtIFfBs .item:focus,
.cid-uKGgtIFfBs span:focus {
  outline: none;
}
.cid-uKGgtIFfBs .item-wrapper {
  position: relative;
}
.cid-uKGgtIFfBs .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uKGgtIFfBs .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uKGgtIFfBs .container {
    padding: 0 24px;
  }
}
.cid-uKGgtIFfBs .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 767px) {
  .cid-uKGgtIFfBs .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uKGgtIFfBs .embla__slide .slide-content {
  width: 100%;
}
.cid-uKGgtIFfBs .embla__slide .slide-content .item-wrapper {
  padding: 30px;
  border-radius: .5rem !important;
  position: relative;
  overflow: hidden;
}
.cid-uKGgtIFfBs .embla__slide .slide-content .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ff653c;
  opacity: .2;
  width: 100%;
  height: 100%;
}
.cid-uKGgtIFfBs .embla__slide .slide-content .item-wrapper .item-img {
  position: relative;
  z-index: 1;
}
.cid-uKGgtIFfBs .embla__slide .slide-content .item-wrapper .item-img img {
  height: 400px;
  object-fit: cover;
}
.cid-uKGgtIFfBs .embla__button--next,
.cid-uKGgtIFfBs .embla__button--prev {
  display: flex;
}
.cid-uKGgtIFfBs .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 21px;
  background-color: #282f39 !important;
  color: #fbb744;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uKGgtIFfBs .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uKGgtIFfBs .embla__button:hover {
  opacity: .85 !important;
  color: #1f1f1f !important;
}
.cid-uKGgtIFfBs .embla__button.embla__button--prev {
  left: 32px;
}
.cid-uKGgtIFfBs .embla__button.embla__button--next {
  right: 32px;
}
.cid-uKGgtIFfBs .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-uKGgtIFfBs .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uKGgtIFfBs .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uKGgtIFfBs .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uKGgtIFfBs .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uKGhzCLZXM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f1f1f;
}
.cid-uKGhzCLZXM .item:focus,
.cid-uKGhzCLZXM span:focus {
  outline: none;
}
.cid-uKGhzCLZXM .item-wrapper {
  position: relative;
}
.cid-uKGhzCLZXM .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uKGhzCLZXM .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uKGhzCLZXM .container {
    padding: 0 24px;
  }
}
.cid-uKGhzCLZXM .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 767px) {
  .cid-uKGhzCLZXM .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uKGhzCLZXM .embla__slide .slide-content {
  width: 100%;
}
.cid-uKGhzCLZXM .embla__slide .slide-content .item-wrapper {
  padding: 30px;
  border-radius: .5rem !important;
  position: relative;
  overflow: hidden;
}
.cid-uKGhzCLZXM .embla__slide .slide-content .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ff653c;
  opacity: .2;
  width: 100%;
  height: 100%;
}
.cid-uKGhzCLZXM .embla__slide .slide-content .item-wrapper .item-img {
  position: relative;
  z-index: 1;
}
.cid-uKGhzCLZXM .embla__slide .slide-content .item-wrapper .item-img img {
  height: 400px;
  object-fit: cover;
}
.cid-uKGhzCLZXM .embla__button--next,
.cid-uKGhzCLZXM .embla__button--prev {
  display: flex;
}
.cid-uKGhzCLZXM .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 21px;
  background-color: #282f39 !important;
  color: #fbb744;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uKGhzCLZXM .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uKGhzCLZXM .embla__button:hover {
  opacity: .85 !important;
  color: #1f1f1f !important;
}
.cid-uKGhzCLZXM .embla__button.embla__button--prev {
  left: 32px;
}
.cid-uKGhzCLZXM .embla__button.embla__button--next {
  right: 32px;
}
.cid-uKGhzCLZXM .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-uKGhzCLZXM .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uKGhzCLZXM .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uKGhzCLZXM .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uKGhzCLZXM .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uN6cilayqH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f1f1f;
}
.cid-uN6cilayqH .item:focus,
.cid-uN6cilayqH span:focus {
  outline: none;
}
.cid-uN6cilayqH .item-wrapper {
  position: relative;
}
.cid-uN6cilayqH .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uN6cilayqH .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uN6cilayqH .container {
    padding: 0 24px;
  }
}
.cid-uN6cilayqH .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 767px) {
  .cid-uN6cilayqH .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uN6cilayqH .embla__slide .slide-content {
  width: 100%;
}
.cid-uN6cilayqH .embla__slide .slide-content .item-wrapper {
  padding: 30px;
  border-radius: .5rem !important;
  position: relative;
  overflow: hidden;
}
.cid-uN6cilayqH .embla__slide .slide-content .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ff653c;
  opacity: .2;
  width: 100%;
  height: 100%;
}
.cid-uN6cilayqH .embla__slide .slide-content .item-wrapper .item-img {
  position: relative;
  z-index: 1;
}
.cid-uN6cilayqH .embla__slide .slide-content .item-wrapper .item-img img {
  height: 400px;
  object-fit: cover;
}
.cid-uN6cilayqH .embla__button--next,
.cid-uN6cilayqH .embla__button--prev {
  display: flex;
}
.cid-uN6cilayqH .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 21px;
  background-color: #282f39 !important;
  color: #fbb744;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uN6cilayqH .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uN6cilayqH .embla__button:hover {
  opacity: .85 !important;
  color: #1f1f1f !important;
}
.cid-uN6cilayqH .embla__button.embla__button--prev {
  left: 32px;
}
.cid-uN6cilayqH .embla__button.embla__button--next {
  right: 32px;
}
.cid-uN6cilayqH .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-uN6cilayqH .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uN6cilayqH .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uN6cilayqH .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uN6cilayqH .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-rZqasE8Bhf {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #1f1f1f;
}
.cid-rZqasE8Bhf .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-rZqasE8Bhf .copyright {
    margin-bottom: 1rem;
  }
}
.cid-rZqasE8Bhf .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #ffffff;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff653c;
  border-color: #ff653c;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-rZqasE8Bhf .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-rZqasE8Bhf .text-wrap .icons-wrap::after {
    display: none;
  }
}
