body {
  font-family: Inter Tight;
}
.display-1 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 6.875rem;
  line-height: 1;
  letter-spacing: -0.02em;
}
.display-1 > .mbr-iconfont {
  font-size: 8.59375rem;
}
.display-2 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 3.75rem;
  line-height: 1;
  letter-spacing: -0.02em;
}
.display-2 > .mbr-iconfont {
  font-size: 4.6875rem;
}
.display-4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.3rem;
  line-height: 1.4;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.75rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.1875rem;
}
.display-7 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.18rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 1.475rem;
}
/* ---- 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: 5.5rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.8125rem;
    font-size: calc( 3.05625rem + (6.875 - 3.05625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.05625rem + (6.875 - 3.05625) * ((100vw - 20rem) / (48 - 20))));
    letter-spacing: -0.038em;
  }
  .display-2 {
    font-size: 3rem;
    font-size: calc( 1.9625rem + (3.75 - 1.9625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.9625rem + (3.75 - 1.9625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.4rem;
    font-size: calc( 1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.944rem;
    font-size: calc( 1.063rem + (1.18 - 1.063) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.063rem + (1.18 - 1.063) * ((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: #ff9370 !important;
}
.bg-success {
  background-color: #4fb380 !important;
}
.bg-info {
  background-color: #4c82a2 !important;
}
.bg-warning {
  background-color: #e3d688 !important;
}
.bg-danger {
  background-color: #c04822 !important;
}
.btn-primary:after {
  background: linear-gradient(to right, #ff9370 0 25%, transparent 25% 75%, #ff9370 75% 100%);
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #ff9370 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #ff9370 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ff9370 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary:after {
  background: linear-gradient(to right, #9b8db7 0 25%, transparent 25% 75%, #9b8db7 75% 100%);
}
.btn-secondary,
.btn-secondary:active {
  background-color: #efe6f7 !important;
  border-color: #efe6f7 !important;
  color: #9b8db7 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  background-color: #efe6f7 !important;
  border-color: #efe6f7 !important;
  color: #9b8db7 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #9b8db7 !important;
  background-color: #efe6f7 !important;
  border-color: #efe6f7 !important;
}
.btn-info:after {
  background: linear-gradient(to right, #4c82a2 0 25%, transparent 25% 75%, #4c82a2 75% 100%);
}
.btn-info,
.btn-info:active {
  background-color: #9cc0eb !important;
  border-color: #9cc0eb !important;
  color: #4c82a2 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  background-color: #9cc0eb !important;
  border-color: #9cc0eb !important;
  color: #4c82a2 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #4c82a2 !important;
  background-color: #9cc0eb !important;
  border-color: #9cc0eb !important;
}
.btn-success:after {
  background: linear-gradient(to right, #4fb380 0 25%, transparent 25% 75%, #4fb380 75% 100%);
}
.btn-success,
.btn-success:active {
  background-color: #abf0d8 !important;
  border-color: #abf0d8 !important;
  color: #4fb380 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  background-color: #abf0d8 !important;
  border-color: #abf0d8 !important;
  color: #4fb380 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #4fb380 !important;
  background-color: #abf0d8 !important;
  border-color: #abf0d8 !important;
}
.btn-warning:after {
  background: linear-gradient(to right, #e3d688 0 25%, transparent 25% 75%, #e3d688 75% 100%);
}
.btn-warning,
.btn-warning:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #e3d688 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #e3d688 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #e3d688 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger:after {
  background: linear-gradient(to right, #c04822 0 25%, transparent 25% 75%, #c04822 75% 100%);
}
.btn-danger,
.btn-danger:active {
  background-color: #ffb17c !important;
  border-color: #ffb17c !important;
  color: #c04822 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  background-color: #ffb17c !important;
  border-color: #ffb17c !important;
  color: #c04822 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #c04822 !important;
  background-color: #ffb17c !important;
  border-color: #ffb17c !important;
}
.btn-white:after {
  background: linear-gradient(to right, #f6f6f6 0 25%, transparent 25% 75%, #f6f6f6 75% 100%);
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #f6f6f6 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #f6f6f6 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #f6f6f6 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black:after {
  background: linear-gradient(to right, #303030 0 25%, transparent 25% 75%, #303030 75% 100%);
}
.btn-black,
.btn-black:active {
  background-color: #a26457 !important;
  border-color: #a26457 !important;
  color: #303030 !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  background-color: #a26457 !important;
  border-color: #a26457 !important;
  color: #303030 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #303030 !important;
  background-color: #a26457 !important;
  border-color: #a26457 !important;
}
.btn-primary-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #ff9370 0 25%, transparent 25% 75%, #ff9370 75% 100%);
}
.btn-primary-outline,
.btn-primary-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9370;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ff9370 !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: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #9b8db7 0 25%, transparent 25% 75%, #9b8db7 75% 100%);
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #9b8db7;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #9b8db7 !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: #efe6f7 !important;
  border-color: #efe6f7 !important;
}
.btn-info-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #4c82a2 0 25%, transparent 25% 75%, #4c82a2 75% 100%);
}
.btn-info-outline,
.btn-info-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #4c82a2;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #4c82a2 !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: #9cc0eb !important;
  border-color: #9cc0eb !important;
}
.btn-success-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #4fb380 0 25%, transparent 25% 75%, #4fb380 75% 100%);
}
.btn-success-outline,
.btn-success-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #4fb380;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #4fb380 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #abf0d8 !important;
  border-color: #abf0d8 !important;
}
.btn-warning-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #e3d688 0 25%, transparent 25% 75%, #e3d688 75% 100%);
}
.btn-warning-outline,
.btn-warning-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #e3d688;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #e3d688 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #574e15 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #c04822 0 25%, transparent 25% 75%, #c04822 75% 100%);
}
.btn-danger-outline,
.btn-danger-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #c04822;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #c04822 !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: #ffb17c !important;
  border-color: #ffb17c !important;
}
.btn-black-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #303030 0 25%, transparent 25% 75%, #303030 75% 100%);
}
.btn-black-outline,
.btn-black-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #303030;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #303030 !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: #a26457 !important;
  border-color: #a26457 !important;
}
.btn-white-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #f6f6f6 0 25%, transparent 25% 75%, #f6f6f6 75% 100%);
}
.btn-white-outline,
.btn-white-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #f6f6f6;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #f6f6f6 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #777777 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.text-primary {
  color: #ff9370 !important;
}
.text-secondary {
  color: #9b8db7 !important;
}
.text-success {
  color: #4fb380 !important;
}
.text-info {
  color: #4c82a2 !important;
}
.text-warning {
  color: #e3d688 !important;
}
.text-danger {
  color: #c04822 !important;
}
.text-white {
  color: #f6f6f6 !important;
}
.text-black {
  color: #303030 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #ff460a !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #675688 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #2f6d4d !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #2b4a5d !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #d0ba35 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #692813 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c3c3c3 !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: #ff9370;
}
.nav-tabs .nav-link:not(.active) {
  color: #303030;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #4c82a2;
}
.alert-warning {
  background-color: #e3d688;
}
.alert-danger {
  background-color: #c04822;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff9370;
  border-color: #ff9370;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff9370;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a8d9c0;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #9dbdd1;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #e7947a;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.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: #ff9370 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #ff9370;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff9370;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ff9370;
}
.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: #ff9370;
  border-bottom-color: #ff9370;
}
.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: #ff9370 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #9b8db7 !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='%23ff9370' %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-duration: .4s;
}
a:hover {
  background-image: none !important;
}
.mbr-fonts-style a:not(.mbr-fonts-style) {
  position: relative;
}
.mbr-fonts-style a:not(.mbr-fonts-style):before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 1px;
  width: 100%;
  transition: all 0.7s cubic-bezier(0.33, 0.52, 0.05, 0.96);
  background: linear-gradient(to right, currentColor 0 25%, transparent 25% 75%, currentColor 75% 100%);
  background-position: right;
  background-size: 400% 100%;
  overflow: hidden;
}
.mbr-fonts-style a:not(.mbr-fonts-style):hover:before {
  background-position: left;
}
.container {
  max-width: 1300px;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1439px) {
  .container {
    max-width: 1100px;
  }
}
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 86%;
  }
}
.container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  .container-fluid {
    max-width: 86%;
  }
}
.row {
  margin-left: -20px;
  margin-right: -20px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.row {
  justify-content: center;
}
b,
strong {
  font-weight: 700 !important;
}
.mbr-section-btn .btn {
  position: relative;
  min-width: 100px;
  min-height: 54px;
  padding: 10px 34px 15px;
  font-weight: 700 !important;
  transition: all 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
  box-shadow: none !important;
  border-radius: 0 !important;
  letter-spacing: -0.025em;
}
.mbr-section-btn .btn:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 13px;
  transform: translateX(-50%);
  height: 2px;
  width: calc(100% - 34px * 2);
  transition: all 0.7s cubic-bezier(0.33, 0.52, 0.05, 0.96);
  background-position: right;
  background-size: 400% 100%;
  overflow: hidden;
}
.mbr-section-btn .btn.btn-primary {
  background-color: #ffe3db !important;
  border-color: #ffe3db !important;
}
.mbr-section-btn .btn.btn-black {
  background-color: #FFFFFF !important;
  border-color: #FFFFFF !important;
}
.mbr-section-btn .btn.btn-white {
  background-color: #303030 !important;
  border-color: #303030 !important;
}
.mbr-section-btn .btn:hover:after {
  background-position: left;
}
.cid-tSS6gh497R {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tSS6gh497R .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSS6gh497R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSS6gh497R .container-fluid {
  max-width: 100%;
}
.cid-tSS6gh497R .cards-row {
  row-gap: 30px;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media (min-width: 992px) {
  .cid-tSS6gh497R .card {
    width: 20% !important;
  }
}
.cid-tSS6gh497R .mbr-iconfont {
  font-size: 104px;
  color: #ffffff;
  transition: opacity 0.15s ease-out;
  opacity: 0.4;
}
@media (max-width: 991px) {
  .cid-tSS6gh497R .mbr-iconfont {
    font-size: 84px;
  }
}
.cid-tSS6gh497R .card-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.cid-tSS6gh497R .card-wrapper:hover .mbr-iconfont {
  opacity: 1;
}
.cid-tSS6gh497R .card-box {
  padding-top: 20px;
}
.cid-tSS6gh497R .card-title {
  color: #303030;
  text-align: center;
}
.cid-tPRgeR8YUl {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tPRgeR8YUl .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tPRgeR8YUl .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tPRgeR8YUl .row {
  justify-content: space-between;
}
.cid-tPRgeR8YUl .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tPRgeR8YUl .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tPRgeR8YUl .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tPRgeR8YUl .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tPRgeR8YUl .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tPRgeR8YUl .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tPRgeR8YUl .link-wrapper {
    justify-content: center;
  }
}
.cid-tPRgeR8YUl .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tPRgeR8YUl .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tPRgeR8YUl .mbr-section-subtitle:hover {
  background: #ff9370;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tPRgeR8YUl .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tPRgeR8YUl .link,
.cid-tPRgeR8YUl .link-icon {
  color: #000000;
}
.cid-tPRgeR8YUl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPRgeR8YUl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPRgeR8YUl .mbr-text2 {
  text-align: center;
}
.cid-tPRgeR8YUl .mbr-text,
.cid-tPRgeR8YUl .mbr-section-btn {
  text-align: center;
}
.cid-uTdopjH2g6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uTdopjH2g6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTdopjH2g6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTdopjH2g6 .text-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  padding: 9.3% 11% 10% 11%;
  background-color: #f6f6f6;
}
@media (max-width: 991px) {
  .cid-uTdopjH2g6 .text-wrap {
    height: auto;
    margin-top: 7%;
  }
}
@media (max-width: 767px) {
  .cid-uTdopjH2g6 .text-wrap {
    padding: 35px 25px 35px 25px;
  }
}
@media (max-width: 575px) {
  .cid-uTdopjH2g6 .text-wrap {
    padding: 35px 16px 35px 16px;
  }
}
.cid-uTdopjH2g6 .mbr-section-title {
  color: #303030;
  margin-bottom: 0;
}
.cid-uTdopjH2g6 .mbr-text {
  color: #303030;
  margin-top: 20px;
}
.cid-uTdopjH2g6 .items-wrap {
  display: flex;
  align-items: flex-start;
  column-gap: 25px;
  padding-top: 100px;
}
@media (max-width: 767px) {
  .cid-uTdopjH2g6 .items-wrap {
    flex-wrap: wrap;
    row-gap: 12px;
  }
}
@media (max-width: 575px) {
  .cid-uTdopjH2g6 .items-wrap {
    padding-top: 50px;
  }
}
.cid-uTdopjH2g6 .item-wrap {
  width: max-content;
  max-width: calc(50% - 25px/2);
}
@media (max-width: 767px) {
  .cid-uTdopjH2g6 .item-wrap {
    width: 100%;
    max-width: 100%;
  }
}
.cid-uTdopjH2g6 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 0;
  color: #303030;
}
.cid-uTdopjH2g6 .list li {
  position: relative;
  padding-left: 32px;
}
.cid-uTdopjH2g6 .list li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background: url("../../../assets/images/icon.png");
  background-size: 100% 100%;
}
.cid-uTdopjH2g6 .list li:not(:first-child) {
  margin-top: 12px;
}
.cid-uTdopjH2g6 .img-wrap {
  width: 100%;
  height: 100%;
}
.cid-uTdopjH2g6 .img-wrap img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tPRi6kJx1H {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tPRi6kJx1H .mbr-section-title {
  color: #ffffff;
}
.cid-tPRi6kJx1H .line {
  width: 100%;
  height: 2px;
  background: currentColor;
  margin-bottom: 8rem;
}
.cid-tPRi6kJx1H .d-flex {
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-tPRi6kJx1H .d-flex {
    justify-content: center;
  }
}
.cid-tPRi6kJx1H .col-lg-4 {
  display: flex;
  align-items: flex-end;
}
.cid-tPRi6kJx1H .link-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tPRi6kJx1H .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 767px) {
  .cid-tPRi6kJx1H .link-wrapper {
    justify-content: center;
  }
}
.cid-tPRi6kJx1H .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tPRi6kJx1H .link,
.cid-tPRi6kJx1H .link-icon {
  color: #ffffff;
}
.cid-tPRi6kJx1H .mbr-text,
.cid-tPRi6kJx1H .line {
  color: #303030;
}
.cid-tPRi6kJx1H .mbr-section-title,
.cid-tPRi6kJx1H .line {
  color: #303030;
}
.cid-tPRi6kJx1H .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPRi6kJx1H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPRi6kJx1H .link,
.cid-tPRi6kJx1H .link-icon,
.cid-tPRi6kJx1H .line {
  color: #303030;
}
.cid-tTwdWhtZY8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tTwdWhtZY8 nav.navbar {
  position: fixed;
}
.cid-tTwdWhtZY8 .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-tTwdWhtZY8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tTwdWhtZY8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tTwdWhtZY8 .dropdown-item:hover,
.cid-tTwdWhtZY8 .dropdown-item:focus {
  background: #ff9370 !important;
  color: white !important;
}
.cid-tTwdWhtZY8 .dropdown-item:hover span {
  color: white;
}
.cid-tTwdWhtZY8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tTwdWhtZY8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tTwdWhtZY8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tTwdWhtZY8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tTwdWhtZY8 .nav-link {
  position: relative;
}
.cid-tTwdWhtZY8 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tTwdWhtZY8 .container {
    flex-wrap: nowrap;
  }
}
.cid-tTwdWhtZY8 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tTwdWhtZY8 .dropdown-menu,
.cid-tTwdWhtZY8 .navbar.opened {
  background: #1a1a1a !important;
}
.cid-tTwdWhtZY8 .nav-item:focus,
.cid-tTwdWhtZY8 .nav-link:focus {
  outline: none;
}
.cid-tTwdWhtZY8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tTwdWhtZY8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tTwdWhtZY8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tTwdWhtZY8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tTwdWhtZY8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tTwdWhtZY8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tTwdWhtZY8 .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #1a1a1a;
}
.cid-tTwdWhtZY8 .navbar.opened {
  transition: all 0.3s;
}
.cid-tTwdWhtZY8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tTwdWhtZY8 .navbar .navbar-logo img {
  width: auto;
}
.cid-tTwdWhtZY8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tTwdWhtZY8 .navbar.collapsed {
  justify-content: center;
}
.cid-tTwdWhtZY8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tTwdWhtZY8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tTwdWhtZY8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTwdWhtZY8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tTwdWhtZY8 .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-tTwdWhtZY8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTwdWhtZY8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tTwdWhtZY8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tTwdWhtZY8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tTwdWhtZY8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTwdWhtZY8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTwdWhtZY8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tTwdWhtZY8 .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-tTwdWhtZY8 .navbar .navbar-logo img {
    height: 1rem !important;
  }
  .cid-tTwdWhtZY8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTwdWhtZY8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tTwdWhtZY8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tTwdWhtZY8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tTwdWhtZY8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tTwdWhtZY8 .navbar.navbar-short {
  min-height: 80px;
}
.cid-tTwdWhtZY8 .navbar.navbar-short .navbar-logo img {
  height: 1rem !important;
}
.cid-tTwdWhtZY8 .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-tTwdWhtZY8 .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tTwdWhtZY8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tTwdWhtZY8 .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tTwdWhtZY8 .navbar-brand {
    margin-right: 14px;
  }
}
.cid-tTwdWhtZY8 .dropdown-item.active,
.cid-tTwdWhtZY8 .dropdown-item:active {
  background-color: transparent;
}
.cid-tTwdWhtZY8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tTwdWhtZY8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTwdWhtZY8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTwdWhtZY8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a1a1a;
}
.cid-tTwdWhtZY8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tTwdWhtZY8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTwdWhtZY8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tTwdWhtZY8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tTwdWhtZY8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tTwdWhtZY8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tTwdWhtZY8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tTwdWhtZY8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tTwdWhtZY8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tTwdWhtZY8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tTwdWhtZY8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tTwdWhtZY8 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tTwdWhtZY8 .icons-menu {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tTwdWhtZY8 .navbar {
    height: 80px;
  }
  .cid-tTwdWhtZY8 .navbar.opened {
    height: auto;
  }
  .cid-tTwdWhtZY8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tTwdWhtZY8 .nav-item {
  opacity: 0.7;
  background: transparent;
  border-radius: 12px;
  transition: 0.5s all;
  color: #ffffff;
}
.cid-tTwdWhtZY8 .nav-item:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}
.cid-tTwdWhtZY8 .nav-item .nav-link {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tTwdWhtZY8 .mbr-section-btn {
    margin-left: auto;
    max-width: 30%;
  }
}
@media (max-width: 575px) {
  .cid-tTwdWhtZY8 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tTwdWhtZY8 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tTwdWhtZY8 .mbr-section-btn .btn {
  padding: 12px 22px;
  min-height: 40px;
}
.cid-tSS6WaMb5K {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tSS6WaMb5K .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSS6WaMb5K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSS6WaMb5K .container-fluid {
  max-width: 100%;
}
.cid-tSS6WaMb5K .cards-row {
  row-gap: 30px;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media (min-width: 992px) {
  .cid-tSS6WaMb5K .card {
    width: 20% !important;
  }
}
.cid-tSS6WaMb5K .mbr-iconfont {
  font-size: 104px;
  color: #ffffff;
  transition: opacity 0.15s ease-out;
  opacity: 0.4;
}
@media (max-width: 991px) {
  .cid-tSS6WaMb5K .mbr-iconfont {
    font-size: 84px;
  }
}
.cid-tSS6WaMb5K .card-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.cid-tSS6WaMb5K .card-wrapper:hover .mbr-iconfont {
  opacity: 1;
}
.cid-tSS6WaMb5K .card-box {
  padding-top: 20px;
}
.cid-tSS6WaMb5K .card-title {
  color: #303030;
  text-align: center;
}
.cid-tPKUBvBF4c {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tPKUBvBF4c .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPKUBvBF4c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPKUBvBF4c b,
.cid-tPKUBvBF4c strong {
  font-weight: 900;
}
@media (min-width: 992px) {
  .cid-tPKUBvBF4c img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tPKUBvBF4c img {
    padding-bottom: 2rem;
  }
}
.cid-tPKUBvBF4c .row {
  align-items: center;
}
.cid-tPKUBvBF4c .mbr-section-title {
  color: #17003b;
  text-align: center;
}
.cid-tPKUBvBF4c .mbr-text,
.cid-tPKUBvBF4c .mbr-section-btn {
  color: #17003b;
  text-align: center;
}
.cid-tPKUBvBF4c .mbr-section-subtitle {
  color: #17003b;
  text-align: center;
}
.cid-tPKViUJpCf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tPKViUJpCf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPKViUJpCf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPKViUJpCf b,
.cid-tPKViUJpCf strong {
  font-weight: 900;
}
.cid-tPKViUJpCf .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tPKViUJpCf img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tPKViUJpCf img {
    padding-bottom: 2rem;
  }
}
.cid-tPKViUJpCf .row {
  align-items: center;
}
.cid-tPKViUJpCf .mbr-section-title {
  color: #17003b;
  text-align: center;
}
.cid-tPKViUJpCf .mbr-text,
.cid-tPKViUJpCf .mbr-section-btn {
  color: #17003b;
  text-align: center;
}
.cid-tPKViUJpCf .mbr-section-subtitle {
  color: #17003b;
  text-align: center;
}
.cid-tPKVjo47Yj {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tPKVjo47Yj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPKVjo47Yj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPKVjo47Yj b,
.cid-tPKVjo47Yj strong {
  font-weight: 900;
}
@media (min-width: 992px) {
  .cid-tPKVjo47Yj img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tPKVjo47Yj img {
    padding-bottom: 2rem;
  }
}
.cid-tPKVjo47Yj .row {
  align-items: center;
}
.cid-tPKVjo47Yj .mbr-section-title {
  color: #17003b;
  text-align: center;
}
.cid-tPKVjo47Yj .mbr-text,
.cid-tPKVjo47Yj .mbr-section-btn {
  color: #17003b;
  text-align: center;
}
.cid-tPKVjo47Yj .mbr-section-subtitle {
  color: #17003b;
  text-align: center;
}
.cid-uBie6EfjbR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uBie6EfjbR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBie6EfjbR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBie6EfjbR b,
.cid-uBie6EfjbR strong {
  font-weight: 900;
}
.cid-uBie6EfjbR .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uBie6EfjbR img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-uBie6EfjbR img {
    padding-bottom: 2rem;
  }
}
.cid-uBie6EfjbR .row {
  align-items: center;
}
.cid-uBie6EfjbR .mbr-section-title {
  color: #17003b;
  text-align: center;
}
.cid-uBie6EfjbR .mbr-text,
.cid-uBie6EfjbR .mbr-section-btn {
  color: #17003b;
  text-align: center;
}
.cid-uBie6EfjbR .mbr-section-subtitle {
  color: #17003b;
  text-align: center;
}
.cid-uMvht0TV5a {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uMvht0TV5a .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMvht0TV5a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMvht0TV5a b,
.cid-uMvht0TV5a strong {
  font-weight: 900;
}
@media (min-width: 992px) {
  .cid-uMvht0TV5a img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-uMvht0TV5a img {
    padding-bottom: 2rem;
  }
}
.cid-uMvht0TV5a .row {
  align-items: center;
}
.cid-uMvht0TV5a .mbr-section-title {
  color: #17003b;
  text-align: center;
}
.cid-uMvht0TV5a .mbr-text,
.cid-uMvht0TV5a .mbr-section-btn {
  color: #17003b;
  text-align: center;
}
.cid-uMvht0TV5a .mbr-section-subtitle {
  color: #17003b;
  text-align: center;
}
.cid-tTwdWhtZY8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tTwdWhtZY8 nav.navbar {
  position: fixed;
}
.cid-tTwdWhtZY8 .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-tTwdWhtZY8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tTwdWhtZY8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tTwdWhtZY8 .dropdown-item:hover,
.cid-tTwdWhtZY8 .dropdown-item:focus {
  background: #ff9370 !important;
  color: white !important;
}
.cid-tTwdWhtZY8 .dropdown-item:hover span {
  color: white;
}
.cid-tTwdWhtZY8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tTwdWhtZY8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tTwdWhtZY8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tTwdWhtZY8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tTwdWhtZY8 .nav-link {
  position: relative;
}
.cid-tTwdWhtZY8 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tTwdWhtZY8 .container {
    flex-wrap: nowrap;
  }
}
.cid-tTwdWhtZY8 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tTwdWhtZY8 .dropdown-menu,
.cid-tTwdWhtZY8 .navbar.opened {
  background: #1a1a1a !important;
}
.cid-tTwdWhtZY8 .nav-item:focus,
.cid-tTwdWhtZY8 .nav-link:focus {
  outline: none;
}
.cid-tTwdWhtZY8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tTwdWhtZY8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tTwdWhtZY8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tTwdWhtZY8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tTwdWhtZY8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tTwdWhtZY8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tTwdWhtZY8 .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #1a1a1a;
}
.cid-tTwdWhtZY8 .navbar.opened {
  transition: all 0.3s;
}
.cid-tTwdWhtZY8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tTwdWhtZY8 .navbar .navbar-logo img {
  width: auto;
}
.cid-tTwdWhtZY8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tTwdWhtZY8 .navbar.collapsed {
  justify-content: center;
}
.cid-tTwdWhtZY8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tTwdWhtZY8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tTwdWhtZY8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTwdWhtZY8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tTwdWhtZY8 .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-tTwdWhtZY8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTwdWhtZY8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tTwdWhtZY8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tTwdWhtZY8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tTwdWhtZY8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTwdWhtZY8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTwdWhtZY8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tTwdWhtZY8 .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-tTwdWhtZY8 .navbar .navbar-logo img {
    height: 1rem !important;
  }
  .cid-tTwdWhtZY8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTwdWhtZY8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tTwdWhtZY8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tTwdWhtZY8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tTwdWhtZY8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tTwdWhtZY8 .navbar.navbar-short {
  min-height: 80px;
}
.cid-tTwdWhtZY8 .navbar.navbar-short .navbar-logo img {
  height: 1rem !important;
}
.cid-tTwdWhtZY8 .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-tTwdWhtZY8 .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tTwdWhtZY8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tTwdWhtZY8 .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tTwdWhtZY8 .navbar-brand {
    margin-right: 14px;
  }
}
.cid-tTwdWhtZY8 .dropdown-item.active,
.cid-tTwdWhtZY8 .dropdown-item:active {
  background-color: transparent;
}
.cid-tTwdWhtZY8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tTwdWhtZY8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTwdWhtZY8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTwdWhtZY8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a1a1a;
}
.cid-tTwdWhtZY8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tTwdWhtZY8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTwdWhtZY8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tTwdWhtZY8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tTwdWhtZY8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tTwdWhtZY8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tTwdWhtZY8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tTwdWhtZY8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tTwdWhtZY8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tTwdWhtZY8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tTwdWhtZY8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tTwdWhtZY8 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tTwdWhtZY8 .icons-menu {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tTwdWhtZY8 .navbar {
    height: 80px;
  }
  .cid-tTwdWhtZY8 .navbar.opened {
    height: auto;
  }
  .cid-tTwdWhtZY8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tTwdWhtZY8 .nav-item {
  opacity: 0.7;
  background: transparent;
  border-radius: 12px;
  transition: 0.5s all;
  color: #ffffff;
}
.cid-tTwdWhtZY8 .nav-item:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}
.cid-tTwdWhtZY8 .nav-item .nav-link {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tTwdWhtZY8 .mbr-section-btn {
    margin-left: auto;
    max-width: 30%;
  }
}
@media (max-width: 575px) {
  .cid-tTwdWhtZY8 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tTwdWhtZY8 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tTwdWhtZY8 .mbr-section-btn .btn {
  padding: 12px 22px;
  min-height: 40px;
}
.cid-tPKODwB7dL {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tPKODwB7dL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPKODwB7dL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPKODwB7dL .mbr-section-head {
  width: 100%;
  margin-bottom: 30px;
}
.cid-tPKODwB7dL .mbr-section-title {
  color: #515151;
  margin-bottom: 0;
  text-align: center;
}
.cid-tPKODwB7dL .mbr-section-subtitle {
  color: #303030;
  margin-top: 16px;
}
@media (max-width: 991px) {
  .cid-tPKODwB7dL .col-text {
    margin-bottom: 50px;
  }
}
.cid-tPKODwB7dL .mbr-text {
  color: #303030;
  margin-bottom: 35px;
}
.cid-tPKODwB7dL .items-wrap {
  display: flex;
  align-items: flex-start;
  column-gap: 50px;
}
@media (max-width: 575px) {
  .cid-tPKODwB7dL .items-wrap {
    flex-wrap: wrap;
    row-gap: 27px;
  }
}
.cid-tPKODwB7dL .item-wrap {
  width: calc(50% - 25px);
}
@media (max-width: 575px) {
  .cid-tPKODwB7dL .item-wrap {
    width: 100%;
  }
}
.cid-tPKODwB7dL .item-title {
  color: #303030;
  margin-bottom: 18px;
}
.cid-tPKODwB7dL .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 0;
  color: #303030;
}
.cid-tPKODwB7dL .item-text {
  margin-bottom: 6px;
}
.cid-tPKODwB7dL .form-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
.cid-tPKODwB7dL form {
  width: 100%;
}
.cid-tPKODwB7dL form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
  z-index: 2;
}
.cid-tPKODwB7dL form p {
  color: #353535;
}
.cid-tPKODwB7dL form .form-group {
  margin-top: 0 !important;
  margin-bottom: 18px !important;
}
.cid-tPKODwB7dL form .form-control {
  height: 44px;
  border: none !important;
  border-bottom: 2px solid #303030 !important;
  background: transparent;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 5px 0;
  font-size: 19px;
  line-height: 28px;
  color: #303030;
  font-weight: 400;
  transition: .3s;
}
.cid-tPKODwB7dL form .form-control::-webkit-input-placeholder {
  color: #303030;
}
.cid-tPKODwB7dL form .form-control::-moz-placeholder {
  color: #303030;
}
.cid-tPKODwB7dL form .form-control:-moz-placeholder {
  color: #303030;
}
.cid-tPKODwB7dL form .form-control:-ms-input-placeholder {
  color: #303030;
}
.cid-tPKODwB7dL form select {
  color: #303030 !important;
}
.cid-tPKODwB7dL form textarea {
  height: 140px !important;
  min-height: 140px !important;
  padding: 5px 0;
  resize: none;
}
.cid-tPKODwB7dL form textarea::-webkit-input-placeholder {
  color: #303030 !important;
}
.cid-tPKODwB7dL form textarea::-moz-placeholder {
  color: #303030 !important;
}
.cid-tPKODwB7dL form textarea:-moz-placeholder {
  color: #303030 !important;
}
.cid-tPKODwB7dL form textarea:-ms-input-placeholder {
  color: #303030 !important;
}
.cid-tPKODwB7dL form input,
.cid-tPKODwB7dL form textarea {
  transition: .3s all;
}
.cid-tPKODwB7dL form input:active,
.cid-tPKODwB7dL form textarea:active,
.cid-tPKODwB7dL form input:focus,
.cid-tPKODwB7dL form textarea:focus {
  background-color: transparent !important;
  border-color: #303030 !important;
  outline: none !important;
}
.cid-tPKODwB7dL form input:active::-webkit-input-placeholder,
.cid-tPKODwB7dL form textarea:active::-webkit-input-placeholder,
.cid-tPKODwB7dL form input:focus::-webkit-input-placeholder,
.cid-tPKODwB7dL form textarea:focus::-webkit-input-placeholder {
  color: #303030 !important;
}
.cid-tPKODwB7dL form input:active::-moz-placeholder,
.cid-tPKODwB7dL form textarea:active::-moz-placeholder,
.cid-tPKODwB7dL form input:focus::-moz-placeholder,
.cid-tPKODwB7dL form textarea:focus::-moz-placeholder {
  color: #303030 !important;
}
.cid-tPKODwB7dL form input:active:-moz-placeholder,
.cid-tPKODwB7dL form textarea:active:-moz-placeholder,
.cid-tPKODwB7dL form input:focus:-moz-placeholder,
.cid-tPKODwB7dL form textarea:focus:-moz-placeholder {
  color: #303030 !important;
}
.cid-tPKODwB7dL form input:active:-ms-input-placeholder,
.cid-tPKODwB7dL form textarea:active:-ms-input-placeholder,
.cid-tPKODwB7dL form input:focus:-ms-input-placeholder,
.cid-tPKODwB7dL form textarea:focus:-ms-input-placeholder {
  color: #303030 !important;
}
.cid-tPKODwB7dL form .row {
  flex-wrap: wrap;
  margin-left: -8px !important;
  margin-right: -8px !important;
}
.cid-tPKODwB7dL form .row [class*=col] {
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.cid-tPKODwB7dL form label {
  width: 100%;
  color: #303030;
  margin-bottom: 6px;
}
.cid-tPKODwB7dL form .form-check label {
  color: #303030;
}
.cid-tPKODwB7dL form .form-check-input {
  border-color: #303030 !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tPKODwB7dL form .form-check-input:focus,
.cid-tPKODwB7dL form .form-check-input:hover {
  background-color: #303030 !important;
  border-color: #303030 !important;
}
.cid-tPKODwB7dL form .form-check-input:checked {
  border-color: #303030 !important;
  background-color: #303030 !important;
}
.cid-tTwdWhtZY8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tTwdWhtZY8 nav.navbar {
  position: fixed;
}
.cid-tTwdWhtZY8 .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-tTwdWhtZY8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tTwdWhtZY8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tTwdWhtZY8 .dropdown-item:hover,
.cid-tTwdWhtZY8 .dropdown-item:focus {
  background: #ff9370 !important;
  color: white !important;
}
.cid-tTwdWhtZY8 .dropdown-item:hover span {
  color: white;
}
.cid-tTwdWhtZY8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tTwdWhtZY8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tTwdWhtZY8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tTwdWhtZY8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tTwdWhtZY8 .nav-link {
  position: relative;
}
.cid-tTwdWhtZY8 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tTwdWhtZY8 .container {
    flex-wrap: nowrap;
  }
}
.cid-tTwdWhtZY8 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tTwdWhtZY8 .dropdown-menu,
.cid-tTwdWhtZY8 .navbar.opened {
  background: #1a1a1a !important;
}
.cid-tTwdWhtZY8 .nav-item:focus,
.cid-tTwdWhtZY8 .nav-link:focus {
  outline: none;
}
.cid-tTwdWhtZY8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tTwdWhtZY8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tTwdWhtZY8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tTwdWhtZY8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tTwdWhtZY8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tTwdWhtZY8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tTwdWhtZY8 .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #1a1a1a;
}
.cid-tTwdWhtZY8 .navbar.opened {
  transition: all 0.3s;
}
.cid-tTwdWhtZY8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tTwdWhtZY8 .navbar .navbar-logo img {
  width: auto;
}
.cid-tTwdWhtZY8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tTwdWhtZY8 .navbar.collapsed {
  justify-content: center;
}
.cid-tTwdWhtZY8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tTwdWhtZY8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tTwdWhtZY8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTwdWhtZY8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tTwdWhtZY8 .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-tTwdWhtZY8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTwdWhtZY8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tTwdWhtZY8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tTwdWhtZY8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tTwdWhtZY8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTwdWhtZY8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTwdWhtZY8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tTwdWhtZY8 .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-tTwdWhtZY8 .navbar .navbar-logo img {
    height: 1rem !important;
  }
  .cid-tTwdWhtZY8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTwdWhtZY8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tTwdWhtZY8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tTwdWhtZY8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tTwdWhtZY8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tTwdWhtZY8 .navbar.navbar-short {
  min-height: 80px;
}
.cid-tTwdWhtZY8 .navbar.navbar-short .navbar-logo img {
  height: 1rem !important;
}
.cid-tTwdWhtZY8 .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-tTwdWhtZY8 .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tTwdWhtZY8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tTwdWhtZY8 .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tTwdWhtZY8 .navbar-brand {
    margin-right: 14px;
  }
}
.cid-tTwdWhtZY8 .dropdown-item.active,
.cid-tTwdWhtZY8 .dropdown-item:active {
  background-color: transparent;
}
.cid-tTwdWhtZY8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tTwdWhtZY8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTwdWhtZY8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTwdWhtZY8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a1a1a;
}
.cid-tTwdWhtZY8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tTwdWhtZY8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTwdWhtZY8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tTwdWhtZY8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tTwdWhtZY8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tTwdWhtZY8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tTwdWhtZY8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tTwdWhtZY8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tTwdWhtZY8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tTwdWhtZY8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tTwdWhtZY8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tTwdWhtZY8 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tTwdWhtZY8 .icons-menu {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tTwdWhtZY8 .navbar {
    height: 80px;
  }
  .cid-tTwdWhtZY8 .navbar.opened {
    height: auto;
  }
  .cid-tTwdWhtZY8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tTwdWhtZY8 .nav-item {
  opacity: 0.7;
  background: transparent;
  border-radius: 12px;
  transition: 0.5s all;
  color: #ffffff;
}
.cid-tTwdWhtZY8 .nav-item:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}
.cid-tTwdWhtZY8 .nav-item .nav-link {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tTwdWhtZY8 .mbr-section-btn {
    margin-left: auto;
    max-width: 30%;
  }
}
@media (max-width: 575px) {
  .cid-tTwdWhtZY8 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tTwdWhtZY8 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tTwdWhtZY8 .mbr-section-btn .btn {
  padding: 12px 22px;
  min-height: 40px;
}
.cid-tSS6B1XRnK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tSS6B1XRnK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSS6B1XRnK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSS6B1XRnK .container-fluid {
  max-width: 100%;
}
.cid-tSS6B1XRnK .cards-row {
  row-gap: 30px;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media (min-width: 992px) {
  .cid-tSS6B1XRnK .card {
    width: 20% !important;
  }
}
.cid-tSS6B1XRnK .mbr-iconfont {
  font-size: 104px;
  color: #ffffff;
  transition: opacity 0.15s ease-out;
  opacity: 0.4;
}
@media (max-width: 991px) {
  .cid-tSS6B1XRnK .mbr-iconfont {
    font-size: 84px;
  }
}
.cid-tSS6B1XRnK .card-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.cid-tSS6B1XRnK .card-wrapper:hover .mbr-iconfont {
  opacity: 1;
}
.cid-tSS6B1XRnK .card-box {
  padding-top: 20px;
}
.cid-tSS6B1XRnK .card-title {
  color: #303030;
  text-align: center;
}
.cid-tPKmkm3wg1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tPKmkm3wg1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPKmkm3wg1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPKmkm3wg1 .container-fluid {
  max-width: 100% !important;
}
.cid-tPKmkm3wg1 .img-wrap {
  width: 100%;
  height: 100%;
}
.cid-tPKmkm3wg1 .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tPKmkm3wg1 .text-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 55px 62px 70px 62px;
}
@media (max-width: 1439px) {
  .cid-tPKmkm3wg1 .text-wrap {
    padding: 40px 45px 50px 45px;
  }
}
@media (max-width: 991px) {
  .cid-tPKmkm3wg1 .text-wrap {
    padding: 25px 30px 30px 30px;
  }
}
@media (max-width: 767px) {
  .cid-tPKmkm3wg1 .text-wrap {
    padding: 40px 25px 45px 25px;
  }
}
.cid-tPKmkm3wg1 .mbr-section-title {
  color: #303030;
  text-align: center;
}
.cid-tPKmkm3wg1 .text-bottom {
  margin-top: auto;
  padding-top: 25px;
}
@media (max-width: 767px) {
  .cid-tPKmkm3wg1 .text-bottom {
    padding-top: 70px;
  }
}
@media (max-width: 575px) {
  .cid-tPKmkm3wg1 .text-bottom {
    padding-top: 50px;
  }
}
.cid-tPKmkm3wg1 .mbr-text {
  color: #303030;
}
.cid-tPKmkm3wg1 .mbr-section-btn {
  margin-top: 16px;
}
.cid-tPKmkm3wg1 .mbr-text,
.cid-tPKmkm3wg1 .mbr-section-btn {
  text-align: center;
}
.cid-tPRb0kICHX {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-tPRb0kICHX .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tPRb0kICHX .team-card:hover {
  transform: translateY(-10px);
}
.cid-tPRb0kICHX .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-tPRb0kICHX .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tPRb0kICHX .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tPRb0kICHX .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tPRb0kICHX .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-tPRb0kICHX .social-row {
  text-align: center;
}
.cid-tPRb0kICHX .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tPRb0kICHX .social-row .soc-item .mbr-iconfont {
  color: #121212;
  transition: all 0.3s;
}
.cid-tPRb0kICHX .social-row .soc-item .mbr-iconfont:hover {
  color: #ff9370;
}
.cid-tPRb0kICHX .mbr-role,
.cid-tPRb0kICHX .social-row {
  color: #707070;
}
.cid-tPRb0kICHX .mbr-section-subtitle {
  color: #707070;
  font-weight: 600;
}
.cid-tPRb0kICHX .card-title,
.cid-tPRb0kICHX .social-row {
  color: #121212;
}
.cid-tPRb0kICHX .mbr-section-text {
  color: #707070;
}
.cid-tPRb0kICHX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPRb0kICHX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u89xc6RiWQ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u89xc6RiWQ b,
.cid-u89xc6RiWQ strong {
  font-weight: 900;
}
.cid-u89xc6RiWQ img,
.cid-u89xc6RiWQ .item-img {
  width: 100%;
}
.cid-u89xc6RiWQ .item:focus,
.cid-u89xc6RiWQ span:focus {
  outline: none;
}
.cid-u89xc6RiWQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u89xc6RiWQ .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u89xc6RiWQ .item {
  padding: 0;
  margin: 0;
}
.cid-u89xc6RiWQ .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u89xc6RiWQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u89xc6RiWQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u89xc6RiWQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u89xc6RiWQ .mbr-section-title {
  color: #090f10;
}
.cid-u89xc6RiWQ .mbr-text,
.cid-u89xc6RiWQ .mbr-section-btn {
  text-align: center;
  color: #17003b;
}
.cid-u89xc6RiWQ .item-title {
  text-align: center;
}
.cid-u89xc6RiWQ .item-subtitle {
  text-align: left;
}
.cid-uSmaeiU9Gq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uSmaeiU9Gq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSmaeiU9Gq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSmaeiU9Gq .container-fluid {
  max-width: 100% !important;
}
.cid-uSmaeiU9Gq .img-wrap {
  width: 100%;
  height: 100%;
}
.cid-uSmaeiU9Gq .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uSmaeiU9Gq .text-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 55px 62px 70px 62px;
}
@media (max-width: 1439px) {
  .cid-uSmaeiU9Gq .text-wrap {
    padding: 40px 45px 50px 45px;
  }
}
@media (max-width: 991px) {
  .cid-uSmaeiU9Gq .text-wrap {
    padding: 25px 30px 30px 30px;
  }
}
@media (max-width: 767px) {
  .cid-uSmaeiU9Gq .text-wrap {
    padding: 40px 25px 45px 25px;
  }
}
.cid-uSmaeiU9Gq .mbr-section-title {
  color: #303030;
  text-align: center;
}
.cid-uSmaeiU9Gq .text-bottom {
  margin-top: auto;
  padding-top: 25px;
}
@media (max-width: 767px) {
  .cid-uSmaeiU9Gq .text-bottom {
    padding-top: 70px;
  }
}
@media (max-width: 575px) {
  .cid-uSmaeiU9Gq .text-bottom {
    padding-top: 50px;
  }
}
.cid-uSmaeiU9Gq .mbr-text {
  color: #303030;
}
.cid-uSmaeiU9Gq .mbr-section-btn {
  margin-top: 16px;
}
.cid-uSmaeiU9Gq .mbr-text,
.cid-uSmaeiU9Gq .mbr-section-btn {
  text-align: center;
}
.cid-tPM2ZHhTl5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tPM2ZHhTl5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPM2ZHhTl5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tPM2ZHhTl5 .container {
    padding: 0 16px;
  }
}
.cid-tPM2ZHhTl5 .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tPM2ZHhTl5 .text-wrapper {
    margin-bottom: 40px;
    height: auto;
  }
}
.cid-tPM2ZHhTl5 .text-wrapper .text-wrap .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tPM2ZHhTl5 .text-wrapper .text-wrap .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tPM2ZHhTl5 .text-wrapper .text-wrap .mbr-text {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-tPM2ZHhTl5 .text-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-tPM2ZHhTl5 .image-wrapper {
  position: relative;
  margin: 0 100px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1200px) {
  .cid-tPM2ZHhTl5 .image-wrapper {
    margin: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-tPM2ZHhTl5 .image-wrapper {
    margin: 0;
  }
}
.cid-tPM2ZHhTl5 .image-wrapper .image_1 {
  position: absolute;
  top: 0;
  right: 0;
  height: 180px;
  width: 180px;
  object-fit: cover;
  border-radius: 16px;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tPM2ZHhTl5 .image-wrapper .image_1 {
    position: static;
    margin-bottom: 20px;
  }
}
.cid-tPM2ZHhTl5 .image-wrapper .image_2 {
  position: absolute;
  top: 90px;
  left: 0;
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tPM2ZHhTl5 .image-wrapper .image_2 {
    position: static;
    margin-bottom: 20px;
  }
}
.cid-tPM2ZHhTl5 .image-wrapper .image_3 {
  width: 70%;
  height: 215px;
  margin-top: 65%;
  object-fit: cover;
  border-radius: 16px;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tPM2ZHhTl5 .image-wrapper .image_3 {
    position: static;
    margin-top: 0;
    margin-bottom: 20px;
  }
}
.cid-tPM2ZHhTl5 .image-wrapper .container-wrap {
  position: absolute;
  top: 1rem;
  left: 40px;
  height: 100%;
  width: 81%;
  border: 2px dashed #303030;
  border-top: 2px solid #303030;
  border-right: 2px solid #303030;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-tPM2ZHhTl5 .image-wrapper .container-wrap {
    display: none;
  }
}
.cid-tPM2ZHhTl5 .mbr-section-title {
  color: #ffffff;
}
.cid-tPM2ZHhTl5 .mbr-text {
  color: #303030;
  text-align: center;
}
.cid-tPM2ZHhTl5 .mbr-section-title,
.cid-tPM2ZHhTl5 .mbr-section-btn {
  color: #303030;
  text-align: center;
}
.cid-tPKuqJjQKc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tPKuqJjQKc .d-flex {
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-tPKuqJjQKc .d-flex {
    flex-direction: column;
  }
}
.cid-tPKuqJjQKc .item-img {
  margin-bottom: 1.5rem;
  overflow: hidden;
}
@media (min-width: 1700px) {
  .cid-tPKuqJjQKc .item {
    padding: 0 4rem;
  }
}
@media (max-width: 767px) {
  .cid-tPKuqJjQKc .item {
    margin-bottom: 2rem !important;
  }
}
.cid-tPKuqJjQKc .item,
.cid-tPKuqJjQKc .item-wrapper {
  margin: auto;
  cursor: pointer;
}
.cid-tPKuqJjQKc .item:hover img,
.cid-tPKuqJjQKc .item-wrapper:hover img {
  transform: scale(1.1);
}
.cid-tPKuqJjQKc img,
.cid-tPKuqJjQKc .item-img {
  transition: all 0.5s;
  width: 100%;
}
.cid-tPKuqJjQKc .item:focus,
.cid-tPKuqJjQKc span:focus {
  outline: none;
}
.cid-tPKuqJjQKc .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tPKuqJjQKc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tPKuqJjQKc .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tPKuqJjQKc .mbr-text,
.cid-tPKuqJjQKc .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tPKuqJjQKc .item-title {
  text-align: left;
  color: #dfcefd;
}
.cid-tPKuqJjQKc .item-subtitle {
  text-align: center;
  color: #625673;
}
.cid-tPKuqJjQKc .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tTwdWhtZY8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tTwdWhtZY8 nav.navbar {
  position: fixed;
}
.cid-tTwdWhtZY8 .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-tTwdWhtZY8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tTwdWhtZY8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tTwdWhtZY8 .dropdown-item:hover,
.cid-tTwdWhtZY8 .dropdown-item:focus {
  background: #ff9370 !important;
  color: white !important;
}
.cid-tTwdWhtZY8 .dropdown-item:hover span {
  color: white;
}
.cid-tTwdWhtZY8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tTwdWhtZY8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tTwdWhtZY8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tTwdWhtZY8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tTwdWhtZY8 .nav-link {
  position: relative;
}
.cid-tTwdWhtZY8 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tTwdWhtZY8 .container {
    flex-wrap: nowrap;
  }
}
.cid-tTwdWhtZY8 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tTwdWhtZY8 .dropdown-menu,
.cid-tTwdWhtZY8 .navbar.opened {
  background: #1a1a1a !important;
}
.cid-tTwdWhtZY8 .nav-item:focus,
.cid-tTwdWhtZY8 .nav-link:focus {
  outline: none;
}
.cid-tTwdWhtZY8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tTwdWhtZY8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tTwdWhtZY8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tTwdWhtZY8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tTwdWhtZY8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tTwdWhtZY8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tTwdWhtZY8 .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #1a1a1a;
}
.cid-tTwdWhtZY8 .navbar.opened {
  transition: all 0.3s;
}
.cid-tTwdWhtZY8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tTwdWhtZY8 .navbar .navbar-logo img {
  width: auto;
}
.cid-tTwdWhtZY8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tTwdWhtZY8 .navbar.collapsed {
  justify-content: center;
}
.cid-tTwdWhtZY8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tTwdWhtZY8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tTwdWhtZY8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTwdWhtZY8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tTwdWhtZY8 .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-tTwdWhtZY8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTwdWhtZY8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tTwdWhtZY8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tTwdWhtZY8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tTwdWhtZY8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTwdWhtZY8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTwdWhtZY8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tTwdWhtZY8 .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-tTwdWhtZY8 .navbar .navbar-logo img {
    height: 1rem !important;
  }
  .cid-tTwdWhtZY8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTwdWhtZY8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tTwdWhtZY8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tTwdWhtZY8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tTwdWhtZY8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tTwdWhtZY8 .navbar.navbar-short {
  min-height: 80px;
}
.cid-tTwdWhtZY8 .navbar.navbar-short .navbar-logo img {
  height: 1rem !important;
}
.cid-tTwdWhtZY8 .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-tTwdWhtZY8 .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tTwdWhtZY8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tTwdWhtZY8 .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tTwdWhtZY8 .navbar-brand {
    margin-right: 14px;
  }
}
.cid-tTwdWhtZY8 .dropdown-item.active,
.cid-tTwdWhtZY8 .dropdown-item:active {
  background-color: transparent;
}
.cid-tTwdWhtZY8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tTwdWhtZY8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTwdWhtZY8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTwdWhtZY8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a1a1a;
}
.cid-tTwdWhtZY8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tTwdWhtZY8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTwdWhtZY8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tTwdWhtZY8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tTwdWhtZY8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tTwdWhtZY8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tTwdWhtZY8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tTwdWhtZY8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tTwdWhtZY8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tTwdWhtZY8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tTwdWhtZY8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tTwdWhtZY8 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tTwdWhtZY8 .icons-menu {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tTwdWhtZY8 .navbar {
    height: 80px;
  }
  .cid-tTwdWhtZY8 .navbar.opened {
    height: auto;
  }
  .cid-tTwdWhtZY8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tTwdWhtZY8 .nav-item {
  opacity: 0.7;
  background: transparent;
  border-radius: 12px;
  transition: 0.5s all;
  color: #ffffff;
}
.cid-tTwdWhtZY8 .nav-item:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}
.cid-tTwdWhtZY8 .nav-item .nav-link {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tTwdWhtZY8 .mbr-section-btn {
    margin-left: auto;
    max-width: 30%;
  }
}
@media (max-width: 575px) {
  .cid-tTwdWhtZY8 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tTwdWhtZY8 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tTwdWhtZY8 .mbr-section-btn .btn {
  padding: 12px 22px;
  min-height: 40px;
}
.cid-tSS5nQm30l {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tSS5nQm30l .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSS5nQm30l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSS5nQm30l .container-fluid {
  max-width: 100%;
}
.cid-tSS5nQm30l .cards-row {
  row-gap: 30px;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media (min-width: 992px) {
  .cid-tSS5nQm30l .card {
    width: 20% !important;
  }
}
.cid-tSS5nQm30l .mbr-iconfont {
  font-size: 104px;
  color: #ffffff;
  transition: opacity 0.15s ease-out;
  opacity: 0.4;
}
@media (max-width: 991px) {
  .cid-tSS5nQm30l .mbr-iconfont {
    font-size: 84px;
  }
}
.cid-tSS5nQm30l .card-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.cid-tSS5nQm30l .card-wrapper:hover .mbr-iconfont {
  opacity: 1;
}
.cid-tSS5nQm30l .card-box {
  padding-top: 20px;
}
.cid-tSS5nQm30l .card-title {
  color: #303030;
  text-align: center;
}
.cid-tSuYlI75Pj {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/img-3047-1620x1080.jpeg");
}
.cid-tSuYlI75Pj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSuYlI75Pj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tSuYlI75Pj .col-content {
    text-align: center;
  }
}
.cid-tSuYlI75Pj .label-container {
  margin-bottom: 16px;
}
.cid-tSuYlI75Pj .label-text {
  color: #24262b;
}
.cid-tSuYlI75Pj .label-text-2 {
  color: #24262b;
}
.cid-tSuYlI75Pj .mbr-section-title {
  color: #515151;
  text-align: center;
}
.cid-tSuYlI75Pj .text-container {
  margin-top: 24px;
}
.cid-tSuYlI75Pj .mbr-section-subtitle {
  color: #24262b;
}
.cid-tSuYlI75Pj .mbr-text {
  color: #b79b6c;
}
.cid-tSuYlI75Pj .mbr-section-btn {
  margin-top: 28px;
}
.cid-tSRFwP1DAd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tSRFwP1DAd .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tSRFwP1DAd .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tSRFwP1DAd .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tSRFwP1DAd .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tSRFwP1DAd .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tSRFwP1DAd .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-tSRFwP1DAd .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-tSRFwP1DAd .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-tSRFwP1DAd .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-tSRFwP1DAd .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-tSRFwP1DAd .mbr-gallery-filter ul {
  display: block;
}
.cid-tSRFwP1DAd .mbr-gallery-filter ul li {
  position: relative;
}
.cid-tSRFwP1DAd .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-tSRFwP1DAd .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-tSRFwP1DAd .mbr-gallery-filter li.active::after,
.cid-tSRFwP1DAd .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-tSRFwP1DAd .mbr-gallery-title {
  transition: all.3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-tSRFwP1DAd .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-tSRFwP1DAd .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-tSRFwP1DAd .icon-focus:before {
  content: '\e95e';
}
.cid-tSRFwP1DAd .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-tSRFwP1DAd .mbr-section-title {
  margin: 0;
}
.cid-tSRFwP1DAd .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-tSRFwP1DAd .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-tSRFwalWy4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tSRFwalWy4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tSRFwalWy4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tSRFwalWy4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tSRFwalWy4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tSRFwalWy4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tSRFwalWy4 .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-tSRFwalWy4 .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-tSRFwalWy4 .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-tSRFwalWy4 .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-tSRFwalWy4 .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-tSRFwalWy4 .mbr-gallery-filter ul {
  display: block;
}
.cid-tSRFwalWy4 .mbr-gallery-filter ul li {
  position: relative;
}
.cid-tSRFwalWy4 .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-tSRFwalWy4 .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-tSRFwalWy4 .mbr-gallery-filter li.active::after,
.cid-tSRFwalWy4 .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-tSRFwalWy4 .mbr-gallery-title {
  transition: all.3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-tSRFwalWy4 .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-tSRFwalWy4 .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-tSRFwalWy4 .icon-focus:before {
  content: '\e95e';
}
.cid-tSRFwalWy4 .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-tSRFwalWy4 .mbr-section-title {
  margin: 0;
}
.cid-tSRFwalWy4 .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-tSRFwalWy4 .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-tV8Dtg5giO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tV8Dtg5giO .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tV8Dtg5giO .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tV8Dtg5giO .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tV8Dtg5giO .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tV8Dtg5giO .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tV8Dtg5giO .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-tV8Dtg5giO .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-tV8Dtg5giO .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-tV8Dtg5giO .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-tV8Dtg5giO .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-tV8Dtg5giO .mbr-gallery-filter ul {
  display: block;
}
.cid-tV8Dtg5giO .mbr-gallery-filter ul li {
  position: relative;
}
.cid-tV8Dtg5giO .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-tV8Dtg5giO .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-tV8Dtg5giO .mbr-gallery-filter li.active::after,
.cid-tV8Dtg5giO .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-tV8Dtg5giO .mbr-gallery-title {
  transition: all.3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-tV8Dtg5giO .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-tV8Dtg5giO .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-tV8Dtg5giO .icon-focus:before {
  content: '\e95e';
}
.cid-tV8Dtg5giO .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-tV8Dtg5giO .mbr-section-title {
  margin: 0;
}
.cid-tV8Dtg5giO .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-tV8Dtg5giO .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-tTwdWhtZY8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tTwdWhtZY8 nav.navbar {
  position: fixed;
}
.cid-tTwdWhtZY8 .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-tTwdWhtZY8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tTwdWhtZY8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tTwdWhtZY8 .dropdown-item:hover,
.cid-tTwdWhtZY8 .dropdown-item:focus {
  background: #ff9370 !important;
  color: white !important;
}
.cid-tTwdWhtZY8 .dropdown-item:hover span {
  color: white;
}
.cid-tTwdWhtZY8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tTwdWhtZY8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tTwdWhtZY8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tTwdWhtZY8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tTwdWhtZY8 .nav-link {
  position: relative;
}
.cid-tTwdWhtZY8 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tTwdWhtZY8 .container {
    flex-wrap: nowrap;
  }
}
.cid-tTwdWhtZY8 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tTwdWhtZY8 .dropdown-menu,
.cid-tTwdWhtZY8 .navbar.opened {
  background: #1a1a1a !important;
}
.cid-tTwdWhtZY8 .nav-item:focus,
.cid-tTwdWhtZY8 .nav-link:focus {
  outline: none;
}
.cid-tTwdWhtZY8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tTwdWhtZY8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tTwdWhtZY8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tTwdWhtZY8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tTwdWhtZY8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tTwdWhtZY8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tTwdWhtZY8 .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #1a1a1a;
}
.cid-tTwdWhtZY8 .navbar.opened {
  transition: all 0.3s;
}
.cid-tTwdWhtZY8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tTwdWhtZY8 .navbar .navbar-logo img {
  width: auto;
}
.cid-tTwdWhtZY8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tTwdWhtZY8 .navbar.collapsed {
  justify-content: center;
}
.cid-tTwdWhtZY8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tTwdWhtZY8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tTwdWhtZY8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTwdWhtZY8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tTwdWhtZY8 .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-tTwdWhtZY8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTwdWhtZY8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tTwdWhtZY8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tTwdWhtZY8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tTwdWhtZY8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTwdWhtZY8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTwdWhtZY8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tTwdWhtZY8 .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-tTwdWhtZY8 .navbar .navbar-logo img {
    height: 1rem !important;
  }
  .cid-tTwdWhtZY8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTwdWhtZY8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tTwdWhtZY8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tTwdWhtZY8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tTwdWhtZY8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tTwdWhtZY8 .navbar.navbar-short {
  min-height: 80px;
}
.cid-tTwdWhtZY8 .navbar.navbar-short .navbar-logo img {
  height: 1rem !important;
}
.cid-tTwdWhtZY8 .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-tTwdWhtZY8 .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tTwdWhtZY8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tTwdWhtZY8 .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tTwdWhtZY8 .navbar-brand {
    margin-right: 14px;
  }
}
.cid-tTwdWhtZY8 .dropdown-item.active,
.cid-tTwdWhtZY8 .dropdown-item:active {
  background-color: transparent;
}
.cid-tTwdWhtZY8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tTwdWhtZY8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTwdWhtZY8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTwdWhtZY8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a1a1a;
}
.cid-tTwdWhtZY8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tTwdWhtZY8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTwdWhtZY8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tTwdWhtZY8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tTwdWhtZY8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tTwdWhtZY8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tTwdWhtZY8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tTwdWhtZY8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tTwdWhtZY8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tTwdWhtZY8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tTwdWhtZY8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tTwdWhtZY8 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tTwdWhtZY8 .icons-menu {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tTwdWhtZY8 .navbar {
    height: 80px;
  }
  .cid-tTwdWhtZY8 .navbar.opened {
    height: auto;
  }
  .cid-tTwdWhtZY8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tTwdWhtZY8 .nav-item {
  opacity: 0.7;
  background: transparent;
  border-radius: 12px;
  transition: 0.5s all;
  color: #ffffff;
}
.cid-tTwdWhtZY8 .nav-item:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}
.cid-tTwdWhtZY8 .nav-item .nav-link {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tTwdWhtZY8 .mbr-section-btn {
    margin-left: auto;
    max-width: 30%;
  }
}
@media (max-width: 575px) {
  .cid-tTwdWhtZY8 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tTwdWhtZY8 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tTwdWhtZY8 .mbr-section-btn .btn {
  padding: 12px 22px;
  min-height: 40px;
}
.cid-tTwdWhtZY8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tTwdWhtZY8 nav.navbar {
  position: fixed;
}
.cid-tTwdWhtZY8 .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-tTwdWhtZY8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tTwdWhtZY8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tTwdWhtZY8 .dropdown-item:hover,
.cid-tTwdWhtZY8 .dropdown-item:focus {
  background: #ff9370 !important;
  color: white !important;
}
.cid-tTwdWhtZY8 .dropdown-item:hover span {
  color: white;
}
.cid-tTwdWhtZY8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tTwdWhtZY8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tTwdWhtZY8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tTwdWhtZY8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tTwdWhtZY8 .nav-link {
  position: relative;
}
.cid-tTwdWhtZY8 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tTwdWhtZY8 .container {
    flex-wrap: nowrap;
  }
}
.cid-tTwdWhtZY8 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tTwdWhtZY8 .dropdown-menu,
.cid-tTwdWhtZY8 .navbar.opened {
  background: #1a1a1a !important;
}
.cid-tTwdWhtZY8 .nav-item:focus,
.cid-tTwdWhtZY8 .nav-link:focus {
  outline: none;
}
.cid-tTwdWhtZY8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tTwdWhtZY8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tTwdWhtZY8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tTwdWhtZY8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tTwdWhtZY8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tTwdWhtZY8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tTwdWhtZY8 .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #1a1a1a;
}
.cid-tTwdWhtZY8 .navbar.opened {
  transition: all 0.3s;
}
.cid-tTwdWhtZY8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tTwdWhtZY8 .navbar .navbar-logo img {
  width: auto;
}
.cid-tTwdWhtZY8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tTwdWhtZY8 .navbar.collapsed {
  justify-content: center;
}
.cid-tTwdWhtZY8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tTwdWhtZY8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tTwdWhtZY8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTwdWhtZY8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tTwdWhtZY8 .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-tTwdWhtZY8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTwdWhtZY8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tTwdWhtZY8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tTwdWhtZY8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tTwdWhtZY8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTwdWhtZY8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTwdWhtZY8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tTwdWhtZY8 .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-tTwdWhtZY8 .navbar .navbar-logo img {
    height: 1rem !important;
  }
  .cid-tTwdWhtZY8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTwdWhtZY8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tTwdWhtZY8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tTwdWhtZY8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tTwdWhtZY8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tTwdWhtZY8 .navbar.navbar-short {
  min-height: 80px;
}
.cid-tTwdWhtZY8 .navbar.navbar-short .navbar-logo img {
  height: 1rem !important;
}
.cid-tTwdWhtZY8 .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-tTwdWhtZY8 .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tTwdWhtZY8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tTwdWhtZY8 .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tTwdWhtZY8 .navbar-brand {
    margin-right: 14px;
  }
}
.cid-tTwdWhtZY8 .dropdown-item.active,
.cid-tTwdWhtZY8 .dropdown-item:active {
  background-color: transparent;
}
.cid-tTwdWhtZY8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tTwdWhtZY8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTwdWhtZY8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTwdWhtZY8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a1a1a;
}
.cid-tTwdWhtZY8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tTwdWhtZY8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTwdWhtZY8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tTwdWhtZY8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tTwdWhtZY8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tTwdWhtZY8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tTwdWhtZY8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tTwdWhtZY8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tTwdWhtZY8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tTwdWhtZY8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tTwdWhtZY8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tTwdWhtZY8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tTwdWhtZY8 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tTwdWhtZY8 .icons-menu {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tTwdWhtZY8 .navbar {
    height: 80px;
  }
  .cid-tTwdWhtZY8 .navbar.opened {
    height: auto;
  }
  .cid-tTwdWhtZY8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tTwdWhtZY8 .nav-item {
  opacity: 0.7;
  background: transparent;
  border-radius: 12px;
  transition: 0.5s all;
  color: #ffffff;
}
.cid-tTwdWhtZY8 .nav-item:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}
.cid-tTwdWhtZY8 .nav-item .nav-link {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tTwdWhtZY8 .mbr-section-btn {
    margin-left: auto;
    max-width: 30%;
  }
}
@media (max-width: 575px) {
  .cid-tTwdWhtZY8 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tTwdWhtZY8 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tTwdWhtZY8 .mbr-section-btn .btn {
  padding: 12px 22px;
  min-height: 40px;
}
.cid-ttjgHy7mtK {
  background-image: url("../../../assets/images/web-1920x1080.jpg");
}
.cid-ttjgHy7mtK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttjgHy7mtK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttjgHy7mtK .mbr-section-title {
  color: #FFFFFF;
  text-align: center;
}
.cid-ttjgHy7mtK .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
  text-align: center;
}
.cid-ttjgHy7mtK .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-ttjgHy7mtK .mbr-section-btn {
  margin-top: 18px;
}
.cid-ttjgHy7mtK .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-ttjgHy7mtK .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-ttjgHy7mtK .mbr-text,
.cid-ttjgHy7mtK .mbr-section-btn {
  text-align: center;
}
.cid-tSiKCCorT7 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #203129;
}
.cid-tSiKCCorT7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSiKCCorT7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSiKCCorT7 .mbr-section-title {
  color: #fff;
  text-align: center;
}
.cid-tSiKCCorT7 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tSiKCCorT7 .main-text {
  max-width: 60%;
  margin-top: 1.5rem;
  color: #fff;
}
@media (max-width: 767px) {
  .cid-tSiKCCorT7 .main-text {
    max-width: 100%;
    margin-top: 1rem;
  }
}
.cid-tSiKCCorT7 .text-transform-container {
  margin-top: 4.25rem;
}
@media (max-width: 767px) {
  .cid-tSiKCCorT7 .text-transform-container {
    margin-top: 1.5rem;
  }
}
.cid-tSiKCCorT7 .text-transform-container:hover .mbr-text {
  color: #fff1af;
}
.cid-tSiKCCorT7 .text-transform-container:hover .mbr-text a {
  color: #fff1af !important;
}
.cid-tSiKCCorT7 .text-transform-container:hover .iconfont-wrapper .mbr-iconfont {
  color: #fff1af;
}
.cid-tSiKCCorT7 .mbr-text {
  color: #fcdb42;
}
.cid-tSiKCCorT7 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 76px;
  color: #fcdb42;
  margin-left: 0.75rem;
}
.cid-tSiKCCorT7 .mbr-text,
.cid-tSiKCCorT7 .mbr-section-btn {
  text-align: center;
  color: #f6f6f6;
}
.cid-ttjhGLPdzJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-ttjhGLPdzJ .row {
  margin-left: -30px;
  margin-right: -30px;
  justify-content: center;
  row-gap: 60px;
}
.cid-ttjhGLPdzJ .row > [class*="col"] {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-ttjhGLPdzJ .row {
    row-gap: 40px;
  }
}
.cid-ttjhGLPdzJ .mbr-section-head {
  padding-bottom: 50px;
}
.cid-ttjhGLPdzJ .mbr-section-title {
  color: #9b8db7;
}
.cid-ttjhGLPdzJ .mbr-section-subtitle {
  color: #303030;
  margin-top: 16px;
}
.cid-ttjhGLPdzJ .item-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.cid-ttjhGLPdzJ .item-img img {
  width: 100%;
  aspect-ratio: calc(131 / (59 * 2));
  object-fit: cover;
  transform: scale(1.01);
  transition: all .5s ease;
}
.cid-ttjhGLPdzJ .mbr-section-btn {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  transition: all .5s ease;
  margin: 0 !important;
}
@media (max-width: 575px) {
  .cid-ttjhGLPdzJ .mbr-section-btn {
    transform: translateY(-100%);
  }
}
.cid-ttjhGLPdzJ .mbr-section-btn .btn {
  width: 100%;
  margin: 0 !important;
  padding: 10px 34px 10px !important;
}
.cid-ttjhGLPdzJ .mbr-section-btn .btn:after {
  bottom: 11px !important;
  width: 50% !important;
}
.cid-ttjhGLPdzJ .item-wrapper {
  width: 100%;
  height: 100%;
  padding: 0;
  transition: .3s all;
}
.cid-ttjhGLPdzJ .item-wrapper:hover .item-img img {
  transform: scale(1.05);
}
.cid-ttjhGLPdzJ .item-wrapper:hover .mbr-section-btn {
  transform: translateY(-100%);
}
.cid-ttjhGLPdzJ .item-content {
  margin-top: 32px;
}
.cid-ttjhGLPdzJ .item-title {
  color: #303030;
}
.cid-ttjhGLPdzJ .mbr-text {
  margin-top: 11px;
  color: #303030;
  text-align: center;
}
.cid-ttjhGLPdzJ .item-number {
  color: #9b8db7;
  margin-top: 22px;
}
.cid-ttjhGLPdzJ .item-border {
  width: 100%;
  height: 4px;
  margin-top: 3px;
  border-radius: 5px;
  background-color: #eaeaea;
}
.cid-ttjhGLPdzJ .item-text-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
  margin-top: 16px;
}
.cid-ttjhGLPdzJ .item-text {
  color: #9b8db7;
}
.cid-ttji8t0rQL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/292250749-419390806868407-4713949645605918363-n-1998x2048.jpeg");
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 650px;
}
.cid-ttji8t0rQL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttji8t0rQL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1024px) {
  .cid-ttji8t0rQL {
    min-height: 750px;
  }
}
.cid-ttji8t0rQL .mbr-section-title {
  color: #FFFFFF;
  text-align: center;
}
.cid-ttji8t0rQL .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 16px;
}
.cid-ttji8t0rQL .mbr-text {
  color: #FFFFFF;
  margin-top: 16px;
}
.cid-ttji8t0rQL .mbr-section-btn {
  margin-top: 18px;
}
.cid-ttji8t0rQL .mbr-text,
.cid-ttji8t0rQL .mbr-section-btn {
  text-align: center;
}
.cid-tPERdVWLfH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tPERdVWLfH p {
  text-align: center;
}
.cid-tPERdVWLfH .text-copyright {
  width: 100%;
  margin-bottom: 0;
}
.cid-tPERdVWLfH .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tPERdVWLfH .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #000000;
}
.cid-tPERdVWLfH .logo-footer {
  line-height: normal;
}
.cid-tPERdVWLfH .copyright .list-inline {
  margin-bottom: 0;
}
.cid-tPERdVWLfH .copyright .list-inline .list-inline-item {
  margin: 10px 15px;
}
@media (max-width: 767px) {
  .cid-tPERdVWLfH .copyright .list-inline .list-inline-item {
    margin: 10px 6px;
  }
}
.cid-tPERdVWLfH li {
  overflow: hidden;
}
.cid-tPERdVWLfH .icon-transition span {
  display: block;
}
.cid-tPERdVWLfH .icon-transition:hover span {
  animation: 0.3s linear top;
}
.cid-tPERdVWLfH .list-inline-item a {
  display: block;
}
.cid-tPERdVWLfH .list-inline-item:hover a {
  animation: 0.3s linear top;
}
@keyframes top {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-100%);
  }
  51% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tPERdVWLfH .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPERdVWLfH .media-container-row {
  align-items: center;
  justify-content: space-between;
}
.cid-tPERdVWLfH .icon-transition span {
  color: #ffffff;
  display: block;
  text-align: center;
  height: 2rem;
  border-radius: 50%;
  line-height: 2rem;
  width: 2rem;
  transition: all 0.3s ease-out 0s;
  font-size: 1.5rem;
}
.cid-tPERdVWLfH .social-media {
  display: flex;
  justify-content: flex-end;
}
.cid-tPERdVWLfH .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-tPERdVWLfH .social-media ul li {
  padding: 4px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-tPERdVWLfH .logo-footer {
    text-align: center;
  }
  .cid-tPERdVWLfH .social-media {
    justify-content: center;
  }
}
