body {
  font-family: 'Urbanist', sans-serif;
}
.display-1 {
  font-family: 'Urbanist', sans-serif;
  font-size: 4.375rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.46875rem;
}
.display-2 {
  font-family: 'Urbanist', sans-serif;
  font-size: 3.125rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Urbanist', sans-serif;
  font-size: 2.0625rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.578125rem;
}
.display-7 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.0625rem;
    font-size: calc( 2.18125rem + (4.375 - 2.18125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.18125rem + (4.375 - 2.18125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.65rem;
    font-size: calc( 1.371875rem + (2.0625 - 1.371875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.371875rem + (2.0625 - 1.371875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ea873f !important;
}
.bg-success {
  background-color: #fafafa !important;
}
.bg-info {
  background-color: #4f4f53 !important;
}
.bg-warning {
  background-color: #1d4b67 !important;
}
.bg-danger {
  background-color: #606e7c !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ea873f !important;
  border-color: #ea873f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #be5c15 !important;
  border-color: #be5c15 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #be5c15 !important;
  border-color: #be5c15 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ea873f !important;
  border-color: #ea873f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #be5c15 !important;
  border-color: #be5c15 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #be5c15 !important;
  border-color: #be5c15 !important;
}
.btn-info,
.btn-info:active {
  background-color: #4f4f53 !important;
  border-color: #4f4f53 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #252527 !important;
  border-color: #252527 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #252527 !important;
  border-color: #252527 !important;
}
.btn-success,
.btn-success:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #1d4b67 !important;
  border-color: #1d4b67 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #0a1a23 !important;
  border-color: #0a1a23 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #0a1a23 !important;
  border-color: #0a1a23 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #606e7c !important;
  border-color: #606e7c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #3a434b !important;
  border-color: #3a434b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #3a434b !important;
  border-color: #3a434b !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ea873f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #be5c15 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ea873f !important;
  border-color: #ea873f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ea873f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #be5c15 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ea873f !important;
  border-color: #ea873f !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #4f4f53;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #252527 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #4f4f53 !important;
  border-color: #4f4f53 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1d4b67;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #0a1a23 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #1d4b67 !important;
  border-color: #1d4b67 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #606e7c;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #3a434b !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #606e7c !important;
  border-color: #606e7c !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ea873f !important;
}
.text-secondary {
  color: #ea873f !important;
}
.text-success {
  color: #fafafa !important;
}
.text-info {
  color: #4f4f53 !important;
}
.text-warning {
  color: #1d4b67 !important;
}
.text-danger {
  color: #606e7c !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #b05513 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #b05513 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #c7c7c7 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1d1d1f !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #071117 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #333b43 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ea873f;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #4f4f53;
}
.alert-warning {
  background-color: #1d4b67;
}
.alert-danger {
  background-color: #606e7c;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ea873f;
  border-color: #ea873f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ea873f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fefaf7;
}
.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: #c2c2c5;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #3c93c8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #a3aeb8;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Urbanist', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ea873f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Urbanist', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #ea873f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ea873f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ea873f;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ea873f;
  border-bottom-color: #ea873f;
}
.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: #000000 !important;
  background-color: #ea873f !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ea873f !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='%23ea873f' %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-uJLFDX8Bh3 {
  z-index: 1000;
  width: 100%;
}
.cid-uJLFDX8Bh3 .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-uJLFDX8Bh3 .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ea873f;
  z-index: -1;
}
.cid-uJLFDX8Bh3 nav.navbar {
  position: fixed;
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-item {
    border: 0;
  }
}
.cid-uJLFDX8Bh3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-uJLFDX8Bh3 .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-uJLFDX8Bh3 .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-uJLFDX8Bh3 .title-wrap:hover span {
  color: white;
}
.cid-uJLFDX8Bh3 .title-wrap:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ea873f;
}
.cid-uJLFDX8Bh3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJLFDX8Bh3 .nav-link {
  position: relative;
}
.cid-uJLFDX8Bh3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .container {
    flex-wrap: nowrap;
  }
}
.cid-uJLFDX8Bh3 .dropdown-menu,
.cid-uJLFDX8Bh3 .navbar.opened {
  background: #2a2b36 !important;
}
.cid-uJLFDX8Bh3 .nav-item:focus,
.cid-uJLFDX8Bh3 .nav-link:focus {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(42, 43, 54, 0.6);
}
.cid-uJLFDX8Bh3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJLFDX8Bh3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uJLFDX8Bh3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJLFDX8Bh3 .navbar.collapsed {
  justify-content: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJLFDX8Bh3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJLFDX8Bh3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJLFDX8Bh3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJLFDX8Bh3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uJLFDX8Bh3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJLFDX8Bh3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown-item.active,
.cid-uJLFDX8Bh3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uJLFDX8Bh3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a2b36;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJLFDX8Bh3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJLFDX8Bh3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJLFDX8Bh3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJLFDX8Bh3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ea873f;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJLFDX8Bh3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJLFDX8Bh3 .navbar {
    height: 70px;
  }
  .cid-uJLFDX8Bh3 .navbar.opened {
    height: auto;
  }
  .cid-uJLFDX8Bh3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap,
.cid-uJLFDX8Bh3 .title-wrap {
  color: #272727;
}
.cid-uI3Hiu4sC7 {
  background-image: url("../../../assets/images/soff-igorevich-58942-real-hawaii-beyond-the-tourist-guides.-601ea074-3101-46d4-ae58-b7caa48444a6.png-1344x896.png");
  position: relative;
}
.cid-uI3Hiu4sC7::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(10deg, #000000 18%, transparent 90%, #000000 100%);
  pointer-events: none;
  z-index: 1;
}
.cid-uI3Hiu4sC7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uI3Hiu4sC7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uI3Hiu4sC7 .content-wrapper {
  position: relative;
  z-index: 2;
  margin-top: 260px;
}
@media (max-width: 992px) {
  .cid-uI3Hiu4sC7 .content-wrapper {
    margin-top: 0;
  }
}
.cid-uI3Hiu4sC7 .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
  background-image: linear-gradient(180deg, #ea873f, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uI3Hiu4sC7 .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uI3Hiu4sC7 .mbr-section-title {
  color: #ffffff;
}
.cid-uI3Hiu4sC7 .mbr-text {
  color: #ffffff;
}
.cid-uI3Hiu4sC7 .mbr-section-title,
.cid-uI3Hiu4sC7 .mbr-section-btn {
  color: #ffffff;
}
.cid-sKLTnuKhEm {
  padding-top: 10rem;
  padding-bottom: 4rem;
  overflow: hidden;
  position: relative;
  background-color: #1c1c20;
}
.cid-sKLTnuKhEm .row {
  align-items: center;
}
.cid-sKLTnuKhEm .shape_left {
  width: 25%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 0;
  background-color: #2a2b36;
}
.cid-sKLTnuKhEm .shape_right {
  width: 15%;
  position: absolute;
  top: 20%;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-color: #1c1c20;
}
.cid-sKLTnuKhEm .content_box {
  position: relative;
  z-index: 3;
}
.cid-sKLTnuKhEm .mbr-section-title {
  margin-bottom: 21px;
  color: #ffffff;
}
.cid-sKLTnuKhEm .mbr-text {
  margin-bottom: 21px;
  color: #ffffff;
}
.cid-sKLTnuKhEm .image-wrapper,
.cid-sKLTnuKhEm img {
  width: 100%;
}
.cid-sKLTnuKhEm .image-wrapper {
  position: relative;
  z-index: 1;
}
.cid-sKLTnuKhEm .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #4a4a4a;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-sKLTnuKhEm .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-sKLTnuKhEm .iconfont-wrapper:hover {
  background-color: #3d3d3d;
}
.cid-sKLTnuKhEm .icons_footer {
  margin-top: 35px;
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
}
@media (min-width: 991px) {
  .cid-sKLTnuKhEm .content_box {
    padding: 0 5rem 0 1rem;
  }
  .cid-sKLTnuKhEm .image_left {
    padding-top: 5rem;
  }
}
@media (max-width: 991px) {
  .cid-sKLTnuKhEm .row {
    flex-direction: column;
  }
  .cid-sKLTnuKhEm .content_box {
    padding: 3rem 0;
  }
}
@media (max-width: 767px) {
  .cid-sKLTnuKhEm .shape {
    display: none;
  }
}
.cid-sKLT4t8KOP {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #1c1c20;
}
.cid-sKLT4t8KOP img,
.cid-sKLT4t8KOP .item-img {
  width: 100%;
  object-fit: cover;
  height: 500px;
  transition: all 0.35s cubic-bezier(0.4, 0.12, 0.4, 0.85);
}
.cid-sKLT4t8KOP .item-img {
  position: relative;
}
.cid-sKLT4t8KOP .item-img:before {
  content: "";
  position: absolute;
  width: 101%;
  height: 101%;
  border: 1px solid #ebb46e;
  top: -0.5%;
  left: -0.5%;
  pointer-events: none;
}
.cid-sKLT4t8KOP .item-img:hover {
  transform: translateY(-7px);
}
.cid-sKLT4t8KOP .item {
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .cid-sKLT4t8KOP .item:nth-child(1),
  .cid-sKLT4t8KOP .item:nth-child(2),
  .cid-sKLT4t8KOP .item:nth-child(3) {
    margin-top: 70px;
  }
  .cid-sKLT4t8KOP .item:nth-child(2),
  .cid-sKLT4t8KOP .item:nth-child(5),
  .cid-sKLT4t8KOP .item:nth-child(8),
  .cid-sKLT4t8KOP .item:nth-child(11),
  .cid-sKLT4t8KOP .item:nth-child(15) {
    transform: translateY(-70px);
  }
}
.cid-sKLT4t8KOP .item-title {
  margin-bottom: 1rem;
  color: #ea873f;
}
.cid-sKLT4t8KOP .item_content {
  margin-top: 27px;
}
.cid-sKLT4t8KOP .mbr-text {
  margin-bottom: 1rem;
  color: #ffffff;
}
.cid-sKLT4t8KOP .item-wrapper {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: visible;
}
@media (min-width: 992px) {
  .cid-sKLT4t8KOP .item-wrapper {
    padding: 0 1.5rem;
  }
}
.cid-sKLT4t8KOP .item-title DIV {
  text-align: center;
}
.cid-sKLTbY3WGz {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/soff-igorevich-58942-real-hawaii-beyond-the-guidebooks-84f3bb20-7cf7-49b1-a95b-6632572d0ff0.png-1344x896.png");
}
.cid-sKLTbY3WGz .image-wrapper,
.cid-sKLTbY3WGz img {
  width: 100%;
  object-fit: contain;
}
.cid-sKLTbY3WGz img {
  display: inline-block;
  width: 6rem;
}
.cid-sKLTbY3WGz .mbr-section-title {
  margin: 25px 0;
}
.cid-sKLTbY3WGz .mbr-text {
  margin-bottom: 19px;
}
.cid-uI3JJxbbUD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1c1c20;
}
.cid-uI3JJxbbUD img,
.cid-uI3JJxbbUD .item-img {
  width: 100%;
}
.cid-uI3JJxbbUD .item:focus,
.cid-uI3JJxbbUD span:focus {
  outline: none;
}
.cid-uI3JJxbbUD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uI3JJxbbUD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #2a2b36;
  outline: 1px solid #ebb46e;
  outline-style: auto;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uI3JJxbbUD .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uI3JJxbbUD .item-wrapper .item-footer {
    padding: 0 2rem 1.2rem;
  }
}
@media (max-width: 991px) {
  .cid-uI3JJxbbUD .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uI3JJxbbUD .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uI3JJxbbUD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uI3JJxbbUD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uI3JJxbbUD .mbr-section-subtitle {
  color: #6c7577;
}
.cid-uI3JJxbbUD .mbr-text,
.cid-uI3JJxbbUD .mbr-section-btn {
  text-align: left;
  color: #fafafa;
}
.cid-uI3JJxbbUD .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-uI3JJxbbUD .mbr-text {
  color: #6c7577;
  text-align: left;
}
.cid-uI3JJxbbUD .item-subtitle {
  text-align: center;
}
.cid-uI3JJxbbUD .display-4 {
  font-weight: 500;
}
.cid-uJFgI2sttM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #2a2b36;
}
.cid-uJFgI2sttM .content_box {
  position: relative;
  z-index: 5;
}
.cid-uJFgI2sttM .carousel-item {
  justify-content: center;
}
.cid-uJFgI2sttM .carousel-item.active,
.cid-uJFgI2sttM .carousel-item-next,
.cid-uJFgI2sttM .carousel-item-prev {
  display: flex;
}
.cid-uJFgI2sttM .carousel-controls a {
  transition: opacity .5s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  font-size: 22px;
  height: 22px;
  width: 22px;
  padding: 10px;
  color: #ea873f;
  opacity: 1;
}
.cid-uJFgI2sttM .carousel-control-next span {
  padding-left: 5px;
}
.cid-uJFgI2sttM .carousel-control-prev span {
  padding-right: 5px;
}
.cid-uJFgI2sttM .user_image {
  width: 100px;
  margin-bottom: 35px;
  overflow: hidden;
  margin: 0 auto 2rem auto;
}
.cid-uJFgI2sttM .user_image img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-uJFgI2sttM .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-uJFgI2sttM .user_text {
  line-height: 1.272em;
  font-weight: 500;
  color: #fafafa;
}
.cid-uJFgI2sttM .user_name {
  color: #ebb46e;
}
.cid-uH7u96jdXx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/soff-igorevich-58942-real-hawaii-beyond-the-guidebooks-21876d7b-0a14-440d-8098-bceaf0b8c017.png-1344x896.png");
}
.cid-uH7u96jdXx .mbr-overlay {
  background-color: #ffffff;
  opacity: 0;
}
.cid-uH7u96jdXx .form-group textarea {
  border: 1px solid #fafafa !important;
}
.cid-uH7u96jdXx .form-control,
.cid-uH7u96jdXx .field-input,
.cid-uH7u96jdXx textarea {
  background-color: #2a2b36;
  border-color: #fafafa;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  border-radius: 0 !important;
  outline: none;
  border: none !important;
  border-bottom: 1px solid #fafafa !important;
  margin-bottom: 40px;
}
.cid-uH7u96jdXx .form-control::-webkit-input-placeholder,
.cid-uH7u96jdXx .field-input::-webkit-input-placeholder,
.cid-uH7u96jdXx textarea::-webkit-input-placeholder,
.cid-uH7u96jdXx .form-control::-webkit-input-placeholder,
.cid-uH7u96jdXx .field-input::-webkit-input-placeholder,
.cid-uH7u96jdXx textarea::-webkit-input-placeholder {
  color: #fafafa;
}
.cid-uH7u96jdXx .form-control:-moz-placeholder,
.cid-uH7u96jdXx .field-input:-moz-placeholder,
.cid-uH7u96jdXx textarea:-moz-placeholder,
.cid-uH7u96jdXx .form-control:-moz-placeholder,
.cid-uH7u96jdXx .field-input:-moz-placeholder,
.cid-uH7u96jdXx textarea:-moz-placeholder {
  color: #fafafa;
}
.cid-uH7u96jdXx .form-control:hover,
.cid-uH7u96jdXx .field-input:hover,
.cid-uH7u96jdXx textarea:hover,
.cid-uH7u96jdXx .form-control:focus,
.cid-uH7u96jdXx .field-input:focus,
.cid-uH7u96jdXx textarea:focus {
  background-color: #fafafa;
  border-color: #fafafa;
  color: #fafafa;
  box-shadow: none;
  outline: none;
}
.cid-uH7u96jdXx .form-control:hover::-webkit-input-placeholder,
.cid-uH7u96jdXx .field-input:hover::-webkit-input-placeholder,
.cid-uH7u96jdXx textarea:hover::-webkit-input-placeholder,
.cid-uH7u96jdXx .form-control:focus::-webkit-input-placeholder,
.cid-uH7u96jdXx .field-input:focus::-webkit-input-placeholder,
.cid-uH7u96jdXx textarea:focus::-webkit-input-placeholder,
.cid-uH7u96jdXx .form-control:hover::-webkit-input-placeholder,
.cid-uH7u96jdXx .field-input:hover::-webkit-input-placeholder,
.cid-uH7u96jdXx textarea:hover::-webkit-input-placeholder,
.cid-uH7u96jdXx .form-control:focus::-webkit-input-placeholder,
.cid-uH7u96jdXx .field-input:focus::-webkit-input-placeholder,
.cid-uH7u96jdXx textarea:focus::-webkit-input-placeholder {
  color: #2a2b36;
}
.cid-uH7u96jdXx .form-control:hover:-moz-placeholder,
.cid-uH7u96jdXx .field-input:hover:-moz-placeholder,
.cid-uH7u96jdXx textarea:hover:-moz-placeholder,
.cid-uH7u96jdXx .form-control:focus:-moz-placeholder,
.cid-uH7u96jdXx .field-input:focus:-moz-placeholder,
.cid-uH7u96jdXx textarea:focus:-moz-placeholder,
.cid-uH7u96jdXx .form-control:hover:-moz-placeholder,
.cid-uH7u96jdXx .field-input:hover:-moz-placeholder,
.cid-uH7u96jdXx textarea:hover:-moz-placeholder,
.cid-uH7u96jdXx .form-control:focus:-moz-placeholder,
.cid-uH7u96jdXx .field-input:focus:-moz-placeholder,
.cid-uH7u96jdXx textarea:focus:-moz-placeholder {
  color: #2a2b36;
}
.cid-uH7u96jdXx .jq-number__spin:hover,
.cid-uH7u96jdXx .jq-number__spin:focus {
  background-color: #fafafa;
  border-color: #fafafa;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uH7u96jdXx .jq-number__spin {
  background-color: #2a2b36;
  border-color: #fafafa;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uH7u96jdXx .jq-selectbox li,
.cid-uH7u96jdXx .jq-selectbox li {
  background-color: #2a2b36;
  color: #ffffff;
}
.cid-uH7u96jdXx .jq-selectbox li:hover,
.cid-uH7u96jdXx .jq-selectbox li.selected {
  background-color: #fafafa;
  color: #000000;
}
.cid-uH7u96jdXx .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uH7u96jdXx .jq-number__spin.minus:hover:after,
.cid-uH7u96jdXx .jq-number__spin.plus:hover:after {
  border-top-color: #2a2b36;
  border-bottom-color: #2a2b36;
}
.cid-uH7u96jdXx .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uH7u96jdXx .jq-number__spin.minus:after,
.cid-uH7u96jdXx .jq-number__spin.plus:after {
  border-top-color: #fafafa;
  border-bottom-color: #fafafa;
}
.cid-uH7u96jdXx input::-webkit-clear-button {
  display: none;
}
.cid-uH7u96jdXx input::-webkit-inner-spin-button {
  display: none;
}
.cid-uH7u96jdXx input::-webkit-outer-spin-button {
  display: none;
}
.cid-uH7u96jdXx input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uH7u96jdXx .container {
  background-color: #2a2b36;
  padding: 8rem 2.75rem;
  position: relative;
}
@media (max-width: 991px) {
  .cid-uH7u96jdXx .container {
    padding: 3.5rem 2.75rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uH7u96jdXx .container {
    padding: 3.5rem .75rem 4rem;
  }
}
.cid-uH7u96jdXx .btn-lg {
  border-radius: 0 !important;
  padding: 1.1875rem 3.25rem !important;
  margin-top: 40px;
  font-weight: 600;
  width: 100%;
}
.cid-uH7u96jdXx .mbr-section-title {
  margin-bottom: 18px;
  color: #ffffff;
}
.cid-uH7u96jdXx .form_title {
  margin: 25px 0;
  text-align: center;
}
.cid-uH7u96jdXx .mbr-text {
  margin-bottom: 37px;
}
.cid-uH7u96jdXx .shape {
  width: 190px;
  height: auto;
  position: absolute;
  right: -40px;
  top: 40px;
}
.cid-uH7u96jdXx .shape img {
  width: 100%;
  object-fit: contain;
  height: auto;
}
@media (max-width: 991px) {
  .cid-uH7u96jdXx .shape {
    top: 0;
    right: 0;
  }
}
.cid-uH7u96jdXx .dragArea {
  justify-content: center;
}
.cid-uH7u96jdXx .form-group textarea {
  height: 165px;
  margin-bottom: 0;
  border: none;
}
.cid-uH7u96jdXx .form-group {
  margin-bottom: 0;
}
.cid-uH7u96jdXx .textGDPR.display-7 {
  font-size: 16px;
}
.cid-uH7u96jdXx .gdpr-block label span.textGDPR input[name="gdpr"] {
  top: 0;
}
.cid-uH7u96jdXx .form-control,
.cid-uH7u96jdXx .field-input,
.cid-uH7u96jdXx textarea {
  padding: 9px 10px;
  line-height: 25px;
  height: 48px;
  transition: 0.4s;
  outline: none;
  margin-bottom: 40px;
  border-radius: 0 !important;
}
.cid-uH7u96jdXx .form-check {
  padding-left: 2.5em !important;
}
.cid-uH7u96jdXx .form-check .display-7 {
  font-size: 16px !important;
}
.cid-uF2qzX7Ut1 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #1c1c20;
}
.cid-uF2qzX7Ut1 .mbr-section-title {
  margin-bottom: 1rem;
  color: #ea873f;
}
.cid-uF2qzX7Ut1 .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uF2qzX7Ut1 .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uF2qzX7Ut1 .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uF2qzX7Ut1 .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-uF2qzX7Ut1 .social_icons {
  text-align: center;
}
.cid-uF2qzX7Ut1 .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uF2qzX7Ut1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uF2qzX7Ut1 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uF2qzX7Ut1 .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uF2qzX7Ut1 .footer_timework {
    margin-top: 50px;
  }
  .cid-uF2qzX7Ut1 .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uF2qzX7Ut1 .mbr-text,
.cid-uF2qzX7Ut1 .footer_logo,
.cid-uF2qzX7Ut1 .social_icons {
  color: #ea873f;
}
.cid-uF2qIaztmo {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #1c1c20;
}
.cid-uF2qIaztmo .mbr-text {
  color: #fafafa;
  margin: 10px 0;
  width: 100%;
  text-align: center;
}
.cid-uJLFDX8Bh3 {
  z-index: 1000;
  width: 100%;
}
.cid-uJLFDX8Bh3 .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-uJLFDX8Bh3 .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ea873f;
  z-index: -1;
}
.cid-uJLFDX8Bh3 nav.navbar {
  position: fixed;
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-item {
    border: 0;
  }
}
.cid-uJLFDX8Bh3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-uJLFDX8Bh3 .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-uJLFDX8Bh3 .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-uJLFDX8Bh3 .title-wrap:hover span {
  color: white;
}
.cid-uJLFDX8Bh3 .title-wrap:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ea873f;
}
.cid-uJLFDX8Bh3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJLFDX8Bh3 .nav-link {
  position: relative;
}
.cid-uJLFDX8Bh3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .container {
    flex-wrap: nowrap;
  }
}
.cid-uJLFDX8Bh3 .dropdown-menu,
.cid-uJLFDX8Bh3 .navbar.opened {
  background: #2a2b36 !important;
}
.cid-uJLFDX8Bh3 .nav-item:focus,
.cid-uJLFDX8Bh3 .nav-link:focus {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(42, 43, 54, 0.6);
}
.cid-uJLFDX8Bh3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJLFDX8Bh3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uJLFDX8Bh3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJLFDX8Bh3 .navbar.collapsed {
  justify-content: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJLFDX8Bh3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJLFDX8Bh3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJLFDX8Bh3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJLFDX8Bh3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uJLFDX8Bh3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJLFDX8Bh3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown-item.active,
.cid-uJLFDX8Bh3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uJLFDX8Bh3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a2b36;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJLFDX8Bh3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJLFDX8Bh3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJLFDX8Bh3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJLFDX8Bh3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ea873f;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJLFDX8Bh3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJLFDX8Bh3 .navbar {
    height: 70px;
  }
  .cid-uJLFDX8Bh3 .navbar.opened {
    height: auto;
  }
  .cid-uJLFDX8Bh3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap,
.cid-uJLFDX8Bh3 .title-wrap {
  color: #272727;
}
.cid-uF2EG2ubxA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  background-color: #1c1c20;
}
.cid-uF2EG2ubxA .main_header {
  margin-top: -195px;
  width: 100%;
  background-color: #2a2b36;
  padding: 107px 8%;
  position: relative;
  z-index: 5;
}
@media (max-width: 991px) {
  .cid-uF2EG2ubxA .main_header {
    padding-top: 66px;
  }
  .cid-uF2EG2ubxA .main_header > .row {
    flex-direction: column;
  }
  .cid-uF2EG2ubxA .main_header .mbr-section-title {
    margin-left: 0;
    margin-right: 0;
  }
}
.cid-uF2EG2ubxA .mbr-section-title {
  color: #ea873f;
  margin: 25px 2rem 25px;
}
@media (max-width: 767px) {
  .cid-uF2EG2ubxA .mbr-section-title {
    text-align: center;
  }
}
.cid-uF2EG2ubxA .mbr-text {
  margin: 25px 0;
}
.cid-uF2EG2ubxA .bgImage {
  position: relative;
  width: 100%;
  height: 550px;
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-uF2EG2ubxA .bgImage {
    height: 65vh;
  }
}
.cid-uF2EG2ubxA img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uF2EG2ubxA .linkBtn a {
  position: relative;
  display: inline-block;
  padding: 1px 7px;
  vertical-align: middle;
  overflow: hidden;
  line-height: 2em;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .2em;
}
.cid-uF2EG2ubxA .linkBtn a:after,
.cid-uF2EG2ubxA .linkBtn a:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.4s cubic-bezier(0.31, 0.29, 0.05, 0.96);
}
.cid-uF2EG2ubxA .linkBtn a:before {
  left: 0;
}
.cid-uF2EG2ubxA .linkBtn a:after {
  left: -100%;
  transition-delay: .3s;
}
.cid-uF2EG2ubxA .linkBtn a:hover:before,
.cid-uF2EG2ubxA .linkBtn a:hover:after {
  transform: translateX(100%);
}
.cid-uF2EG2ubxA .mbr-text,
.cid-uF2EG2ubxA .linkBtn {
  color: #ffffff;
}
.cid-uF2EN6ay0F {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #1c1c20;
}
.cid-uF2EN6ay0F .mbr-section-title {
  color: #ebb46e;
  text-align: left;
}
.cid-uF2EN6ay0F .mbr-text {
  margin: 25px 0;
  color: #ffffff;
  line-height: 1.2727em;
  position: relative;
  z-index: 2;
  text-align: left;
}
.cid-uF2EN6ay0F .content_box {
  position: relative;
}
.cid-uF2EN6ay0F .shape {
  position: absolute;
  z-index: 1;
  bottom: -50%;
  left: 50%;
  width: auto;
  transform: translateX(-50%);
  opacity: 0.5;
}
.cid-uF2EN6ay0F .shape img {
  width: 100%;
  height: 100%;
  max-height: 160px;
  object-fit: contain;
}
.cid-uF2Fa3WwmC {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #1c1c20;
}
.cid-uF2Fa3WwmC .mbr-section-title {
  color: #ebb46e;
  text-align: left;
}
.cid-uF2Fa3WwmC .mbr-text {
  margin: 25px 0;
  color: #ffffff;
  line-height: 1.2727em;
  position: relative;
  z-index: 2;
  text-align: left;
}
.cid-uF2Fa3WwmC .content_box {
  position: relative;
}
.cid-uF2Fa3WwmC .shape {
  position: absolute;
  z-index: 1;
  bottom: -50%;
  left: 50%;
  width: auto;
  transform: translateX(-50%);
  opacity: 0.5;
}
.cid-uF2Fa3WwmC .shape img {
  width: 100%;
  height: 100%;
  max-height: 160px;
  object-fit: contain;
}
.cid-uI3QOHIT9m {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #1c1c20;
}
.cid-uI3QOHIT9m .mbr-section-title {
  color: #ebb46e;
  text-align: left;
}
.cid-uI3QOHIT9m .mbr-text {
  margin: 25px 0;
  color: #ffffff;
  line-height: 1.2727em;
  position: relative;
  z-index: 2;
  text-align: left;
}
.cid-uI3QOHIT9m .content_box {
  position: relative;
}
.cid-uI3QOHIT9m .shape {
  position: absolute;
  z-index: 1;
  bottom: -50%;
  left: 50%;
  width: auto;
  transform: translateX(-50%);
  opacity: 0.5;
}
.cid-uI3QOHIT9m .shape img {
  width: 100%;
  height: 100%;
  max-height: 160px;
  object-fit: contain;
}
.cid-uF2O8RTkbL {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #1c1c20;
}
.cid-uF2O8RTkbL .mbr-section-title {
  color: #ebb46e;
  text-align: left;
}
.cid-uF2O8RTkbL .mbr-text {
  margin: 25px 0;
  color: #ffffff;
  line-height: 1.2727em;
  position: relative;
  z-index: 2;
  text-align: left;
}
.cid-uF2O8RTkbL .content_box {
  position: relative;
}
.cid-uF2O8RTkbL .shape {
  position: absolute;
  z-index: 1;
  bottom: -50%;
  left: 50%;
  width: auto;
  transform: translateX(-50%);
  opacity: 0.5;
}
.cid-uF2O8RTkbL .shape img {
  width: 100%;
  height: 100%;
  max-height: 160px;
  object-fit: contain;
}
.cid-uJLFvI3Vks {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/soff-igorevich-58942-real-hawaii-beyond-the-guidebooks-21876d7b-0a14-440d-8098-bceaf0b8c017.png-1344x896.png");
}
.cid-uJLFvI3Vks .mbr-overlay {
  background-color: #ffffff;
  opacity: 0;
}
.cid-uJLFvI3Vks .form-group textarea {
  border: 1px solid #fafafa !important;
}
.cid-uJLFvI3Vks .form-control,
.cid-uJLFvI3Vks .field-input,
.cid-uJLFvI3Vks textarea {
  background-color: #2a2b36;
  border-color: #fafafa;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  border-radius: 0 !important;
  outline: none;
  border: none !important;
  border-bottom: 1px solid #fafafa !important;
  margin-bottom: 40px;
}
.cid-uJLFvI3Vks .form-control::-webkit-input-placeholder,
.cid-uJLFvI3Vks .field-input::-webkit-input-placeholder,
.cid-uJLFvI3Vks textarea::-webkit-input-placeholder,
.cid-uJLFvI3Vks .form-control::-webkit-input-placeholder,
.cid-uJLFvI3Vks .field-input::-webkit-input-placeholder,
.cid-uJLFvI3Vks textarea::-webkit-input-placeholder {
  color: #fafafa;
}
.cid-uJLFvI3Vks .form-control:-moz-placeholder,
.cid-uJLFvI3Vks .field-input:-moz-placeholder,
.cid-uJLFvI3Vks textarea:-moz-placeholder,
.cid-uJLFvI3Vks .form-control:-moz-placeholder,
.cid-uJLFvI3Vks .field-input:-moz-placeholder,
.cid-uJLFvI3Vks textarea:-moz-placeholder {
  color: #fafafa;
}
.cid-uJLFvI3Vks .form-control:hover,
.cid-uJLFvI3Vks .field-input:hover,
.cid-uJLFvI3Vks textarea:hover,
.cid-uJLFvI3Vks .form-control:focus,
.cid-uJLFvI3Vks .field-input:focus,
.cid-uJLFvI3Vks textarea:focus {
  background-color: #fafafa;
  border-color: #fafafa;
  color: #fafafa;
  box-shadow: none;
  outline: none;
}
.cid-uJLFvI3Vks .form-control:hover::-webkit-input-placeholder,
.cid-uJLFvI3Vks .field-input:hover::-webkit-input-placeholder,
.cid-uJLFvI3Vks textarea:hover::-webkit-input-placeholder,
.cid-uJLFvI3Vks .form-control:focus::-webkit-input-placeholder,
.cid-uJLFvI3Vks .field-input:focus::-webkit-input-placeholder,
.cid-uJLFvI3Vks textarea:focus::-webkit-input-placeholder,
.cid-uJLFvI3Vks .form-control:hover::-webkit-input-placeholder,
.cid-uJLFvI3Vks .field-input:hover::-webkit-input-placeholder,
.cid-uJLFvI3Vks textarea:hover::-webkit-input-placeholder,
.cid-uJLFvI3Vks .form-control:focus::-webkit-input-placeholder,
.cid-uJLFvI3Vks .field-input:focus::-webkit-input-placeholder,
.cid-uJLFvI3Vks textarea:focus::-webkit-input-placeholder {
  color: #2a2b36;
}
.cid-uJLFvI3Vks .form-control:hover:-moz-placeholder,
.cid-uJLFvI3Vks .field-input:hover:-moz-placeholder,
.cid-uJLFvI3Vks textarea:hover:-moz-placeholder,
.cid-uJLFvI3Vks .form-control:focus:-moz-placeholder,
.cid-uJLFvI3Vks .field-input:focus:-moz-placeholder,
.cid-uJLFvI3Vks textarea:focus:-moz-placeholder,
.cid-uJLFvI3Vks .form-control:hover:-moz-placeholder,
.cid-uJLFvI3Vks .field-input:hover:-moz-placeholder,
.cid-uJLFvI3Vks textarea:hover:-moz-placeholder,
.cid-uJLFvI3Vks .form-control:focus:-moz-placeholder,
.cid-uJLFvI3Vks .field-input:focus:-moz-placeholder,
.cid-uJLFvI3Vks textarea:focus:-moz-placeholder {
  color: #2a2b36;
}
.cid-uJLFvI3Vks .jq-number__spin:hover,
.cid-uJLFvI3Vks .jq-number__spin:focus {
  background-color: #fafafa;
  border-color: #fafafa;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uJLFvI3Vks .jq-number__spin {
  background-color: #2a2b36;
  border-color: #fafafa;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uJLFvI3Vks .jq-selectbox li,
.cid-uJLFvI3Vks .jq-selectbox li {
  background-color: #2a2b36;
  color: #ffffff;
}
.cid-uJLFvI3Vks .jq-selectbox li:hover,
.cid-uJLFvI3Vks .jq-selectbox li.selected {
  background-color: #fafafa;
  color: #000000;
}
.cid-uJLFvI3Vks .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uJLFvI3Vks .jq-number__spin.minus:hover:after,
.cid-uJLFvI3Vks .jq-number__spin.plus:hover:after {
  border-top-color: #2a2b36;
  border-bottom-color: #2a2b36;
}
.cid-uJLFvI3Vks .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uJLFvI3Vks .jq-number__spin.minus:after,
.cid-uJLFvI3Vks .jq-number__spin.plus:after {
  border-top-color: #fafafa;
  border-bottom-color: #fafafa;
}
.cid-uJLFvI3Vks input::-webkit-clear-button {
  display: none;
}
.cid-uJLFvI3Vks input::-webkit-inner-spin-button {
  display: none;
}
.cid-uJLFvI3Vks input::-webkit-outer-spin-button {
  display: none;
}
.cid-uJLFvI3Vks input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uJLFvI3Vks .container {
  background-color: #2a2b36;
  padding: 8rem 2.75rem;
  position: relative;
}
@media (max-width: 991px) {
  .cid-uJLFvI3Vks .container {
    padding: 3.5rem 2.75rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uJLFvI3Vks .container {
    padding: 3.5rem .75rem 4rem;
  }
}
.cid-uJLFvI3Vks .btn-lg {
  border-radius: 0 !important;
  padding: 1.1875rem 3.25rem !important;
  margin-top: 40px;
  font-weight: 600;
  width: 100%;
}
.cid-uJLFvI3Vks .mbr-section-title {
  margin-bottom: 18px;
  color: #ffffff;
}
.cid-uJLFvI3Vks .form_title {
  margin: 25px 0;
  text-align: center;
}
.cid-uJLFvI3Vks .mbr-text {
  margin-bottom: 37px;
}
.cid-uJLFvI3Vks .shape {
  width: 190px;
  height: auto;
  position: absolute;
  right: -40px;
  top: 40px;
}
.cid-uJLFvI3Vks .shape img {
  width: 100%;
  object-fit: contain;
  height: auto;
}
@media (max-width: 991px) {
  .cid-uJLFvI3Vks .shape {
    top: 0;
    right: 0;
  }
}
.cid-uJLFvI3Vks .dragArea {
  justify-content: center;
}
.cid-uJLFvI3Vks .form-group textarea {
  height: 165px;
  margin-bottom: 0;
  border: none;
}
.cid-uJLFvI3Vks .form-group {
  margin-bottom: 0;
}
.cid-uJLFvI3Vks .textGDPR.display-7 {
  font-size: 16px;
}
.cid-uJLFvI3Vks .gdpr-block label span.textGDPR input[name="gdpr"] {
  top: 0;
}
.cid-uJLFvI3Vks .form-control,
.cid-uJLFvI3Vks .field-input,
.cid-uJLFvI3Vks textarea {
  padding: 9px 10px;
  line-height: 25px;
  height: 48px;
  transition: 0.4s;
  outline: none;
  margin-bottom: 40px;
  border-radius: 0 !important;
}
.cid-uJLFvI3Vks .form-check {
  padding-left: 2.5em !important;
}
.cid-uJLFvI3Vks .form-check .display-7 {
  font-size: 16px !important;
}
.cid-uF2DXEp5fK {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #1c1c20;
}
.cid-uF2DXEp5fK .mbr-section-title {
  margin-bottom: 1rem;
  color: #ea873f;
}
.cid-uF2DXEp5fK .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uF2DXEp5fK .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uF2DXEp5fK .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uF2DXEp5fK .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-uF2DXEp5fK .social_icons {
  text-align: center;
}
.cid-uF2DXEp5fK .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uF2DXEp5fK .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uF2DXEp5fK .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uF2DXEp5fK .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uF2DXEp5fK .footer_timework {
    margin-top: 50px;
  }
  .cid-uF2DXEp5fK .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uF2DXEp5fK .mbr-text,
.cid-uF2DXEp5fK .footer_logo,
.cid-uF2DXEp5fK .social_icons {
  color: #ea873f;
}
.cid-uF2DXEJEWz {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #1c1c20;
}
.cid-uF2DXEJEWz .mbr-text {
  color: #fafafa;
  margin: 10px 0;
  width: 100%;
  text-align: center;
}
.cid-uJLFDX8Bh3 {
  z-index: 1000;
  width: 100%;
}
.cid-uJLFDX8Bh3 .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-uJLFDX8Bh3 .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ea873f;
  z-index: -1;
}
.cid-uJLFDX8Bh3 nav.navbar {
  position: fixed;
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-item {
    border: 0;
  }
}
.cid-uJLFDX8Bh3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-uJLFDX8Bh3 .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-uJLFDX8Bh3 .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-uJLFDX8Bh3 .title-wrap:hover span {
  color: white;
}
.cid-uJLFDX8Bh3 .title-wrap:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ea873f;
}
.cid-uJLFDX8Bh3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJLFDX8Bh3 .nav-link {
  position: relative;
}
.cid-uJLFDX8Bh3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .container {
    flex-wrap: nowrap;
  }
}
.cid-uJLFDX8Bh3 .dropdown-menu,
.cid-uJLFDX8Bh3 .navbar.opened {
  background: #2a2b36 !important;
}
.cid-uJLFDX8Bh3 .nav-item:focus,
.cid-uJLFDX8Bh3 .nav-link:focus {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(42, 43, 54, 0.6);
}
.cid-uJLFDX8Bh3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJLFDX8Bh3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uJLFDX8Bh3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJLFDX8Bh3 .navbar.collapsed {
  justify-content: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJLFDX8Bh3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJLFDX8Bh3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJLFDX8Bh3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJLFDX8Bh3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uJLFDX8Bh3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJLFDX8Bh3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown-item.active,
.cid-uJLFDX8Bh3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uJLFDX8Bh3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a2b36;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJLFDX8Bh3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJLFDX8Bh3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJLFDX8Bh3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJLFDX8Bh3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ea873f;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJLFDX8Bh3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJLFDX8Bh3 .navbar {
    height: 70px;
  }
  .cid-uJLFDX8Bh3 .navbar.opened {
    height: auto;
  }
  .cid-uJLFDX8Bh3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap,
.cid-uJLFDX8Bh3 .title-wrap {
  color: #272727;
}
.cid-uI3RQapWN9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  background-color: #1c1c20;
}
.cid-uI3RQapWN9 .main_header {
  margin-top: -195px;
  width: 100%;
  background-color: #2a2b36;
  padding: 107px 8%;
  position: relative;
  z-index: 5;
}
@media (max-width: 991px) {
  .cid-uI3RQapWN9 .main_header {
    padding-top: 66px;
  }
  .cid-uI3RQapWN9 .main_header > .row {
    flex-direction: column;
  }
  .cid-uI3RQapWN9 .main_header .mbr-section-title {
    margin-left: 0;
    margin-right: 0;
  }
}
.cid-uI3RQapWN9 .mbr-section-title {
  color: #ea873f;
  margin: 25px 2rem 25px;
}
@media (max-width: 767px) {
  .cid-uI3RQapWN9 .mbr-section-title {
    text-align: center;
  }
}
.cid-uI3RQapWN9 .mbr-text {
  margin: 25px 0;
}
.cid-uI3RQapWN9 .bgImage {
  position: relative;
  width: 100%;
  height: 550px;
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-uI3RQapWN9 .bgImage {
    height: 65vh;
  }
}
.cid-uI3RQapWN9 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uI3RQapWN9 .linkBtn a {
  position: relative;
  display: inline-block;
  padding: 1px 7px;
  vertical-align: middle;
  overflow: hidden;
  line-height: 2em;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .2em;
}
.cid-uI3RQapWN9 .linkBtn a:after,
.cid-uI3RQapWN9 .linkBtn a:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.4s cubic-bezier(0.31, 0.29, 0.05, 0.96);
}
.cid-uI3RQapWN9 .linkBtn a:before {
  left: 0;
}
.cid-uI3RQapWN9 .linkBtn a:after {
  left: -100%;
  transition-delay: .3s;
}
.cid-uI3RQapWN9 .linkBtn a:hover:before,
.cid-uI3RQapWN9 .linkBtn a:hover:after {
  transform: translateX(100%);
}
.cid-uI3RQapWN9 .mbr-text,
.cid-uI3RQapWN9 .linkBtn {
  color: #ffffff;
}
.cid-uF2OJG175u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1c1c20;
}
.cid-uF2OJG175u .card-title {
  margin-bottom: 20px;
  color: #1d4b67;
}
.cid-uF2OJG175u .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #ebb46e;
}
@media (min-width: 992px) {
  .cid-uF2OJG175u .google-map {
    margin-right: 17%;
  }
}
.cid-uF2OJG175u .google-map {
  height: 540px;
  position: relative;
}
@media (max-width: 991px) {
  .cid-uF2OJG175u .google-map {
    margin-bottom: 70px;
  }
}
.cid-uF2OJG175u .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uF2OJG175u .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uF2OJG175u .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uF2OJG175u .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uF2OJG175u .header_box {
  margin-bottom: 40px;
}
.cid-uF2OJG175u .contact_content {
  display: inline-block;
  width: 100%;
  margin-bottom: 8px;
}
.cid-uF2OJG175u .card_text {
  display: inline-block;
}
.cid-uF2OJG175u .iconfont-wrapper {
  margin-right: 15px;
  display: inline-block;
  width: 19px;
  height: 19px;
  font-size: 19px;
  color: #ea873f;
}
@media (max-width: 767px) {
  .cid-uF2OJG175u .column_wrap {
    margin-bottom: 29px;
  }
}
.cid-uF2OJG175u .card_text,
.cid-uF2OJG175u .contact_content {
  color: #ffffff;
}
.cid-uF2OpOuTyR {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #1c1c20;
}
.cid-uF2OpOuTyR .mbr-section-title {
  margin-bottom: 1rem;
  color: #ea873f;
}
.cid-uF2OpOuTyR .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uF2OpOuTyR .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uF2OpOuTyR .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uF2OpOuTyR .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-uF2OpOuTyR .social_icons {
  text-align: center;
}
.cid-uF2OpOuTyR .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uF2OpOuTyR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uF2OpOuTyR .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uF2OpOuTyR .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uF2OpOuTyR .footer_timework {
    margin-top: 50px;
  }
  .cid-uF2OpOuTyR .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uF2OpOuTyR .mbr-text,
.cid-uF2OpOuTyR .footer_logo,
.cid-uF2OpOuTyR .social_icons {
  color: #ea873f;
}
.cid-uF2OpPJED6 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #1c1c20;
}
.cid-uF2OpPJED6 .mbr-text {
  color: #fafafa;
  margin: 10px 0;
  width: 100%;
  text-align: center;
}
.cid-uJLFDX8Bh3 {
  z-index: 1000;
  width: 100%;
}
.cid-uJLFDX8Bh3 .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-uJLFDX8Bh3 .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ea873f;
  z-index: -1;
}
.cid-uJLFDX8Bh3 nav.navbar {
  position: fixed;
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-item {
    border: 0;
  }
}
.cid-uJLFDX8Bh3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-uJLFDX8Bh3 .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-uJLFDX8Bh3 .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-uJLFDX8Bh3 .title-wrap:hover span {
  color: white;
}
.cid-uJLFDX8Bh3 .title-wrap:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ea873f;
}
.cid-uJLFDX8Bh3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJLFDX8Bh3 .nav-link {
  position: relative;
}
.cid-uJLFDX8Bh3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .container {
    flex-wrap: nowrap;
  }
}
.cid-uJLFDX8Bh3 .dropdown-menu,
.cid-uJLFDX8Bh3 .navbar.opened {
  background: #2a2b36 !important;
}
.cid-uJLFDX8Bh3 .nav-item:focus,
.cid-uJLFDX8Bh3 .nav-link:focus {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(42, 43, 54, 0.6);
}
.cid-uJLFDX8Bh3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJLFDX8Bh3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uJLFDX8Bh3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJLFDX8Bh3 .navbar.collapsed {
  justify-content: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJLFDX8Bh3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJLFDX8Bh3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJLFDX8Bh3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJLFDX8Bh3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uJLFDX8Bh3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJLFDX8Bh3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown-item.active,
.cid-uJLFDX8Bh3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uJLFDX8Bh3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a2b36;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJLFDX8Bh3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJLFDX8Bh3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJLFDX8Bh3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJLFDX8Bh3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ea873f;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJLFDX8Bh3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJLFDX8Bh3 .navbar {
    height: 70px;
  }
  .cid-uJLFDX8Bh3 .navbar.opened {
    height: auto;
  }
  .cid-uJLFDX8Bh3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap,
.cid-uJLFDX8Bh3 .title-wrap {
  color: #272727;
}
.cid-uF2UZwwgzk {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-color: #2a2b36;
}
.cid-uF2UZwwgzk .mbr-section-title {
  color: #ea873f;
}
.cid-uF2UZwwgzk .mbr-text {
  margin: 25px 0;
  color: #ffffff;
  line-height: 1.2727em;
  position: relative;
  z-index: 2;
  text-align: left;
}
.cid-uF2UZwwgzk .content_box {
  position: relative;
}
.cid-uF2UZwwgzk .shape {
  position: absolute;
  z-index: 1;
  bottom: -50%;
  left: 50%;
  width: auto;
  transform: translateX(-50%);
  opacity: 0.5;
}
.cid-uF2UZwwgzk .shape img {
  width: 100%;
  height: 100%;
  max-height: 160px;
  object-fit: contain;
}
.cid-uF2UL4pm63 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #1c1c20;
}
.cid-uF2UL4pm63 .mbr-section-title {
  margin-bottom: 1rem;
  color: #ea873f;
}
.cid-uF2UL4pm63 .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uF2UL4pm63 .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uF2UL4pm63 .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uF2UL4pm63 .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-uF2UL4pm63 .social_icons {
  text-align: center;
}
.cid-uF2UL4pm63 .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uF2UL4pm63 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uF2UL4pm63 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uF2UL4pm63 .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uF2UL4pm63 .footer_timework {
    margin-top: 50px;
  }
  .cid-uF2UL4pm63 .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uF2UL4pm63 .mbr-text,
.cid-uF2UL4pm63 .footer_logo,
.cid-uF2UL4pm63 .social_icons {
  color: #ea873f;
}
.cid-uF2UL4G4GB {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #1c1c20;
}
.cid-uF2UL4G4GB .mbr-text {
  color: #fafafa;
  margin: 10px 0;
  width: 100%;
  text-align: center;
}
.cid-uJLFDX8Bh3 {
  z-index: 1000;
  width: 100%;
}
.cid-uJLFDX8Bh3 .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-uJLFDX8Bh3 .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ea873f;
  z-index: -1;
}
.cid-uJLFDX8Bh3 nav.navbar {
  position: fixed;
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-item {
    border: 0;
  }
}
.cid-uJLFDX8Bh3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-uJLFDX8Bh3 .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-uJLFDX8Bh3 .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-uJLFDX8Bh3 .title-wrap:hover span {
  color: white;
}
.cid-uJLFDX8Bh3 .title-wrap:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ea873f;
}
.cid-uJLFDX8Bh3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJLFDX8Bh3 .nav-link {
  position: relative;
}
.cid-uJLFDX8Bh3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .container {
    flex-wrap: nowrap;
  }
}
.cid-uJLFDX8Bh3 .dropdown-menu,
.cid-uJLFDX8Bh3 .navbar.opened {
  background: #2a2b36 !important;
}
.cid-uJLFDX8Bh3 .nav-item:focus,
.cid-uJLFDX8Bh3 .nav-link:focus {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(42, 43, 54, 0.6);
}
.cid-uJLFDX8Bh3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJLFDX8Bh3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uJLFDX8Bh3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJLFDX8Bh3 .navbar.collapsed {
  justify-content: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJLFDX8Bh3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJLFDX8Bh3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJLFDX8Bh3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJLFDX8Bh3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uJLFDX8Bh3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJLFDX8Bh3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown-item.active,
.cid-uJLFDX8Bh3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uJLFDX8Bh3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a2b36;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJLFDX8Bh3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJLFDX8Bh3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJLFDX8Bh3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJLFDX8Bh3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ea873f;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJLFDX8Bh3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJLFDX8Bh3 .navbar {
    height: 70px;
  }
  .cid-uJLFDX8Bh3 .navbar.opened {
    height: auto;
  }
  .cid-uJLFDX8Bh3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap,
.cid-uJLFDX8Bh3 .title-wrap {
  color: #272727;
}
.cid-uF2VDc7pcl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #2a2b36;
}
.cid-uF2VDc7pcl .mbr-section-title {
  color: #ea873f;
}
.cid-uF2VDc7pcl .mbr-text {
  margin: 25px 0;
  color: #ffffff;
  line-height: 1.2727em;
  position: relative;
  z-index: 2;
  text-align: left;
}
.cid-uF2VDc7pcl .content_box {
  position: relative;
}
.cid-uF2VDc7pcl .shape {
  position: absolute;
  z-index: 1;
  bottom: -50%;
  left: 50%;
  width: auto;
  transform: translateX(-50%);
  opacity: 0.5;
}
.cid-uF2VDc7pcl .shape img {
  width: 100%;
  height: 100%;
  max-height: 160px;
  object-fit: contain;
}
.cid-uF2VDcHO7a {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #1c1c20;
}
.cid-uF2VDcHO7a .mbr-section-title {
  margin-bottom: 1rem;
  color: #ea873f;
}
.cid-uF2VDcHO7a .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uF2VDcHO7a .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uF2VDcHO7a .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uF2VDcHO7a .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-uF2VDcHO7a .social_icons {
  text-align: center;
}
.cid-uF2VDcHO7a .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uF2VDcHO7a .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uF2VDcHO7a .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uF2VDcHO7a .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uF2VDcHO7a .footer_timework {
    margin-top: 50px;
  }
  .cid-uF2VDcHO7a .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uF2VDcHO7a .mbr-text,
.cid-uF2VDcHO7a .footer_logo,
.cid-uF2VDcHO7a .social_icons {
  color: #ea873f;
}
.cid-uF2VDcXyh0 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #1c1c20;
}
.cid-uF2VDcXyh0 .mbr-text {
  color: #fafafa;
  margin: 10px 0;
  width: 100%;
  text-align: center;
}
.cid-uJLFDX8Bh3 {
  z-index: 1000;
  width: 100%;
}
.cid-uJLFDX8Bh3 .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-uJLFDX8Bh3 .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ea873f;
  z-index: -1;
}
.cid-uJLFDX8Bh3 nav.navbar {
  position: fixed;
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-item {
    border: 0;
  }
}
.cid-uJLFDX8Bh3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-uJLFDX8Bh3 .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-uJLFDX8Bh3 .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-uJLFDX8Bh3 .title-wrap:hover span {
  color: white;
}
.cid-uJLFDX8Bh3 .title-wrap:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ea873f;
}
.cid-uJLFDX8Bh3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJLFDX8Bh3 .nav-link {
  position: relative;
}
.cid-uJLFDX8Bh3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .container {
    flex-wrap: nowrap;
  }
}
.cid-uJLFDX8Bh3 .dropdown-menu,
.cid-uJLFDX8Bh3 .navbar.opened {
  background: #2a2b36 !important;
}
.cid-uJLFDX8Bh3 .nav-item:focus,
.cid-uJLFDX8Bh3 .nav-link:focus {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(42, 43, 54, 0.6);
}
.cid-uJLFDX8Bh3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJLFDX8Bh3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uJLFDX8Bh3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJLFDX8Bh3 .navbar.collapsed {
  justify-content: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJLFDX8Bh3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJLFDX8Bh3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJLFDX8Bh3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJLFDX8Bh3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uJLFDX8Bh3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJLFDX8Bh3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown-item.active,
.cid-uJLFDX8Bh3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uJLFDX8Bh3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a2b36;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJLFDX8Bh3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJLFDX8Bh3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJLFDX8Bh3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJLFDX8Bh3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ea873f;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJLFDX8Bh3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJLFDX8Bh3 .navbar {
    height: 70px;
  }
  .cid-uJLFDX8Bh3 .navbar.opened {
    height: auto;
  }
  .cid-uJLFDX8Bh3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap,
.cid-uJLFDX8Bh3 .title-wrap {
  color: #272727;
}
.cid-uF2W50mHFy {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-color: #2a2b36;
}
.cid-uF2W50mHFy .mbr-section-title {
  color: #ea873f;
}
.cid-uF2W50mHFy .mbr-text {
  margin: 25px 0;
  color: #ffffff;
  line-height: 1.2727em;
  position: relative;
  z-index: 2;
  text-align: left;
}
.cid-uF2W50mHFy .content_box {
  position: relative;
}
.cid-uF2W50mHFy .shape {
  position: absolute;
  z-index: 1;
  bottom: -50%;
  left: 50%;
  width: auto;
  transform: translateX(-50%);
  opacity: 0.5;
}
.cid-uF2W50mHFy .shape img {
  width: 100%;
  height: 100%;
  max-height: 160px;
  object-fit: contain;
}
.cid-uF2W50Q3MC {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #1c1c20;
}
.cid-uF2W50Q3MC .mbr-section-title {
  margin-bottom: 1rem;
  color: #ea873f;
}
.cid-uF2W50Q3MC .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uF2W50Q3MC .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uF2W50Q3MC .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uF2W50Q3MC .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-uF2W50Q3MC .social_icons {
  text-align: center;
}
.cid-uF2W50Q3MC .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uF2W50Q3MC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uF2W50Q3MC .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uF2W50Q3MC .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uF2W50Q3MC .footer_timework {
    margin-top: 50px;
  }
  .cid-uF2W50Q3MC .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uF2W50Q3MC .mbr-text,
.cid-uF2W50Q3MC .footer_logo,
.cid-uF2W50Q3MC .social_icons {
  color: #ea873f;
}
.cid-uF2W51b8Bx {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #1c1c20;
}
.cid-uF2W51b8Bx .mbr-text {
  color: #fafafa;
  margin: 10px 0;
  width: 100%;
  text-align: center;
}
.cid-uJLFDX8Bh3 {
  z-index: 1000;
  width: 100%;
}
.cid-uJLFDX8Bh3 .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-uJLFDX8Bh3 .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ea873f;
  z-index: -1;
}
.cid-uJLFDX8Bh3 nav.navbar {
  position: fixed;
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-item {
    border: 0;
  }
}
.cid-uJLFDX8Bh3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-uJLFDX8Bh3 .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-uJLFDX8Bh3 .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-uJLFDX8Bh3 .title-wrap:hover span {
  color: white;
}
.cid-uJLFDX8Bh3 .title-wrap:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ea873f;
}
.cid-uJLFDX8Bh3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJLFDX8Bh3 .nav-link {
  position: relative;
}
.cid-uJLFDX8Bh3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .container {
    flex-wrap: nowrap;
  }
}
.cid-uJLFDX8Bh3 .dropdown-menu,
.cid-uJLFDX8Bh3 .navbar.opened {
  background: #2a2b36 !important;
}
.cid-uJLFDX8Bh3 .nav-item:focus,
.cid-uJLFDX8Bh3 .nav-link:focus {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(42, 43, 54, 0.6);
}
.cid-uJLFDX8Bh3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJLFDX8Bh3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uJLFDX8Bh3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJLFDX8Bh3 .navbar.collapsed {
  justify-content: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJLFDX8Bh3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJLFDX8Bh3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJLFDX8Bh3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJLFDX8Bh3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uJLFDX8Bh3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJLFDX8Bh3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown-item.active,
.cid-uJLFDX8Bh3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uJLFDX8Bh3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a2b36;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJLFDX8Bh3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJLFDX8Bh3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJLFDX8Bh3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJLFDX8Bh3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ea873f;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJLFDX8Bh3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJLFDX8Bh3 .navbar {
    height: 70px;
  }
  .cid-uJLFDX8Bh3 .navbar.opened {
    height: auto;
  }
  .cid-uJLFDX8Bh3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap,
.cid-uJLFDX8Bh3 .title-wrap {
  color: #272727;
}
.cid-uJFqVtPWb6 {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-color: #2a2b36;
}
.cid-uJFqVtPWb6 .mbr-section-title {
  color: #ea873f;
}
.cid-uJFqVtPWb6 .mbr-text {
  margin: 25px 0;
  color: #ffffff;
  line-height: 1.2727em;
  position: relative;
  z-index: 2;
  text-align: left;
}
.cid-uJFqVtPWb6 .content_box {
  position: relative;
}
.cid-uJFqVtPWb6 .shape {
  position: absolute;
  z-index: 1;
  bottom: -50%;
  left: 50%;
  width: auto;
  transform: translateX(-50%);
  opacity: 0.5;
}
.cid-uJFqVtPWb6 .shape img {
  width: 100%;
  height: 100%;
  max-height: 160px;
  object-fit: contain;
}
.cid-uJFqVu3GsC {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #1c1c20;
}
.cid-uJFqVu3GsC .mbr-section-title {
  margin-bottom: 1rem;
  color: #ea873f;
}
.cid-uJFqVu3GsC .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uJFqVu3GsC .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uJFqVu3GsC .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uJFqVu3GsC .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-uJFqVu3GsC .social_icons {
  text-align: center;
}
.cid-uJFqVu3GsC .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uJFqVu3GsC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uJFqVu3GsC .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uJFqVu3GsC .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uJFqVu3GsC .footer_timework {
    margin-top: 50px;
  }
  .cid-uJFqVu3GsC .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJFqVu3GsC .mbr-text,
.cid-uJFqVu3GsC .footer_logo,
.cid-uJFqVu3GsC .social_icons {
  color: #ea873f;
}
.cid-uJFqVujsx0 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #1c1c20;
}
.cid-uJFqVujsx0 .mbr-text {
  color: #fafafa;
  margin: 10px 0;
  width: 100%;
  text-align: center;
}
.cid-uJLFDX8Bh3 {
  z-index: 1000;
  width: 100%;
}
.cid-uJLFDX8Bh3 .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-uJLFDX8Bh3 .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ea873f;
  z-index: -1;
}
.cid-uJLFDX8Bh3 nav.navbar {
  position: fixed;
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-item {
    border: 0;
  }
}
.cid-uJLFDX8Bh3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-uJLFDX8Bh3 .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-uJLFDX8Bh3 .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-uJLFDX8Bh3 .title-wrap:hover span {
  color: white;
}
.cid-uJLFDX8Bh3 .title-wrap:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ea873f;
}
.cid-uJLFDX8Bh3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJLFDX8Bh3 .nav-link {
  position: relative;
}
.cid-uJLFDX8Bh3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .container {
    flex-wrap: nowrap;
  }
}
.cid-uJLFDX8Bh3 .dropdown-menu,
.cid-uJLFDX8Bh3 .navbar.opened {
  background: #2a2b36 !important;
}
.cid-uJLFDX8Bh3 .nav-item:focus,
.cid-uJLFDX8Bh3 .nav-link:focus {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(42, 43, 54, 0.6);
}
.cid-uJLFDX8Bh3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJLFDX8Bh3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uJLFDX8Bh3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJLFDX8Bh3 .navbar.collapsed {
  justify-content: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJLFDX8Bh3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJLFDX8Bh3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJLFDX8Bh3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJLFDX8Bh3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uJLFDX8Bh3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJLFDX8Bh3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown-item.active,
.cid-uJLFDX8Bh3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uJLFDX8Bh3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a2b36;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJLFDX8Bh3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJLFDX8Bh3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJLFDX8Bh3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJLFDX8Bh3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ea873f;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJLFDX8Bh3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJLFDX8Bh3 .navbar {
    height: 70px;
  }
  .cid-uJLFDX8Bh3 .navbar.opened {
    height: auto;
  }
  .cid-uJLFDX8Bh3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap,
.cid-uJLFDX8Bh3 .title-wrap {
  color: #272727;
}
.cid-uI42HdUFp2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  background-color: #1c1c20;
}
.cid-uI42HdUFp2 .main_header {
  margin-top: -195px;
  width: 100%;
  background-color: #2a2b36;
  padding: 107px 8%;
  position: relative;
  z-index: 5;
}
@media (max-width: 991px) {
  .cid-uI42HdUFp2 .main_header {
    padding-top: 66px;
  }
  .cid-uI42HdUFp2 .main_header > .row {
    flex-direction: column;
  }
  .cid-uI42HdUFp2 .main_header .mbr-section-title {
    margin-left: 0;
    margin-right: 0;
  }
}
.cid-uI42HdUFp2 .mbr-section-title {
  color: #ea873f;
  margin: 25px 2rem 25px;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uI42HdUFp2 .mbr-section-title {
    text-align: center;
  }
}
.cid-uI42HdUFp2 .mbr-text {
  margin: 25px 0;
}
.cid-uI42HdUFp2 .bgImage {
  position: relative;
  width: 100%;
  height: 550px;
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-uI42HdUFp2 .bgImage {
    height: 65vh;
  }
}
.cid-uI42HdUFp2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uI42HdUFp2 .linkBtn a {
  position: relative;
  display: inline-block;
  padding: 1px 7px;
  vertical-align: middle;
  overflow: hidden;
  line-height: 2em;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .2em;
}
.cid-uI42HdUFp2 .linkBtn a:after,
.cid-uI42HdUFp2 .linkBtn a:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.4s cubic-bezier(0.31, 0.29, 0.05, 0.96);
}
.cid-uI42HdUFp2 .linkBtn a:before {
  left: 0;
}
.cid-uI42HdUFp2 .linkBtn a:after {
  left: -100%;
  transition-delay: .3s;
}
.cid-uI42HdUFp2 .linkBtn a:hover:before,
.cid-uI42HdUFp2 .linkBtn a:hover:after {
  transform: translateX(100%);
}
.cid-uI42HdUFp2 .mbr-text,
.cid-uI42HdUFp2 .linkBtn {
  color: #ffffff;
}
.cid-uJFsBPjLjd {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #1c1c20;
}
.cid-uJFsBPjLjd img,
.cid-uJFsBPjLjd .item-img {
  width: 100%;
}
.cid-uJFsBPjLjd .item:focus,
.cid-uJFsBPjLjd span:focus {
  outline: none;
}
.cid-uJFsBPjLjd .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uJFsBPjLjd .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #2a2b36;
  outline: 1px solid #ebb46e;
  outline-style: auto;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uJFsBPjLjd .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uJFsBPjLjd .item-wrapper .item-footer {
    padding: 0 2rem 1.2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJFsBPjLjd .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uJFsBPjLjd .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uJFsBPjLjd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uJFsBPjLjd .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uJFsBPjLjd .mbr-section-subtitle {
  color: #6c7577;
}
.cid-uJFsBPjLjd .mbr-text,
.cid-uJFsBPjLjd .mbr-section-btn {
  text-align: left;
  color: #fafafa;
}
.cid-uJFsBPjLjd .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-uJFsBPjLjd .mbr-text {
  color: #6c7577;
  text-align: left;
}
.cid-uJFsBPjLjd .item-subtitle {
  text-align: center;
}
.cid-uJFsBPjLjd .display-4 {
  font-weight: 500;
}
.cid-uF2WCRFxQQ {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #1c1c20;
}
.cid-uF2WCRFxQQ .mbr-section-title {
  margin-bottom: 1rem;
  color: #ea873f;
}
.cid-uF2WCRFxQQ .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uF2WCRFxQQ .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uF2WCRFxQQ .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uF2WCRFxQQ .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-uF2WCRFxQQ .social_icons {
  text-align: center;
}
.cid-uF2WCRFxQQ .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uF2WCRFxQQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uF2WCRFxQQ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uF2WCRFxQQ .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uF2WCRFxQQ .footer_timework {
    margin-top: 50px;
  }
  .cid-uF2WCRFxQQ .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uF2WCRFxQQ .mbr-text,
.cid-uF2WCRFxQQ .footer_logo,
.cid-uF2WCRFxQQ .social_icons {
  color: #ea873f;
}
.cid-uF2WCRXdZG {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #1c1c20;
}
.cid-uF2WCRXdZG .mbr-text {
  color: #fafafa;
  margin: 10px 0;
  width: 100%;
  text-align: center;
}
.cid-uJLFDX8Bh3 {
  z-index: 1000;
  width: 100%;
}
.cid-uJLFDX8Bh3 .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-uJLFDX8Bh3 .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ea873f;
  z-index: -1;
}
.cid-uJLFDX8Bh3 nav.navbar {
  position: fixed;
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-item {
    border: 0;
  }
}
.cid-uJLFDX8Bh3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-uJLFDX8Bh3 .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-uJLFDX8Bh3 .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-uJLFDX8Bh3 .title-wrap:hover span {
  color: white;
}
.cid-uJLFDX8Bh3 .title-wrap:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ea873f;
}
.cid-uJLFDX8Bh3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJLFDX8Bh3 .nav-link {
  position: relative;
}
.cid-uJLFDX8Bh3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .container {
    flex-wrap: nowrap;
  }
}
.cid-uJLFDX8Bh3 .dropdown-menu,
.cid-uJLFDX8Bh3 .navbar.opened {
  background: #2a2b36 !important;
}
.cid-uJLFDX8Bh3 .nav-item:focus,
.cid-uJLFDX8Bh3 .nav-link:focus {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(42, 43, 54, 0.6);
}
.cid-uJLFDX8Bh3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJLFDX8Bh3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uJLFDX8Bh3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJLFDX8Bh3 .navbar.collapsed {
  justify-content: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJLFDX8Bh3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJLFDX8Bh3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJLFDX8Bh3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJLFDX8Bh3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uJLFDX8Bh3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJLFDX8Bh3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown-item.active,
.cid-uJLFDX8Bh3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uJLFDX8Bh3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a2b36;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJLFDX8Bh3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJLFDX8Bh3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJLFDX8Bh3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJLFDX8Bh3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ea873f;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJLFDX8Bh3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJLFDX8Bh3 .navbar {
    height: 70px;
  }
  .cid-uJLFDX8Bh3 .navbar.opened {
    height: auto;
  }
  .cid-uJLFDX8Bh3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap,
.cid-uJLFDX8Bh3 .title-wrap {
  color: #272727;
}
.cid-uJFB80nGOl {
  padding-top: 0rem;
  padding-bottom: 4rem;
  position: relative;
  background-color: #1c1c20;
}
.cid-uJFB80nGOl .main_header {
  margin-top: -195px;
  width: 100%;
  background-color: #2a2b36;
  padding: 107px 8%;
  position: relative;
  z-index: 5;
}
@media (max-width: 991px) {
  .cid-uJFB80nGOl .main_header {
    padding-top: 66px;
  }
  .cid-uJFB80nGOl .main_header > .row {
    flex-direction: column;
  }
  .cid-uJFB80nGOl .main_header .mbr-section-title {
    margin-left: 0;
    margin-right: 0;
  }
}
.cid-uJFB80nGOl .mbr-section-title {
  color: #ea873f;
  margin: 25px 2rem 25px;
}
@media (max-width: 767px) {
  .cid-uJFB80nGOl .mbr-section-title {
    text-align: center;
  }
}
.cid-uJFB80nGOl .mbr-text {
  margin: 25px 0;
}
.cid-uJFB80nGOl .bgImage {
  position: relative;
  width: 100%;
  height: 550px;
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-uJFB80nGOl .bgImage {
    height: 65vh;
  }
}
.cid-uJFB80nGOl img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uJFB80nGOl .linkBtn a {
  position: relative;
  display: inline-block;
  padding: 1px 7px;
  vertical-align: middle;
  overflow: hidden;
  line-height: 2em;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .2em;
}
.cid-uJFB80nGOl .linkBtn a:after,
.cid-uJFB80nGOl .linkBtn a:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.4s cubic-bezier(0.31, 0.29, 0.05, 0.96);
}
.cid-uJFB80nGOl .linkBtn a:before {
  left: 0;
}
.cid-uJFB80nGOl .linkBtn a:after {
  left: -100%;
  transition-delay: .3s;
}
.cid-uJFB80nGOl .linkBtn a:hover:before,
.cid-uJFB80nGOl .linkBtn a:hover:after {
  transform: translateX(100%);
}
.cid-uJFB80nGOl .mbr-text,
.cid-uJFB80nGOl .linkBtn {
  color: #ffffff;
}
.cid-uJFNCSw0QG {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #1c1c20;
}
.cid-uJFNCSw0QG .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uJFNCSw0QG .form-group {
  margin-bottom: 30px;
}
.cid-uJFNCSw0QG img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uJFNCSw0QG .mbr-form {
  max-width: 990px;
}
.cid-uJFNCSw0QG textarea {
  min-height: 150px;
  resize: none;
}
.cid-uJFNCSw0QG .mbr-form .btn {
  width: auto;
  justify-content: space-between;
}
.cid-uJFNCSw0QG .mbr-form .btn .mbr-iconfont {
  order: 2;
  font-size: 1.5rem;
}
.cid-uJFNCSw0QG .mbr-section-title {
  color: #ea873f;
}
.cid-uJFNCSw0QG .mbr-text {
  color: #fafafa;
}
.cid-uJFB811Q6A {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #1c1c20;
}
.cid-uJFB811Q6A .mbr-section-title {
  margin-bottom: 1rem;
  color: #ea873f;
}
.cid-uJFB811Q6A .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uJFB811Q6A .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uJFB811Q6A .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uJFB811Q6A .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-uJFB811Q6A .social_icons {
  text-align: center;
}
.cid-uJFB811Q6A .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uJFB811Q6A .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uJFB811Q6A .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uJFB811Q6A .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uJFB811Q6A .footer_timework {
    margin-top: 50px;
  }
  .cid-uJFB811Q6A .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJFB811Q6A .mbr-text,
.cid-uJFB811Q6A .footer_logo,
.cid-uJFB811Q6A .social_icons {
  color: #ea873f;
}
.cid-uJFB81kR8T {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #1c1c20;
}
.cid-uJFB81kR8T .mbr-text {
  color: #fafafa;
  margin: 10px 0;
  width: 100%;
  text-align: center;
}
.cid-uJLFDX8Bh3 {
  z-index: 1000;
  width: 100%;
}
.cid-uJLFDX8Bh3 .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-uJLFDX8Bh3 .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ea873f;
  z-index: -1;
}
.cid-uJLFDX8Bh3 nav.navbar {
  position: fixed;
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-item {
    border: 0;
  }
}
.cid-uJLFDX8Bh3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-uJLFDX8Bh3 .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-uJLFDX8Bh3 .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-uJLFDX8Bh3 .title-wrap:hover span {
  color: white;
}
.cid-uJLFDX8Bh3 .title-wrap:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ea873f;
}
.cid-uJLFDX8Bh3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJLFDX8Bh3 .nav-link {
  position: relative;
}
.cid-uJLFDX8Bh3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .container {
    flex-wrap: nowrap;
  }
}
.cid-uJLFDX8Bh3 .dropdown-menu,
.cid-uJLFDX8Bh3 .navbar.opened {
  background: #2a2b36 !important;
}
.cid-uJLFDX8Bh3 .nav-item:focus,
.cid-uJLFDX8Bh3 .nav-link:focus {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(42, 43, 54, 0.6);
}
.cid-uJLFDX8Bh3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJLFDX8Bh3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uJLFDX8Bh3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJLFDX8Bh3 .navbar.collapsed {
  justify-content: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJLFDX8Bh3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJLFDX8Bh3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJLFDX8Bh3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJLFDX8Bh3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uJLFDX8Bh3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJLFDX8Bh3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown-item.active,
.cid-uJLFDX8Bh3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uJLFDX8Bh3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a2b36;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJLFDX8Bh3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJLFDX8Bh3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJLFDX8Bh3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJLFDX8Bh3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ea873f;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJLFDX8Bh3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJLFDX8Bh3 .navbar {
    height: 70px;
  }
  .cid-uJLFDX8Bh3 .navbar.opened {
    height: auto;
  }
  .cid-uJLFDX8Bh3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap,
.cid-uJLFDX8Bh3 .title-wrap {
  color: #272727;
}
.cid-uJFz5BXNec {
  background-image: url("../../../assets/images/soff-igorevich-58942-hit-up-a-quiet-untouched-beach-where-its-j-145d9ee5-b684-4f6a-a5c8-6a3245ad0b01.png-1344x896.png");
}
.cid-uJFz5BXNec h4 {
  margin-bottom: 20px;
  line-height: 1.3;
}
.cid-uJFz5BXNec a {
  text-decoration: none;
  font-weight: 300;
  line-height: 1.72;
}
.cid-uJFz5BXNec .mbr-section-title {
  color: #ea873f;
}
@media (max-width: 1400px) {
  .cid-uJFz5BXNec .mbr-section-title {
    margin-bottom: 120px;
  }
}
.cid-uJFz5BXNec .mbr-section-btn {
  margin-right: 13px;
}
.cid-uJFz5BXNec .btn-white-outline {
  color: white;
}
.cid-uJFz5BXNec .btn-white-outline:hover {
  color: #000 !important;
  background-color: #fff !important;
  transition: .3s;
}
.cid-uJFz5BXNec .info {
  margin-top: 120px;
}
@media (max-width: 1200px) {
  .cid-uJFz5BXNec .info {
    margin-top: 70px;
  }
}
.cid-uJFz5BXNec .mbr-text {
  color: #fff;
}
.cid-uJFz5BXNec .mbr-section-subtitle {
  color: #ea873f;
  text-transform: uppercase;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uJFz5BXNec .mbr-section-subtitle {
    border-bottom: 1px solid #ffffff;
    padding-bottom: 4px;
  }
}
.cid-uJFz5BXNec .mbr-section-subtitle::before {
  position: absolute;
  content: "";
  height: 1px;
  background-color: #ffffff;
  width: 50%;
  top: 35px;
}
@media (max-width: 768px) {
  .cid-uJFz5BXNec .mbr-section-subtitle::before {
    content: none;
  }
}
.cid-uJFz5BXNec .add-info {
  line-height: 1.72;
}
@media (max-width: 768px) {
  .cid-uJFz5BXNec .add-info {
    width: 50%;
  }
}
.cid-uJFz5BXNec .add-info-text {
  line-height: 1.72;
}
.cid-uJFz5BXNec .mobi-mbri-down {
  font-size: 11px;
  margin-left: 10px;
}
.cid-uJFz5BXNec .main-subtitle {
  color: #ffffff;
}
.cid-uH7V7r8V2v {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1c1c20;
}
.cid-uH7V7r8V2v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH7V7r8V2v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH7V7r8V2v .mbr-text {
  color: #000000;
}
.cid-uH7V7r8V2v .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uH7V7r8V2v .item-wrapper {
  background: #2a2b36;
  margin-bottom: 0rem;
  padding: 2.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .cid-uH7V7r8V2v .item-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 0rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uH7V7r8V2v .item-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 0rem;
  }
}
.cid-uH7V7r8V2v .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uH7V7r8V2v .item-mb {
    margin-bottom: 1rem;
  }
}
.cid-uH7V7r8V2v .mbr-number {
  color: #9fe870;
  text-align: left;
}
.cid-uH7V7r8V2v .mbr-section-title {
  color: #000000;
}
.cid-uH7V7r8V2v .card-text,
.cid-uH7V7r8V2v .item .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uH7V7r8V2v .card-title,
.cid-uH7V7r8V2v .iconfont-wrapper {
  text-align: left;
  color: #ebb46e;
}
.cid-uH7V7r8V2v .mbr-section-subtitle,
.cid-uH7V7r8V2v .main-button {
  text-align: left;
  color: #000000;
}
.cid-uH7V7r8V2v .item-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-uH7V7r8V2v .item-content .item-footer {
  margin-top: auto;
}
.cid-uH7V7r8V2v .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uH7V7r8V2v .main-button {
    margin-bottom: 2rem;
  }
}
.cid-uH7V7r8V2v .side-features {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  padding-left: 0px;
  padding-right: 0px;
}
.cid-uH7V7r8V2v .side-features .item {
  padding-left: 16px;
  padding-right: 16px;
}
.cid-uJFDIr1kxE {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #2a2b36;
  position: relative;
  overflow: visible;
  z-index: 1;
}
.cid-uJFDIr1kxE .mbr-section-title {
  margin: 20px 0;
  color: #ebb46e;
}
.cid-uJFDIr1kxE .shape {
  position: absolute;
  z-index: -1;
  bottom: -4.5rem;
  right: 0;
  max-width: 160px;
}
.cid-uJFDIr1kxE .shape img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .cid-uJFDIr1kxE .shape {
    max-width: 80px;
  }
}
.cid-uJFDIr1kxE .mbr-text {
  color: #ffffff;
}
.cid-uH7VRivwM2 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #2a2b36;
  position: relative;
  overflow: visible;
  z-index: 1;
}
.cid-uH7VRivwM2 .mbr-section-title {
  margin: 20px 0;
  color: #ebb46e;
}
.cid-uH7VRivwM2 .shape {
  position: absolute;
  z-index: -1;
  bottom: -4.5rem;
  right: 0;
  max-width: 160px;
}
.cid-uH7VRivwM2 .shape img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .cid-uH7VRivwM2 .shape {
    max-width: 80px;
  }
}
.cid-uH7VRivwM2 .mbr-text {
  color: #ffffff;
}
.cid-uF2ZIokDGY {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #1c1c20;
}
.cid-uF2ZIokDGY .mbr-section-title {
  margin-bottom: 1rem;
  color: #ea873f;
}
.cid-uF2ZIokDGY .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uF2ZIokDGY .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uF2ZIokDGY .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uF2ZIokDGY .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-uF2ZIokDGY .social_icons {
  text-align: center;
}
.cid-uF2ZIokDGY .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uF2ZIokDGY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uF2ZIokDGY .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uF2ZIokDGY .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uF2ZIokDGY .footer_timework {
    margin-top: 50px;
  }
  .cid-uF2ZIokDGY .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uF2ZIokDGY .mbr-text,
.cid-uF2ZIokDGY .footer_logo,
.cid-uF2ZIokDGY .social_icons {
  color: #ea873f;
}
.cid-uF2ZIoBDaO {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #1c1c20;
}
.cid-uF2ZIoBDaO .mbr-text {
  color: #fafafa;
  margin: 10px 0;
  width: 100%;
  text-align: center;
}
.cid-uJLFDX8Bh3 {
  z-index: 1000;
  width: 100%;
}
.cid-uJLFDX8Bh3 .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-uJLFDX8Bh3 .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ea873f;
  z-index: -1;
}
.cid-uJLFDX8Bh3 nav.navbar {
  position: fixed;
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-item {
    border: 0;
  }
}
.cid-uJLFDX8Bh3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-uJLFDX8Bh3 .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-uJLFDX8Bh3 .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-uJLFDX8Bh3 .title-wrap:hover span {
  color: white;
}
.cid-uJLFDX8Bh3 .title-wrap:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ea873f;
}
.cid-uJLFDX8Bh3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJLFDX8Bh3 .nav-link {
  position: relative;
}
.cid-uJLFDX8Bh3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .container {
    flex-wrap: nowrap;
  }
}
.cid-uJLFDX8Bh3 .dropdown-menu,
.cid-uJLFDX8Bh3 .navbar.opened {
  background: #2a2b36 !important;
}
.cid-uJLFDX8Bh3 .nav-item:focus,
.cid-uJLFDX8Bh3 .nav-link:focus {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(42, 43, 54, 0.6);
}
.cid-uJLFDX8Bh3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJLFDX8Bh3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uJLFDX8Bh3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJLFDX8Bh3 .navbar.collapsed {
  justify-content: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJLFDX8Bh3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJLFDX8Bh3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJLFDX8Bh3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJLFDX8Bh3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uJLFDX8Bh3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJLFDX8Bh3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown-item.active,
.cid-uJLFDX8Bh3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uJLFDX8Bh3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a2b36;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJLFDX8Bh3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJLFDX8Bh3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJLFDX8Bh3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJLFDX8Bh3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ea873f;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJLFDX8Bh3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJLFDX8Bh3 .navbar {
    height: 70px;
  }
  .cid-uJLFDX8Bh3 .navbar.opened {
    height: auto;
  }
  .cid-uJLFDX8Bh3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap,
.cid-uJLFDX8Bh3 .title-wrap {
  color: #272727;
}
.cid-uJFDQKH5wv {
  background-image: url("../../../assets/images/soff-igorevich-58942-hike-through-lush-jungle-to-a-waterfall-so-ce11fa1b-d488-4cb9-9013-90dc97d4bbd8.png-1344x896.png");
}
.cid-uJFDQKH5wv h4 {
  margin-bottom: 20px;
  line-height: 1.3;
}
.cid-uJFDQKH5wv a {
  text-decoration: none;
  font-weight: 300;
  line-height: 1.72;
}
.cid-uJFDQKH5wv .mbr-section-title {
  color: #ea873f;
}
@media (max-width: 1400px) {
  .cid-uJFDQKH5wv .mbr-section-title {
    margin-bottom: 120px;
  }
}
.cid-uJFDQKH5wv .mbr-section-btn {
  margin-right: 13px;
}
.cid-uJFDQKH5wv .btn-white-outline {
  color: white;
}
.cid-uJFDQKH5wv .btn-white-outline:hover {
  color: #000 !important;
  background-color: #fff !important;
  transition: .3s;
}
.cid-uJFDQKH5wv .info {
  margin-top: 120px;
}
@media (max-width: 1200px) {
  .cid-uJFDQKH5wv .info {
    margin-top: 70px;
  }
}
.cid-uJFDQKH5wv .mbr-text {
  color: #fff;
}
.cid-uJFDQKH5wv .mbr-section-subtitle {
  color: #ea873f;
  text-transform: uppercase;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uJFDQKH5wv .mbr-section-subtitle {
    border-bottom: 1px solid #ffffff;
    padding-bottom: 4px;
  }
}
.cid-uJFDQKH5wv .mbr-section-subtitle::before {
  position: absolute;
  content: "";
  height: 1px;
  background-color: #ffffff;
  width: 50%;
  top: 35px;
}
@media (max-width: 768px) {
  .cid-uJFDQKH5wv .mbr-section-subtitle::before {
    content: none;
  }
}
.cid-uJFDQKH5wv .add-info {
  line-height: 1.72;
}
@media (max-width: 768px) {
  .cid-uJFDQKH5wv .add-info {
    width: 50%;
  }
}
.cid-uJFDQKH5wv .add-info-text {
  line-height: 1.72;
}
.cid-uJFDQKH5wv .mobi-mbri-down {
  font-size: 11px;
  margin-left: 10px;
}
.cid-uJFDQKH5wv .main-subtitle {
  color: #ffffff;
}
.cid-uJFDQKXxN3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1c1c20;
}
.cid-uJFDQKXxN3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJFDQKXxN3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJFDQKXxN3 .mbr-text {
  color: #000000;
}
.cid-uJFDQKXxN3 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uJFDQKXxN3 .item-wrapper {
  background: #2a2b36;
  margin-bottom: 0rem;
  padding: 2.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .cid-uJFDQKXxN3 .item-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 0rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uJFDQKXxN3 .item-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 0rem;
  }
}
.cid-uJFDQKXxN3 .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uJFDQKXxN3 .item-mb {
    margin-bottom: 1rem;
  }
}
.cid-uJFDQKXxN3 .mbr-number {
  color: #9fe870;
  text-align: left;
}
.cid-uJFDQKXxN3 .mbr-section-title {
  color: #000000;
}
.cid-uJFDQKXxN3 .card-text,
.cid-uJFDQKXxN3 .item .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uJFDQKXxN3 .card-title,
.cid-uJFDQKXxN3 .iconfont-wrapper {
  text-align: left;
  color: #ebb46e;
}
.cid-uJFDQKXxN3 .mbr-section-subtitle,
.cid-uJFDQKXxN3 .main-button {
  text-align: left;
  color: #000000;
}
.cid-uJFDQKXxN3 .item-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-uJFDQKXxN3 .item-content .item-footer {
  margin-top: auto;
}
.cid-uJFDQKXxN3 .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uJFDQKXxN3 .main-button {
    margin-bottom: 2rem;
  }
}
.cid-uJFDQKXxN3 .side-features {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  padding-left: 0px;
  padding-right: 0px;
}
.cid-uJFDQKXxN3 .side-features .item {
  padding-left: 16px;
  padding-right: 16px;
}
.cid-uJFDQLdDjs {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #2a2b36;
  position: relative;
  overflow: visible;
  z-index: 1;
}
.cid-uJFDQLdDjs .mbr-section-title {
  margin: 20px 0;
  color: #ebb46e;
}
.cid-uJFDQLdDjs .shape {
  position: absolute;
  z-index: -1;
  bottom: -4.5rem;
  right: 0;
  max-width: 160px;
}
.cid-uJFDQLdDjs .shape img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .cid-uJFDQLdDjs .shape {
    max-width: 80px;
  }
}
.cid-uJFDQLdDjs .mbr-text {
  color: #ffffff;
}
.cid-uJFDQLrgDI {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #2a2b36;
  position: relative;
  overflow: visible;
  z-index: 1;
}
.cid-uJFDQLrgDI .mbr-section-title {
  margin: 20px 0;
  color: #ebb46e;
}
.cid-uJFDQLrgDI .shape {
  position: absolute;
  z-index: -1;
  bottom: -4.5rem;
  right: 0;
  max-width: 160px;
}
.cid-uJFDQLrgDI .shape img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .cid-uJFDQLrgDI .shape {
    max-width: 80px;
  }
}
.cid-uJFDQLrgDI .mbr-text {
  color: #ffffff;
}
.cid-uJFDQLE9qu {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #1c1c20;
}
.cid-uJFDQLE9qu .mbr-section-title {
  margin-bottom: 1rem;
  color: #ea873f;
}
.cid-uJFDQLE9qu .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uJFDQLE9qu .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uJFDQLE9qu .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uJFDQLE9qu .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-uJFDQLE9qu .social_icons {
  text-align: center;
}
.cid-uJFDQLE9qu .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uJFDQLE9qu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uJFDQLE9qu .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uJFDQLE9qu .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uJFDQLE9qu .footer_timework {
    margin-top: 50px;
  }
  .cid-uJFDQLE9qu .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJFDQLE9qu .mbr-text,
.cid-uJFDQLE9qu .footer_logo,
.cid-uJFDQLE9qu .social_icons {
  color: #ea873f;
}
.cid-uJFDQLURRS {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #1c1c20;
}
.cid-uJFDQLURRS .mbr-text {
  color: #fafafa;
  margin: 10px 0;
  width: 100%;
  text-align: center;
}
.cid-uJLFDX8Bh3 {
  z-index: 1000;
  width: 100%;
}
.cid-uJLFDX8Bh3 .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-uJLFDX8Bh3 .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ea873f;
  z-index: -1;
}
.cid-uJLFDX8Bh3 nav.navbar {
  position: fixed;
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-item {
    border: 0;
  }
}
.cid-uJLFDX8Bh3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-uJLFDX8Bh3 .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-uJLFDX8Bh3 .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-uJLFDX8Bh3 .title-wrap:hover span {
  color: white;
}
.cid-uJLFDX8Bh3 .title-wrap:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ea873f;
}
.cid-uJLFDX8Bh3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJLFDX8Bh3 .nav-link {
  position: relative;
}
.cid-uJLFDX8Bh3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .container {
    flex-wrap: nowrap;
  }
}
.cid-uJLFDX8Bh3 .dropdown-menu,
.cid-uJLFDX8Bh3 .navbar.opened {
  background: #2a2b36 !important;
}
.cid-uJLFDX8Bh3 .nav-item:focus,
.cid-uJLFDX8Bh3 .nav-link:focus {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(42, 43, 54, 0.6);
}
.cid-uJLFDX8Bh3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJLFDX8Bh3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uJLFDX8Bh3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJLFDX8Bh3 .navbar.collapsed {
  justify-content: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJLFDX8Bh3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJLFDX8Bh3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJLFDX8Bh3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJLFDX8Bh3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uJLFDX8Bh3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJLFDX8Bh3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown-item.active,
.cid-uJLFDX8Bh3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uJLFDX8Bh3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a2b36;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJLFDX8Bh3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJLFDX8Bh3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJLFDX8Bh3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJLFDX8Bh3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ea873f;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJLFDX8Bh3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJLFDX8Bh3 .navbar {
    height: 70px;
  }
  .cid-uJLFDX8Bh3 .navbar.opened {
    height: auto;
  }
  .cid-uJLFDX8Bh3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap,
.cid-uJLFDX8Bh3 .title-wrap {
  color: #272727;
}
.cid-uJFE2yDE98 {
  background-image: url("../../../assets/images/soff-igorevich-58942-wander-deep-into-hawaiis-tropical-forests-577cbdcc-bb5c-48d1-8cfd-c0741fe5b9ea.png-1344x896.png");
}
.cid-uJFE2yDE98 h4 {
  margin-bottom: 20px;
  line-height: 1.3;
}
.cid-uJFE2yDE98 a {
  text-decoration: none;
  font-weight: 300;
  line-height: 1.72;
}
.cid-uJFE2yDE98 .mbr-section-title {
  color: #ea873f;
}
@media (max-width: 1400px) {
  .cid-uJFE2yDE98 .mbr-section-title {
    margin-bottom: 120px;
  }
}
.cid-uJFE2yDE98 .mbr-section-btn {
  margin-right: 13px;
}
.cid-uJFE2yDE98 .btn-white-outline {
  color: white;
}
.cid-uJFE2yDE98 .btn-white-outline:hover {
  color: #000 !important;
  background-color: #fff !important;
  transition: .3s;
}
.cid-uJFE2yDE98 .info {
  margin-top: 120px;
}
@media (max-width: 1200px) {
  .cid-uJFE2yDE98 .info {
    margin-top: 70px;
  }
}
.cid-uJFE2yDE98 .mbr-text {
  color: #fff;
}
.cid-uJFE2yDE98 .mbr-section-subtitle {
  color: #ea873f;
  text-transform: uppercase;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uJFE2yDE98 .mbr-section-subtitle {
    border-bottom: 1px solid #ffffff;
    padding-bottom: 4px;
  }
}
.cid-uJFE2yDE98 .mbr-section-subtitle::before {
  position: absolute;
  content: "";
  height: 1px;
  background-color: #ffffff;
  width: 50%;
  top: 35px;
}
@media (max-width: 768px) {
  .cid-uJFE2yDE98 .mbr-section-subtitle::before {
    content: none;
  }
}
.cid-uJFE2yDE98 .add-info {
  line-height: 1.72;
}
@media (max-width: 768px) {
  .cid-uJFE2yDE98 .add-info {
    width: 50%;
  }
}
.cid-uJFE2yDE98 .add-info-text {
  line-height: 1.72;
}
.cid-uJFE2yDE98 .mobi-mbri-down {
  font-size: 11px;
  margin-left: 10px;
}
.cid-uJFE2yDE98 .main-subtitle {
  color: #ffffff;
}
.cid-uJFE2yUBa4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1c1c20;
}
.cid-uJFE2yUBa4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJFE2yUBa4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJFE2yUBa4 .mbr-text {
  color: #000000;
}
.cid-uJFE2yUBa4 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uJFE2yUBa4 .item-wrapper {
  background: #2a2b36;
  margin-bottom: 0rem;
  padding: 2.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .cid-uJFE2yUBa4 .item-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 0rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uJFE2yUBa4 .item-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 0rem;
  }
}
.cid-uJFE2yUBa4 .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uJFE2yUBa4 .item-mb {
    margin-bottom: 1rem;
  }
}
.cid-uJFE2yUBa4 .mbr-number {
  color: #9fe870;
  text-align: left;
}
.cid-uJFE2yUBa4 .mbr-section-title {
  color: #000000;
}
.cid-uJFE2yUBa4 .card-text,
.cid-uJFE2yUBa4 .item .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uJFE2yUBa4 .card-title,
.cid-uJFE2yUBa4 .iconfont-wrapper {
  text-align: left;
  color: #ebb46e;
}
.cid-uJFE2yUBa4 .mbr-section-subtitle,
.cid-uJFE2yUBa4 .main-button {
  text-align: left;
  color: #000000;
}
.cid-uJFE2yUBa4 .item-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-uJFE2yUBa4 .item-content .item-footer {
  margin-top: auto;
}
.cid-uJFE2yUBa4 .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uJFE2yUBa4 .main-button {
    margin-bottom: 2rem;
  }
}
.cid-uJFE2yUBa4 .side-features {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  padding-left: 0px;
  padding-right: 0px;
}
.cid-uJFE2yUBa4 .side-features .item {
  padding-left: 16px;
  padding-right: 16px;
}
.cid-uJFE2zdPEs {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #2a2b36;
  position: relative;
  overflow: visible;
  z-index: 1;
}
.cid-uJFE2zdPEs .mbr-section-title {
  margin: 20px 0;
  color: #ebb46e;
}
.cid-uJFE2zdPEs .shape {
  position: absolute;
  z-index: -1;
  bottom: -4.5rem;
  right: 0;
  max-width: 160px;
}
.cid-uJFE2zdPEs .shape img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .cid-uJFE2zdPEs .shape {
    max-width: 80px;
  }
}
.cid-uJFE2zdPEs .mbr-text {
  color: #ffffff;
}
.cid-uJFE2zqzs3 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #2a2b36;
  position: relative;
  overflow: visible;
  z-index: 1;
}
.cid-uJFE2zqzs3 .mbr-section-title {
  margin: 20px 0;
  color: #ebb46e;
}
.cid-uJFE2zqzs3 .shape {
  position: absolute;
  z-index: -1;
  bottom: -4.5rem;
  right: 0;
  max-width: 160px;
}
.cid-uJFE2zqzs3 .shape img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .cid-uJFE2zqzs3 .shape {
    max-width: 80px;
  }
}
.cid-uJFE2zqzs3 .mbr-text {
  color: #ffffff;
}
.cid-uJFE2zCADn {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #1c1c20;
}
.cid-uJFE2zCADn .mbr-section-title {
  margin-bottom: 1rem;
  color: #ea873f;
}
.cid-uJFE2zCADn .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uJFE2zCADn .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uJFE2zCADn .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uJFE2zCADn .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-uJFE2zCADn .social_icons {
  text-align: center;
}
.cid-uJFE2zCADn .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uJFE2zCADn .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uJFE2zCADn .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uJFE2zCADn .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uJFE2zCADn .footer_timework {
    margin-top: 50px;
  }
  .cid-uJFE2zCADn .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJFE2zCADn .mbr-text,
.cid-uJFE2zCADn .footer_logo,
.cid-uJFE2zCADn .social_icons {
  color: #ea873f;
}
.cid-uJFE2zTt6P {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #1c1c20;
}
.cid-uJFE2zTt6P .mbr-text {
  color: #fafafa;
  margin: 10px 0;
  width: 100%;
  text-align: center;
}
.cid-uJLFDX8Bh3 {
  z-index: 1000;
  width: 100%;
}
.cid-uJLFDX8Bh3 .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-uJLFDX8Bh3 .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ea873f;
  z-index: -1;
}
.cid-uJLFDX8Bh3 nav.navbar {
  position: fixed;
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-item {
    border: 0;
  }
}
.cid-uJLFDX8Bh3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-uJLFDX8Bh3 .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-uJLFDX8Bh3 .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-uJLFDX8Bh3 .title-wrap:hover span {
  color: white;
}
.cid-uJLFDX8Bh3 .title-wrap:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ea873f;
}
.cid-uJLFDX8Bh3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJLFDX8Bh3 .nav-link {
  position: relative;
}
.cid-uJLFDX8Bh3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .container {
    flex-wrap: nowrap;
  }
}
.cid-uJLFDX8Bh3 .dropdown-menu,
.cid-uJLFDX8Bh3 .navbar.opened {
  background: #2a2b36 !important;
}
.cid-uJLFDX8Bh3 .nav-item:focus,
.cid-uJLFDX8Bh3 .nav-link:focus {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(42, 43, 54, 0.6);
}
.cid-uJLFDX8Bh3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJLFDX8Bh3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uJLFDX8Bh3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJLFDX8Bh3 .navbar.collapsed {
  justify-content: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJLFDX8Bh3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJLFDX8Bh3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJLFDX8Bh3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJLFDX8Bh3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uJLFDX8Bh3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJLFDX8Bh3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown-item.active,
.cid-uJLFDX8Bh3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uJLFDX8Bh3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a2b36;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJLFDX8Bh3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJLFDX8Bh3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJLFDX8Bh3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJLFDX8Bh3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ea873f;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJLFDX8Bh3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJLFDX8Bh3 .navbar {
    height: 70px;
  }
  .cid-uJLFDX8Bh3 .navbar.opened {
    height: auto;
  }
  .cid-uJLFDX8Bh3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap,
.cid-uJLFDX8Bh3 .title-wrap {
  color: #272727;
}
.cid-uJFE7Xe3e5 {
  background-image: url("../../../assets/images/soff-igorevich-58942-stroll-along-rugged-cliffs-with-killer-oce-247db8dc-6913-496d-8622-1d96dd4f51a0.png-1344x896.png");
}
.cid-uJFE7Xe3e5 h4 {
  margin-bottom: 20px;
  line-height: 1.3;
}
.cid-uJFE7Xe3e5 a {
  text-decoration: none;
  font-weight: 300;
  line-height: 1.72;
}
.cid-uJFE7Xe3e5 .mbr-section-title {
  color: #ea873f;
}
@media (max-width: 1400px) {
  .cid-uJFE7Xe3e5 .mbr-section-title {
    margin-bottom: 120px;
  }
}
.cid-uJFE7Xe3e5 .mbr-section-btn {
  margin-right: 13px;
}
.cid-uJFE7Xe3e5 .btn-white-outline {
  color: white;
}
.cid-uJFE7Xe3e5 .btn-white-outline:hover {
  color: #000 !important;
  background-color: #fff !important;
  transition: .3s;
}
.cid-uJFE7Xe3e5 .info {
  margin-top: 120px;
}
@media (max-width: 1200px) {
  .cid-uJFE7Xe3e5 .info {
    margin-top: 70px;
  }
}
.cid-uJFE7Xe3e5 .mbr-text {
  color: #fff;
}
.cid-uJFE7Xe3e5 .mbr-section-subtitle {
  color: #ea873f;
  text-transform: uppercase;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uJFE7Xe3e5 .mbr-section-subtitle {
    border-bottom: 1px solid #ffffff;
    padding-bottom: 4px;
  }
}
.cid-uJFE7Xe3e5 .mbr-section-subtitle::before {
  position: absolute;
  content: "";
  height: 1px;
  background-color: #ffffff;
  width: 50%;
  top: 35px;
}
@media (max-width: 768px) {
  .cid-uJFE7Xe3e5 .mbr-section-subtitle::before {
    content: none;
  }
}
.cid-uJFE7Xe3e5 .add-info {
  line-height: 1.72;
}
@media (max-width: 768px) {
  .cid-uJFE7Xe3e5 .add-info {
    width: 50%;
  }
}
.cid-uJFE7Xe3e5 .add-info-text {
  line-height: 1.72;
}
.cid-uJFE7Xe3e5 .mobi-mbri-down {
  font-size: 11px;
  margin-left: 10px;
}
.cid-uJFE7Xe3e5 .main-subtitle {
  color: #ffffff;
}
.cid-uJFE7XvZg7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1c1c20;
}
.cid-uJFE7XvZg7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJFE7XvZg7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJFE7XvZg7 .mbr-text {
  color: #000000;
}
.cid-uJFE7XvZg7 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uJFE7XvZg7 .item-wrapper {
  background: #2a2b36;
  margin-bottom: 0rem;
  padding: 2.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .cid-uJFE7XvZg7 .item-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 0rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uJFE7XvZg7 .item-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 0rem;
  }
}
.cid-uJFE7XvZg7 .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uJFE7XvZg7 .item-mb {
    margin-bottom: 1rem;
  }
}
.cid-uJFE7XvZg7 .mbr-number {
  color: #9fe870;
  text-align: left;
}
.cid-uJFE7XvZg7 .mbr-section-title {
  color: #000000;
}
.cid-uJFE7XvZg7 .card-text,
.cid-uJFE7XvZg7 .item .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uJFE7XvZg7 .card-title,
.cid-uJFE7XvZg7 .iconfont-wrapper {
  text-align: left;
  color: #ebb46e;
}
.cid-uJFE7XvZg7 .mbr-section-subtitle,
.cid-uJFE7XvZg7 .main-button {
  text-align: left;
  color: #000000;
}
.cid-uJFE7XvZg7 .item-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-uJFE7XvZg7 .item-content .item-footer {
  margin-top: auto;
}
.cid-uJFE7XvZg7 .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uJFE7XvZg7 .main-button {
    margin-bottom: 2rem;
  }
}
.cid-uJFE7XvZg7 .side-features {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  padding-left: 0px;
  padding-right: 0px;
}
.cid-uJFE7XvZg7 .side-features .item {
  padding-left: 16px;
  padding-right: 16px;
}
.cid-uJFE7XMV22 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #2a2b36;
  position: relative;
  overflow: visible;
  z-index: 1;
}
.cid-uJFE7XMV22 .mbr-section-title {
  margin: 20px 0;
  color: #ebb46e;
}
.cid-uJFE7XMV22 .shape {
  position: absolute;
  z-index: -1;
  bottom: -4.5rem;
  right: 0;
  max-width: 160px;
}
.cid-uJFE7XMV22 .shape img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .cid-uJFE7XMV22 .shape {
    max-width: 80px;
  }
}
.cid-uJFE7XMV22 .mbr-text {
  color: #ffffff;
}
.cid-uJFE7Y0XrT {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #2a2b36;
  position: relative;
  overflow: visible;
  z-index: 1;
}
.cid-uJFE7Y0XrT .mbr-section-title {
  margin: 20px 0;
  color: #ebb46e;
}
.cid-uJFE7Y0XrT .shape {
  position: absolute;
  z-index: -1;
  bottom: -4.5rem;
  right: 0;
  max-width: 160px;
}
.cid-uJFE7Y0XrT .shape img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .cid-uJFE7Y0XrT .shape {
    max-width: 80px;
  }
}
.cid-uJFE7Y0XrT .mbr-text {
  color: #ffffff;
}
.cid-uJFE7Yg42V {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #1c1c20;
}
.cid-uJFE7Yg42V .mbr-section-title {
  margin-bottom: 1rem;
  color: #ea873f;
}
.cid-uJFE7Yg42V .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uJFE7Yg42V .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uJFE7Yg42V .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uJFE7Yg42V .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-uJFE7Yg42V .social_icons {
  text-align: center;
}
.cid-uJFE7Yg42V .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uJFE7Yg42V .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uJFE7Yg42V .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uJFE7Yg42V .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uJFE7Yg42V .footer_timework {
    margin-top: 50px;
  }
  .cid-uJFE7Yg42V .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJFE7Yg42V .mbr-text,
.cid-uJFE7Yg42V .footer_logo,
.cid-uJFE7Yg42V .social_icons {
  color: #ea873f;
}
.cid-uJFE7YyumL {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #1c1c20;
}
.cid-uJFE7YyumL .mbr-text {
  color: #fafafa;
  margin: 10px 0;
  width: 100%;
  text-align: center;
}
.cid-uJLFDX8Bh3 {
  z-index: 1000;
  width: 100%;
}
.cid-uJLFDX8Bh3 .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-uJLFDX8Bh3 .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ea873f;
  z-index: -1;
}
.cid-uJLFDX8Bh3 nav.navbar {
  position: fixed;
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-item {
    border: 0;
  }
}
.cid-uJLFDX8Bh3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-uJLFDX8Bh3 .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-uJLFDX8Bh3 .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-uJLFDX8Bh3 .title-wrap:hover span {
  color: white;
}
.cid-uJLFDX8Bh3 .title-wrap:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ea873f;
}
.cid-uJLFDX8Bh3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJLFDX8Bh3 .nav-link {
  position: relative;
}
.cid-uJLFDX8Bh3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .container {
    flex-wrap: nowrap;
  }
}
.cid-uJLFDX8Bh3 .dropdown-menu,
.cid-uJLFDX8Bh3 .navbar.opened {
  background: #2a2b36 !important;
}
.cid-uJLFDX8Bh3 .nav-item:focus,
.cid-uJLFDX8Bh3 .nav-link:focus {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(42, 43, 54, 0.6);
}
.cid-uJLFDX8Bh3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJLFDX8Bh3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uJLFDX8Bh3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJLFDX8Bh3 .navbar.collapsed {
  justify-content: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJLFDX8Bh3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJLFDX8Bh3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJLFDX8Bh3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJLFDX8Bh3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uJLFDX8Bh3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJLFDX8Bh3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown-item.active,
.cid-uJLFDX8Bh3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uJLFDX8Bh3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a2b36;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJLFDX8Bh3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJLFDX8Bh3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJLFDX8Bh3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJLFDX8Bh3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ea873f;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJLFDX8Bh3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJLFDX8Bh3 .navbar {
    height: 70px;
  }
  .cid-uJLFDX8Bh3 .navbar.opened {
    height: auto;
  }
  .cid-uJLFDX8Bh3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap,
.cid-uJLFDX8Bh3 .title-wrap {
  color: #272727;
}
.cid-uJFEdQukz6 {
  background-image: url("../../../assets/images/soff-igorevich-58942-hidden-coastal-trails-cliff-walk-ocean-vi-8b9bf777-0703-41c4-a3ca-f66ee44d2245.png-1344x896.png");
}
.cid-uJFEdQukz6 h4 {
  margin-bottom: 20px;
  line-height: 1.3;
}
.cid-uJFEdQukz6 a {
  text-decoration: none;
  font-weight: 300;
  line-height: 1.72;
}
.cid-uJFEdQukz6 .mbr-section-title {
  color: #ea873f;
}
@media (max-width: 1400px) {
  .cid-uJFEdQukz6 .mbr-section-title {
    margin-bottom: 120px;
  }
}
.cid-uJFEdQukz6 .mbr-section-btn {
  margin-right: 13px;
}
.cid-uJFEdQukz6 .btn-white-outline {
  color: white;
}
.cid-uJFEdQukz6 .btn-white-outline:hover {
  color: #000 !important;
  background-color: #fff !important;
  transition: .3s;
}
.cid-uJFEdQukz6 .info {
  margin-top: 120px;
}
@media (max-width: 1200px) {
  .cid-uJFEdQukz6 .info {
    margin-top: 70px;
  }
}
.cid-uJFEdQukz6 .mbr-text {
  color: #fff;
}
.cid-uJFEdQukz6 .mbr-section-subtitle {
  color: #ea873f;
  text-transform: uppercase;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uJFEdQukz6 .mbr-section-subtitle {
    border-bottom: 1px solid #ffffff;
    padding-bottom: 4px;
  }
}
.cid-uJFEdQukz6 .mbr-section-subtitle::before {
  position: absolute;
  content: "";
  height: 1px;
  background-color: #ffffff;
  width: 50%;
  top: 35px;
}
@media (max-width: 768px) {
  .cid-uJFEdQukz6 .mbr-section-subtitle::before {
    content: none;
  }
}
.cid-uJFEdQukz6 .add-info {
  line-height: 1.72;
}
@media (max-width: 768px) {
  .cid-uJFEdQukz6 .add-info {
    width: 50%;
  }
}
.cid-uJFEdQukz6 .add-info-text {
  line-height: 1.72;
}
.cid-uJFEdQukz6 .mobi-mbri-down {
  font-size: 11px;
  margin-left: 10px;
}
.cid-uJFEdQukz6 .main-subtitle {
  color: #ffffff;
}
.cid-uJFEdRD3i3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1c1c20;
}
.cid-uJFEdRD3i3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJFEdRD3i3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJFEdRD3i3 .mbr-text {
  color: #000000;
}
.cid-uJFEdRD3i3 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uJFEdRD3i3 .item-wrapper {
  background: #2a2b36;
  margin-bottom: 0rem;
  padding: 2.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .cid-uJFEdRD3i3 .item-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 0rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uJFEdRD3i3 .item-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 0rem;
  }
}
.cid-uJFEdRD3i3 .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uJFEdRD3i3 .item-mb {
    margin-bottom: 1rem;
  }
}
.cid-uJFEdRD3i3 .mbr-number {
  color: #9fe870;
  text-align: left;
}
.cid-uJFEdRD3i3 .mbr-section-title {
  color: #000000;
}
.cid-uJFEdRD3i3 .card-text,
.cid-uJFEdRD3i3 .item .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uJFEdRD3i3 .card-title,
.cid-uJFEdRD3i3 .iconfont-wrapper {
  text-align: left;
  color: #ebb46e;
}
.cid-uJFEdRD3i3 .mbr-section-subtitle,
.cid-uJFEdRD3i3 .main-button {
  text-align: left;
  color: #000000;
}
.cid-uJFEdRD3i3 .item-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-uJFEdRD3i3 .item-content .item-footer {
  margin-top: auto;
}
.cid-uJFEdRD3i3 .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uJFEdRD3i3 .main-button {
    margin-bottom: 2rem;
  }
}
.cid-uJFEdRD3i3 .side-features {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  padding-left: 0px;
  padding-right: 0px;
}
.cid-uJFEdRD3i3 .side-features .item {
  padding-left: 16px;
  padding-right: 16px;
}
.cid-uJFEdRWb9x {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #2a2b36;
  position: relative;
  overflow: visible;
  z-index: 1;
}
.cid-uJFEdRWb9x .mbr-section-title {
  margin: 20px 0;
  color: #ebb46e;
}
.cid-uJFEdRWb9x .shape {
  position: absolute;
  z-index: -1;
  bottom: -4.5rem;
  right: 0;
  max-width: 160px;
}
.cid-uJFEdRWb9x .shape img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .cid-uJFEdRWb9x .shape {
    max-width: 80px;
  }
}
.cid-uJFEdRWb9x .mbr-text {
  color: #ffffff;
}
.cid-uJFEdSa5lk {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #2a2b36;
  position: relative;
  overflow: visible;
  z-index: 1;
}
.cid-uJFEdSa5lk .mbr-section-title {
  margin: 20px 0;
  color: #ebb46e;
}
.cid-uJFEdSa5lk .shape {
  position: absolute;
  z-index: -1;
  bottom: -4.5rem;
  right: 0;
  max-width: 160px;
}
.cid-uJFEdSa5lk .shape img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .cid-uJFEdSa5lk .shape {
    max-width: 80px;
  }
}
.cid-uJFEdSa5lk .mbr-text {
  color: #ffffff;
}
.cid-uJFEdSmZXm {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #1c1c20;
}
.cid-uJFEdSmZXm .mbr-section-title {
  margin-bottom: 1rem;
  color: #ea873f;
}
.cid-uJFEdSmZXm .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uJFEdSmZXm .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uJFEdSmZXm .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uJFEdSmZXm .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-uJFEdSmZXm .social_icons {
  text-align: center;
}
.cid-uJFEdSmZXm .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uJFEdSmZXm .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uJFEdSmZXm .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uJFEdSmZXm .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uJFEdSmZXm .footer_timework {
    margin-top: 50px;
  }
  .cid-uJFEdSmZXm .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJFEdSmZXm .mbr-text,
.cid-uJFEdSmZXm .footer_logo,
.cid-uJFEdSmZXm .social_icons {
  color: #ea873f;
}
.cid-uJFEdSEiaS {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #1c1c20;
}
.cid-uJFEdSEiaS .mbr-text {
  color: #fafafa;
  margin: 10px 0;
  width: 100%;
  text-align: center;
}
.cid-uJLFDX8Bh3 {
  z-index: 1000;
  width: 100%;
}
.cid-uJLFDX8Bh3 .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-uJLFDX8Bh3 .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ea873f;
  z-index: -1;
}
.cid-uJLFDX8Bh3 nav.navbar {
  position: fixed;
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-item {
    border: 0;
  }
}
.cid-uJLFDX8Bh3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-uJLFDX8Bh3 .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-uJLFDX8Bh3 .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-uJLFDX8Bh3 .title-wrap:hover span {
  color: white;
}
.cid-uJLFDX8Bh3 .title-wrap:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ea873f;
}
.cid-uJLFDX8Bh3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJLFDX8Bh3 .nav-link {
  position: relative;
}
.cid-uJLFDX8Bh3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .container {
    flex-wrap: nowrap;
  }
}
.cid-uJLFDX8Bh3 .dropdown-menu,
.cid-uJLFDX8Bh3 .navbar.opened {
  background: #2a2b36 !important;
}
.cid-uJLFDX8Bh3 .nav-item:focus,
.cid-uJLFDX8Bh3 .nav-link:focus {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(42, 43, 54, 0.6);
}
.cid-uJLFDX8Bh3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJLFDX8Bh3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uJLFDX8Bh3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJLFDX8Bh3 .navbar.collapsed {
  justify-content: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJLFDX8Bh3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJLFDX8Bh3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJLFDX8Bh3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJLFDX8Bh3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uJLFDX8Bh3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJLFDX8Bh3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown-item.active,
.cid-uJLFDX8Bh3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uJLFDX8Bh3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a2b36;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJLFDX8Bh3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJLFDX8Bh3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJLFDX8Bh3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJLFDX8Bh3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ea873f;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJLFDX8Bh3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJLFDX8Bh3 .navbar {
    height: 70px;
  }
  .cid-uJLFDX8Bh3 .navbar.opened {
    height: auto;
  }
  .cid-uJLFDX8Bh3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap,
.cid-uJLFDX8Bh3 .title-wrap {
  color: #272727;
}
.cid-uJFElO6qs0 {
  background-image: url("../../../assets/images/soff-igorevich-58942-sacred-sites-ancient-legends-tour-get-dee-7d747da8-c125-4f2d-8f7a-aa8623101473.png-1344x896.png");
}
.cid-uJFElO6qs0 h4 {
  margin-bottom: 20px;
  line-height: 1.3;
}
.cid-uJFElO6qs0 a {
  text-decoration: none;
  font-weight: 300;
  line-height: 1.72;
}
.cid-uJFElO6qs0 .mbr-section-title {
  color: #ea873f;
}
@media (max-width: 1400px) {
  .cid-uJFElO6qs0 .mbr-section-title {
    margin-bottom: 120px;
  }
}
.cid-uJFElO6qs0 .mbr-section-btn {
  margin-right: 13px;
}
.cid-uJFElO6qs0 .btn-white-outline {
  color: white;
}
.cid-uJFElO6qs0 .btn-white-outline:hover {
  color: #000 !important;
  background-color: #fff !important;
  transition: .3s;
}
.cid-uJFElO6qs0 .info {
  margin-top: 120px;
}
@media (max-width: 1200px) {
  .cid-uJFElO6qs0 .info {
    margin-top: 70px;
  }
}
.cid-uJFElO6qs0 .mbr-text {
  color: #fff;
}
.cid-uJFElO6qs0 .mbr-section-subtitle {
  color: #ea873f;
  text-transform: uppercase;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uJFElO6qs0 .mbr-section-subtitle {
    border-bottom: 1px solid #ffffff;
    padding-bottom: 4px;
  }
}
.cid-uJFElO6qs0 .mbr-section-subtitle::before {
  position: absolute;
  content: "";
  height: 1px;
  background-color: #ffffff;
  width: 50%;
  top: 35px;
}
@media (max-width: 768px) {
  .cid-uJFElO6qs0 .mbr-section-subtitle::before {
    content: none;
  }
}
.cid-uJFElO6qs0 .add-info {
  line-height: 1.72;
}
@media (max-width: 768px) {
  .cid-uJFElO6qs0 .add-info {
    width: 50%;
  }
}
.cid-uJFElO6qs0 .add-info-text {
  line-height: 1.72;
}
.cid-uJFElO6qs0 .mobi-mbri-down {
  font-size: 11px;
  margin-left: 10px;
}
.cid-uJFElO6qs0 .main-subtitle {
  color: #ffffff;
}
.cid-uJFElOwEHn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1c1c20;
}
.cid-uJFElOwEHn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJFElOwEHn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJFElOwEHn .mbr-text {
  color: #000000;
}
.cid-uJFElOwEHn .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uJFElOwEHn .item-wrapper {
  background: #2a2b36;
  margin-bottom: 0rem;
  padding: 2.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .cid-uJFElOwEHn .item-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 0rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uJFElOwEHn .item-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 0rem;
  }
}
.cid-uJFElOwEHn .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uJFElOwEHn .item-mb {
    margin-bottom: 1rem;
  }
}
.cid-uJFElOwEHn .mbr-number {
  color: #9fe870;
  text-align: left;
}
.cid-uJFElOwEHn .mbr-section-title {
  color: #000000;
}
.cid-uJFElOwEHn .card-text,
.cid-uJFElOwEHn .item .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uJFElOwEHn .card-title,
.cid-uJFElOwEHn .iconfont-wrapper {
  text-align: left;
  color: #ebb46e;
}
.cid-uJFElOwEHn .mbr-section-subtitle,
.cid-uJFElOwEHn .main-button {
  text-align: left;
  color: #000000;
}
.cid-uJFElOwEHn .item-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-uJFElOwEHn .item-content .item-footer {
  margin-top: auto;
}
.cid-uJFElOwEHn .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uJFElOwEHn .main-button {
    margin-bottom: 2rem;
  }
}
.cid-uJFElOwEHn .side-features {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  padding-left: 0px;
  padding-right: 0px;
}
.cid-uJFElOwEHn .side-features .item {
  padding-left: 16px;
  padding-right: 16px;
}
.cid-uJFElP5hhh {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #2a2b36;
  position: relative;
  overflow: visible;
  z-index: 1;
}
.cid-uJFElP5hhh .mbr-section-title {
  margin: 20px 0;
  color: #ebb46e;
}
.cid-uJFElP5hhh .shape {
  position: absolute;
  z-index: -1;
  bottom: -4.5rem;
  right: 0;
  max-width: 160px;
}
.cid-uJFElP5hhh .shape img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .cid-uJFElP5hhh .shape {
    max-width: 80px;
  }
}
.cid-uJFElP5hhh .mbr-text {
  color: #ffffff;
}
.cid-uJFElQf735 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #2a2b36;
  position: relative;
  overflow: visible;
  z-index: 1;
}
.cid-uJFElQf735 .mbr-section-title {
  margin: 20px 0;
  color: #ebb46e;
}
.cid-uJFElQf735 .shape {
  position: absolute;
  z-index: -1;
  bottom: -4.5rem;
  right: 0;
  max-width: 160px;
}
.cid-uJFElQf735 .shape img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .cid-uJFElQf735 .shape {
    max-width: 80px;
  }
}
.cid-uJFElQf735 .mbr-text {
  color: #ffffff;
}
.cid-uJFElQyEei {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #1c1c20;
}
.cid-uJFElQyEei .mbr-section-title {
  margin-bottom: 1rem;
  color: #ea873f;
}
.cid-uJFElQyEei .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uJFElQyEei .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uJFElQyEei .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uJFElQyEei .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-uJFElQyEei .social_icons {
  text-align: center;
}
.cid-uJFElQyEei .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uJFElQyEei .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uJFElQyEei .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uJFElQyEei .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uJFElQyEei .footer_timework {
    margin-top: 50px;
  }
  .cid-uJFElQyEei .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJFElQyEei .mbr-text,
.cid-uJFElQyEei .footer_logo,
.cid-uJFElQyEei .social_icons {
  color: #ea873f;
}
.cid-uJFElRERwi {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #1c1c20;
}
.cid-uJFElRERwi .mbr-text {
  color: #fafafa;
  margin: 10px 0;
  width: 100%;
  text-align: center;
}
.cid-uJLFDX8Bh3 {
  z-index: 1000;
  width: 100%;
}
.cid-uJLFDX8Bh3 .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-uJLFDX8Bh3 .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ea873f;
  z-index: -1;
}
.cid-uJLFDX8Bh3 nav.navbar {
  position: fixed;
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-item {
    border: 0;
  }
}
.cid-uJLFDX8Bh3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-uJLFDX8Bh3 .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-uJLFDX8Bh3 .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-uJLFDX8Bh3 .title-wrap:hover span {
  color: white;
}
.cid-uJLFDX8Bh3 .title-wrap:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ea873f;
}
.cid-uJLFDX8Bh3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJLFDX8Bh3 .nav-link {
  position: relative;
}
.cid-uJLFDX8Bh3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .container {
    flex-wrap: nowrap;
  }
}
.cid-uJLFDX8Bh3 .dropdown-menu,
.cid-uJLFDX8Bh3 .navbar.opened {
  background: #2a2b36 !important;
}
.cid-uJLFDX8Bh3 .nav-item:focus,
.cid-uJLFDX8Bh3 .nav-link:focus {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(42, 43, 54, 0.6);
}
.cid-uJLFDX8Bh3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJLFDX8Bh3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uJLFDX8Bh3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJLFDX8Bh3 .navbar.collapsed {
  justify-content: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJLFDX8Bh3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJLFDX8Bh3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJLFDX8Bh3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJLFDX8Bh3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uJLFDX8Bh3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJLFDX8Bh3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown-item.active,
.cid-uJLFDX8Bh3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uJLFDX8Bh3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a2b36;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJLFDX8Bh3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJLFDX8Bh3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJLFDX8Bh3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJLFDX8Bh3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ea873f;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJLFDX8Bh3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJLFDX8Bh3 .navbar {
    height: 70px;
  }
  .cid-uJLFDX8Bh3 .navbar.opened {
    height: auto;
  }
  .cid-uJLFDX8Bh3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap,
.cid-uJLFDX8Bh3 .title-wrap {
  color: #272727;
}
.cid-uJFEuPYEOX {
  background-image: url("../../../assets/images/soff-igorevich-58942-tropical-rainforest-wild-swimming-holes-n-8bf528c7-21fe-423a-a064-da00c22ee9c6.png-1344x896.png");
}
.cid-uJFEuPYEOX h4 {
  margin-bottom: 20px;
  line-height: 1.3;
}
.cid-uJFEuPYEOX a {
  text-decoration: none;
  font-weight: 300;
  line-height: 1.72;
}
.cid-uJFEuPYEOX .mbr-section-title {
  color: #ea873f;
}
@media (max-width: 1400px) {
  .cid-uJFEuPYEOX .mbr-section-title {
    margin-bottom: 120px;
  }
}
.cid-uJFEuPYEOX .mbr-section-btn {
  margin-right: 13px;
}
.cid-uJFEuPYEOX .btn-white-outline {
  color: white;
}
.cid-uJFEuPYEOX .btn-white-outline:hover {
  color: #000 !important;
  background-color: #fff !important;
  transition: .3s;
}
.cid-uJFEuPYEOX .info {
  margin-top: 120px;
}
@media (max-width: 1200px) {
  .cid-uJFEuPYEOX .info {
    margin-top: 70px;
  }
}
.cid-uJFEuPYEOX .mbr-text {
  color: #fff;
}
.cid-uJFEuPYEOX .mbr-section-subtitle {
  color: #ea873f;
  text-transform: uppercase;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uJFEuPYEOX .mbr-section-subtitle {
    border-bottom: 1px solid #ffffff;
    padding-bottom: 4px;
  }
}
.cid-uJFEuPYEOX .mbr-section-subtitle::before {
  position: absolute;
  content: "";
  height: 1px;
  background-color: #ffffff;
  width: 50%;
  top: 35px;
}
@media (max-width: 768px) {
  .cid-uJFEuPYEOX .mbr-section-subtitle::before {
    content: none;
  }
}
.cid-uJFEuPYEOX .add-info {
  line-height: 1.72;
}
@media (max-width: 768px) {
  .cid-uJFEuPYEOX .add-info {
    width: 50%;
  }
}
.cid-uJFEuPYEOX .add-info-text {
  line-height: 1.72;
}
.cid-uJFEuPYEOX .mobi-mbri-down {
  font-size: 11px;
  margin-left: 10px;
}
.cid-uJFEuPYEOX .main-subtitle {
  color: #ffffff;
}
.cid-uJFEuRc2IM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1c1c20;
}
.cid-uJFEuRc2IM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJFEuRc2IM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJFEuRc2IM .mbr-text {
  color: #000000;
}
.cid-uJFEuRc2IM .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uJFEuRc2IM .item-wrapper {
  background: #2a2b36;
  margin-bottom: 0rem;
  padding: 2.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .cid-uJFEuRc2IM .item-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 0rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uJFEuRc2IM .item-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 0rem;
  }
}
.cid-uJFEuRc2IM .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uJFEuRc2IM .item-mb {
    margin-bottom: 1rem;
  }
}
.cid-uJFEuRc2IM .mbr-number {
  color: #9fe870;
  text-align: left;
}
.cid-uJFEuRc2IM .mbr-section-title {
  color: #000000;
}
.cid-uJFEuRc2IM .card-text,
.cid-uJFEuRc2IM .item .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uJFEuRc2IM .card-title,
.cid-uJFEuRc2IM .iconfont-wrapper {
  text-align: left;
  color: #ebb46e;
}
.cid-uJFEuRc2IM .mbr-section-subtitle,
.cid-uJFEuRc2IM .main-button {
  text-align: left;
  color: #000000;
}
.cid-uJFEuRc2IM .item-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-uJFEuRc2IM .item-content .item-footer {
  margin-top: auto;
}
.cid-uJFEuRc2IM .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uJFEuRc2IM .main-button {
    margin-bottom: 2rem;
  }
}
.cid-uJFEuRc2IM .side-features {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  padding-left: 0px;
  padding-right: 0px;
}
.cid-uJFEuRc2IM .side-features .item {
  padding-left: 16px;
  padding-right: 16px;
}
.cid-uJFEuRWa9m {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #2a2b36;
  position: relative;
  overflow: visible;
  z-index: 1;
}
.cid-uJFEuRWa9m .mbr-section-title {
  margin: 20px 0;
  color: #ebb46e;
}
.cid-uJFEuRWa9m .shape {
  position: absolute;
  z-index: -1;
  bottom: -4.5rem;
  right: 0;
  max-width: 160px;
}
.cid-uJFEuRWa9m .shape img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .cid-uJFEuRWa9m .shape {
    max-width: 80px;
  }
}
.cid-uJFEuRWa9m .mbr-text {
  color: #ffffff;
}
.cid-uJFEuSeBlH {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #2a2b36;
  position: relative;
  overflow: visible;
  z-index: 1;
}
.cid-uJFEuSeBlH .mbr-section-title {
  margin: 20px 0;
  color: #ebb46e;
}
.cid-uJFEuSeBlH .shape {
  position: absolute;
  z-index: -1;
  bottom: -4.5rem;
  right: 0;
  max-width: 160px;
}
.cid-uJFEuSeBlH .shape img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .cid-uJFEuSeBlH .shape {
    max-width: 80px;
  }
}
.cid-uJFEuSeBlH .mbr-text {
  color: #ffffff;
}
.cid-uJFEuSty93 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #1c1c20;
}
.cid-uJFEuSty93 .mbr-section-title {
  margin-bottom: 1rem;
  color: #ea873f;
}
.cid-uJFEuSty93 .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uJFEuSty93 .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uJFEuSty93 .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uJFEuSty93 .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-uJFEuSty93 .social_icons {
  text-align: center;
}
.cid-uJFEuSty93 .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uJFEuSty93 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uJFEuSty93 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uJFEuSty93 .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uJFEuSty93 .footer_timework {
    margin-top: 50px;
  }
  .cid-uJFEuSty93 .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJFEuSty93 .mbr-text,
.cid-uJFEuSty93 .footer_logo,
.cid-uJFEuSty93 .social_icons {
  color: #ea873f;
}
.cid-uJFEuSRCi6 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #1c1c20;
}
.cid-uJFEuSRCi6 .mbr-text {
  color: #fafafa;
  margin: 10px 0;
  width: 100%;
  text-align: center;
}
.cid-uJLFDX8Bh3 {
  z-index: 1000;
  width: 100%;
}
.cid-uJLFDX8Bh3 .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-uJLFDX8Bh3 .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ea873f;
  z-index: -1;
}
.cid-uJLFDX8Bh3 nav.navbar {
  position: fixed;
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-item {
    border: 0;
  }
}
.cid-uJLFDX8Bh3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-uJLFDX8Bh3 .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-uJLFDX8Bh3 .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-uJLFDX8Bh3 .title-wrap:hover span {
  color: white;
}
.cid-uJLFDX8Bh3 .title-wrap:hover:before {
  height: 100%;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ea873f;
}
.cid-uJLFDX8Bh3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-uJLFDX8Bh3 .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJLFDX8Bh3 .nav-link {
  position: relative;
}
.cid-uJLFDX8Bh3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .container {
    flex-wrap: nowrap;
  }
}
.cid-uJLFDX8Bh3 .dropdown-menu,
.cid-uJLFDX8Bh3 .navbar.opened {
  background: #2a2b36 !important;
}
.cid-uJLFDX8Bh3 .nav-item:focus,
.cid-uJLFDX8Bh3 .nav-link:focus {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJLFDX8Bh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJLFDX8Bh3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(42, 43, 54, 0.6);
}
.cid-uJLFDX8Bh3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uJLFDX8Bh3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJLFDX8Bh3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uJLFDX8Bh3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJLFDX8Bh3 .navbar.collapsed {
  justify-content: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJLFDX8Bh3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJLFDX8Bh3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJLFDX8Bh3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJLFDX8Bh3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJLFDX8Bh3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJLFDX8Bh3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJLFDX8Bh3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJLFDX8Bh3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uJLFDX8Bh3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJLFDX8Bh3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJLFDX8Bh3 .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-uJLFDX8Bh3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJLFDX8Bh3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJLFDX8Bh3 .dropdown-item.active,
.cid-uJLFDX8Bh3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uJLFDX8Bh3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJLFDX8Bh3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a2b36;
}
.cid-uJLFDX8Bh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJLFDX8Bh3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJLFDX8Bh3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJLFDX8Bh3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJLFDX8Bh3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ea873f;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJLFDX8Bh3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJLFDX8Bh3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJLFDX8Bh3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJLFDX8Bh3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJLFDX8Bh3 .navbar {
    height: 70px;
  }
  .cid-uJLFDX8Bh3 .navbar.opened {
    height: auto;
  }
  .cid-uJLFDX8Bh3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJLFDX8Bh3 .navbar-caption-wrap,
.cid-uJLFDX8Bh3 .title-wrap {
  color: #272727;
}
.cid-uJFEDxLJZx {
  background-image: url("../../../assets/images/soff-igorevich-58942-wild-north-shore-escape-forget-the-packed-96a26bb4-0ceb-41a4-b68b-4b40a79a160d.png-1344x896.png");
}
.cid-uJFEDxLJZx h4 {
  margin-bottom: 20px;
  line-height: 1.3;
}
.cid-uJFEDxLJZx a {
  text-decoration: none;
  font-weight: 300;
  line-height: 1.72;
}
.cid-uJFEDxLJZx .mbr-section-title {
  color: #ea873f;
}
@media (max-width: 1400px) {
  .cid-uJFEDxLJZx .mbr-section-title {
    margin-bottom: 120px;
  }
}
.cid-uJFEDxLJZx .mbr-section-btn {
  margin-right: 13px;
}
.cid-uJFEDxLJZx .btn-white-outline {
  color: white;
}
.cid-uJFEDxLJZx .btn-white-outline:hover {
  color: #000 !important;
  background-color: #fff !important;
  transition: .3s;
}
.cid-uJFEDxLJZx .info {
  margin-top: 120px;
}
@media (max-width: 1200px) {
  .cid-uJFEDxLJZx .info {
    margin-top: 70px;
  }
}
.cid-uJFEDxLJZx .mbr-text {
  color: #fff;
}
.cid-uJFEDxLJZx .mbr-section-subtitle {
  color: #ea873f;
  text-transform: uppercase;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uJFEDxLJZx .mbr-section-subtitle {
    border-bottom: 1px solid #ffffff;
    padding-bottom: 4px;
  }
}
.cid-uJFEDxLJZx .mbr-section-subtitle::before {
  position: absolute;
  content: "";
  height: 1px;
  background-color: #ffffff;
  width: 50%;
  top: 35px;
}
@media (max-width: 768px) {
  .cid-uJFEDxLJZx .mbr-section-subtitle::before {
    content: none;
  }
}
.cid-uJFEDxLJZx .add-info {
  line-height: 1.72;
}
@media (max-width: 768px) {
  .cid-uJFEDxLJZx .add-info {
    width: 50%;
  }
}
.cid-uJFEDxLJZx .add-info-text {
  line-height: 1.72;
}
.cid-uJFEDxLJZx .mobi-mbri-down {
  font-size: 11px;
  margin-left: 10px;
}
.cid-uJFEDxLJZx .main-subtitle {
  color: #ffffff;
}
.cid-uJFEDz106G {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1c1c20;
}
.cid-uJFEDz106G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJFEDz106G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJFEDz106G .mbr-text {
  color: #000000;
}
.cid-uJFEDz106G .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uJFEDz106G .item-wrapper {
  background: #2a2b36;
  margin-bottom: 0rem;
  padding: 2.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .cid-uJFEDz106G .item-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 0rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uJFEDz106G .item-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 0rem;
  }
}
.cid-uJFEDz106G .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uJFEDz106G .item-mb {
    margin-bottom: 1rem;
  }
}
.cid-uJFEDz106G .mbr-number {
  color: #9fe870;
  text-align: left;
}
.cid-uJFEDz106G .mbr-section-title {
  color: #000000;
}
.cid-uJFEDz106G .card-text,
.cid-uJFEDz106G .item .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uJFEDz106G .card-title,
.cid-uJFEDz106G .iconfont-wrapper {
  text-align: left;
  color: #ebb46e;
}
.cid-uJFEDz106G .mbr-section-subtitle,
.cid-uJFEDz106G .main-button {
  text-align: left;
  color: #000000;
}
.cid-uJFEDz106G .item-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-uJFEDz106G .item-content .item-footer {
  margin-top: auto;
}
.cid-uJFEDz106G .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uJFEDz106G .main-button {
    margin-bottom: 2rem;
  }
}
.cid-uJFEDz106G .side-features {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  padding-left: 0px;
  padding-right: 0px;
}
.cid-uJFEDz106G .side-features .item {
  padding-left: 16px;
  padding-right: 16px;
}
.cid-uJFEDzl2r0 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #2a2b36;
  position: relative;
  overflow: visible;
  z-index: 1;
}
.cid-uJFEDzl2r0 .mbr-section-title {
  margin: 20px 0;
  color: #ebb46e;
}
.cid-uJFEDzl2r0 .shape {
  position: absolute;
  z-index: -1;
  bottom: -4.5rem;
  right: 0;
  max-width: 160px;
}
.cid-uJFEDzl2r0 .shape img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .cid-uJFEDzl2r0 .shape {
    max-width: 80px;
  }
}
.cid-uJFEDzl2r0 .mbr-text {
  color: #ffffff;
}
.cid-uJFEDzzphq {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #2a2b36;
  position: relative;
  overflow: visible;
  z-index: 1;
}
.cid-uJFEDzzphq .mbr-section-title {
  margin: 20px 0;
  color: #ebb46e;
}
.cid-uJFEDzzphq .shape {
  position: absolute;
  z-index: -1;
  bottom: -4.5rem;
  right: 0;
  max-width: 160px;
}
.cid-uJFEDzzphq .shape img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .cid-uJFEDzzphq .shape {
    max-width: 80px;
  }
}
.cid-uJFEDzzphq .mbr-text {
  color: #ffffff;
}
.cid-uJFEDzLenq {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #1c1c20;
}
.cid-uJFEDzLenq .mbr-section-title {
  margin-bottom: 1rem;
  color: #ea873f;
}
.cid-uJFEDzLenq .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uJFEDzLenq .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uJFEDzLenq .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uJFEDzLenq .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-uJFEDzLenq .social_icons {
  text-align: center;
}
.cid-uJFEDzLenq .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uJFEDzLenq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uJFEDzLenq .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uJFEDzLenq .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uJFEDzLenq .footer_timework {
    margin-top: 50px;
  }
  .cid-uJFEDzLenq .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJFEDzLenq .mbr-text,
.cid-uJFEDzLenq .footer_logo,
.cid-uJFEDzLenq .social_icons {
  color: #ea873f;
}
.cid-uJFEDA5dvD {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #1c1c20;
}
.cid-uJFEDA5dvD .mbr-text {
  color: #fafafa;
  margin: 10px 0;
  width: 100%;
  text-align: center;
}
