body {
  font-family: 'DM Sans', sans-serif;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.3rem;
  line-height: 1.3;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- 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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 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))));
  }
}
/* Buttons */
.btn {
  padding: 0.7rem 1.3rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #ffb82d !important;
}
.bg-success {
  background-color: #3d4659 !important;
}
.bg-info {
  background-color: #00d00f !important;
}
.bg-warning {
  background-color: #ff7f19 !important;
}
.bg-danger {
  background-color: #ff7f19 !important;
}
.btn-primary {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffb82d !important;
  border-color: #ffb82d !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #ffb82d !important;
  border-color: #ffb82d !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ffb82d !important;
  border-color: #ffb82d !important;
}
.btn-primary:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-primary:hover {
  color: black !important;
}
.btn-primary:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-secondary {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #18212f !important;
  border-color: #18212f !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #18212f !important;
  border-color: #18212f !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #18212f !important;
  border-color: #18212f !important;
}
.btn-secondary:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-secondary:hover {
  color: black !important;
}
.btn-secondary:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-info {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-info,
.btn-info:active {
  background-color: #00d00f !important;
  border-color: #00d00f !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #00d00f !important;
  border-color: #00d00f !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #00d00f !important;
  border-color: #00d00f !important;
}
.btn-info:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-info:hover {
  color: black !important;
}
.btn-info:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-success {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-success,
.btn-success:active {
  background-color: #3d4659 !important;
  border-color: #3d4659 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #3d4659 !important;
  border-color: #3d4659 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #3d4659 !important;
  border-color: #3d4659 !important;
}
.btn-success:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-success:hover {
  color: black !important;
}
.btn-success:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-warning {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-warning,
.btn-warning:active {
  background-color: #ff7f19 !important;
  border-color: #ff7f19 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #ff7f19 !important;
  border-color: #ff7f19 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ff7f19 !important;
  border-color: #ff7f19 !important;
}
.btn-warning:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-warning:hover {
  color: black !important;
}
.btn-warning:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-danger {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff7f19 !important;
  border-color: #ff7f19 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff7f19 !important;
  border-color: #ff7f19 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff7f19 !important;
  border-color: #ff7f19 !important;
}
.btn-danger:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-danger:hover {
  color: black !important;
}
.btn-danger:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-white {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-white,
.btn-white:active {
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
  color: #000000 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #000000 !important;
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #000000 !important;
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
}
.btn-white:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-white:hover {
  color: black !important;
}
.btn-white:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-white:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: #ffb82d;
  z-index: -1;
  transition: all 0.3s;
}
.btn-white:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-black {
  position: relative;
  z-index: 1;
  border: 0;
}
.btn-black,
.btn-black:active {
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
}
.btn-black:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-black:hover {
  color: black !important;
}
.btn-black:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffb82d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #d58d00 !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: #ffb82d !important;
  border-color: #ffb82d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #18212f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000000 !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: #18212f !important;
  border-color: #18212f !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #00d00f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #007909 !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: #00d00f !important;
  border-color: #00d00f !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #3d4659;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #1a1e26 !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: #3d4659 !important;
  border-color: #3d4659 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff7f19;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #c15600 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ff7f19 !important;
  border-color: #ff7f19 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff7f19;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #c15600 !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: #ff7f19 !important;
  border-color: #ff7f19 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #272727;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #272727 !important;
  border-color: #272727 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ffb82d !important;
}
.text-secondary {
  color: #18212f !important;
}
.text-success {
  color: #3d4659 !important;
}
.text-info {
  color: #00d00f !important;
}
.text-warning {
  color: #ff7f19 !important;
}
.text-danger {
  color: #ff7f19 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #272727 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #ffb82d !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #14161c !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #006a08 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #b24f00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #b24f00 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ffb82d;
}
.nav-tabs .nav-link:not(.active) {
  color: #272727;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #00d00f;
}
.alert-warning {
  background-color: #ff7f19;
}
.alert-danger {
  background-color: #ff7f19;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffb82d;
  border-color: #ffb82d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffb82d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fffdf9;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #7583a0;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #9dffa4;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fff1e5;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fff1e5;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ffb82d !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #ffb82d;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffb82d;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffb82d;
}
.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: #ffb82d;
  border-bottom-color: #ffb82d;
}
.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: #ffb82d !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: #18212f !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='%23ffb82d' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tJt8JTZusN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJt8JTZusN .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tJt8JTZusN .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tJt8JTZusN .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tJt8JTZusN .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tJt8JTZusN .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ffb82d;
  z-index: -1;
}
.cid-tJt8JTZusN nav.navbar {
  position: fixed;
}
.cid-tJt8JTZusN .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tJt8JTZusN .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tJt8JTZusN .nav-item {
    border: 0;
  }
}
.cid-tJt8JTZusN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tJt8JTZusN .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tJt8JTZusN .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tJt8JTZusN .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tJt8JTZusN .title-wrap:hover span {
  color: white;
}
.cid-tJt8JTZusN .title-wrap:hover:before {
  height: 100%;
}
.cid-tJt8JTZusN .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-tJt8JTZusN .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ffb82d;
}
.cid-tJt8JTZusN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJt8JTZusN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJt8JTZusN .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tJt8JTZusN .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tJt8JTZusN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJt8JTZusN .nav-link {
  position: relative;
}
.cid-tJt8JTZusN .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tJt8JTZusN .container {
    flex-wrap: nowrap;
  }
}
.cid-tJt8JTZusN .dropdown-menu,
.cid-tJt8JTZusN .navbar.opened {
  background: #ffffff !important;
}
.cid-tJt8JTZusN .nav-item:focus,
.cid-tJt8JTZusN .nav-link:focus {
  outline: none;
}
.cid-tJt8JTZusN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJt8JTZusN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJt8JTZusN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJt8JTZusN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJt8JTZusN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJt8JTZusN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJt8JTZusN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tJt8JTZusN .navbar.opened {
  transition: all 0.3s;
}
.cid-tJt8JTZusN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJt8JTZusN .navbar .navbar-logo img {
  width: auto;
}
.cid-tJt8JTZusN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJt8JTZusN .navbar.collapsed {
  justify-content: center;
}
.cid-tJt8JTZusN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJt8JTZusN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJt8JTZusN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tJt8JTZusN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJt8JTZusN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJt8JTZusN .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-tJt8JTZusN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJt8JTZusN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJt8JTZusN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJt8JTZusN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJt8JTZusN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJt8JTZusN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJt8JTZusN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJt8JTZusN .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-tJt8JTZusN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJt8JTZusN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJt8JTZusN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJt8JTZusN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJt8JTZusN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJt8JTZusN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tJt8JTZusN .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJt8JTZusN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJt8JTZusN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJt8JTZusN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tJt8JTZusN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJt8JTZusN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJt8JTZusN .dropdown-item.active,
.cid-tJt8JTZusN .dropdown-item:active {
  background-color: transparent;
}
.cid-tJt8JTZusN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJt8JTZusN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJt8JTZusN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJt8JTZusN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tJt8JTZusN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJt8JTZusN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJt8JTZusN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJt8JTZusN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJt8JTZusN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJt8JTZusN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tJt8JTZusN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJt8JTZusN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJt8JTZusN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJt8JTZusN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJt8JTZusN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJt8JTZusN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJt8JTZusN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJt8JTZusN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJt8JTZusN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tJt8JTZusN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tJt8JTZusN .navbar {
    height: 70px;
  }
  .cid-tJt8JTZusN .navbar.opened {
    height: auto;
  }
  .cid-tJt8JTZusN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tJt8JTZusN .navbar-caption-wrap,
.cid-tJt8JTZusN .title-wrap {
  color: #272727;
}
.cid-t3rKdK4uyp .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #ffb82d;
}
.cid-t3rKdK4uyp .card-wrapper {
  min-height: 300px;
  transition: all 0.3s;
  padding: 3rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-t3rKdK4uyp .card-wrapper {
    padding: 3rem 2rem;
  }
}
.cid-t3rKdK4uyp .icon1 {
  color: #ffffff;
}
.cid-t3rKdK4uyp .icon2 {
  color: #ffffff;
}
.cid-t3rKdK4uyp .icon3 {
  color: #272727;
}
.cid-t3rKdK4uyp .icon4 {
  color: #272727;
}
.cid-t3rKdK4uyp .big {
  min-height: 100%;
}
.cid-t3rKdK4uyp .mbr-section-btn {
  max-width: 200px;
}
.cid-t3rKdK4uyp .mbr-section-btn .btn {
  margin: 2px;
}
@media (max-width: 992px) {
  .cid-t3rKdK4uyp .mbr-section-btn {
    text-align: center;
    max-width: 100%;
    margin: auto;
  }
}
.cid-t3rKdK4uyp .card1 {
  background-image: url("../../../assets/images/adobestock-594896573987-2000x1333.webp");
  background-size: cover;
  background-position: center;
  padding: 6rem;
}
.cid-t3rKdK4uyp .card1 .mbr-iconfont {
  font-size: 16.5rem;
}
@media (max-width: 767px) {
  .cid-t3rKdK4uyp .card1 {
    padding: 3rem 1rem;
  }
}
.cid-t3rKdK4uyp .card-box {
  z-index: 2;
}
.cid-t3rKdK4uyp .card2 {
  background-image: url("../../../assets/images/inspector-african-american-worker-factory-2000x1334.webp");
  background-size: auto 110%;
  position: relative;
  background-position: center;
}
.cid-t3rKdK4uyp .card2 .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin: auto;
  margin-bottom: 0rem;
}
.cid-t3rKdK4uyp .card2:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ff7f19;
  z-index: 1;
  opacity: 1;
}
.cid-t3rKdK4uyp .card2:hover {
  background-size: auto 115%;
}
.cid-t3rKdK4uyp .card2:hover:before {
  opacity: 0.3;
}
.cid-t3rKdK4uyp .card3 {
  background-image: url("../../../assets/images/concept-architects-architect-working-blueprint-office-2000x1333.webp");
  background-size: auto 110%;
  position: relative;
  background-position: center;
}
.cid-t3rKdK4uyp .card3 .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin: auto;
  margin-bottom: 0rem;
}
.cid-t3rKdK4uyp .card3:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffb82d;
  transition: all 0.3s;
  z-index: 1;
  opacity: 1;
}
.cid-t3rKdK4uyp .card3:hover {
  background-size: auto 115%;
}
.cid-t3rKdK4uyp .card3:hover:before {
  opacity: 0.3;
}
.cid-t3rKdK4uyp .card4 {
  background-image: url("../../../assets/images/crop-architect-opening-blueprint-2000x1335.webp");
  background-size: auto 110%;
  position: relative;
  background-position: center;
}
.cid-t3rKdK4uyp .card4:hover {
  background-size: auto 115%;
}
.cid-t3rKdK4uyp .card4:hover:before {
  opacity: 0;
}
.cid-t3rKdK4uyp .card4 .mbr-iconfont {
  background: #ffb82d;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: auto;
  margin-bottom: 1rem;
}
.cid-t3rKdK4uyp .card-title,
.cid-t3rKdK4uyp .card-box {
  color: #ffffff;
}
.cid-t3rKdK4uyp .card2-title {
  color: #ffffff;
}
.cid-t3rKdK4uyp .card3-title {
  color: #272727;
}
.cid-t3rKdK4uyp .card4-title {
  color: #000000;
}
.cid-t3rKdK4uyp .card1-title {
  color: #ffffff;
  text-align: left;
}
.cid-t3rKdK4uyp .card2-text {
  color: #ffffff;
}
.cid-t3rKdK4uyp .card4-text {
  color: #ffffff;
}
.cid-tJtpH0y9ui {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: linear-gradient(315deg, #ffffff 10%, #ffffff 100%) !important;
}
.cid-tJtpH0y9ui .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtpH0y9ui .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtpH0y9ui .card-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 8px 0;
}
@media (max-width: 767px) {
  .cid-tJtpH0y9ui .card-box {
    max-width: 510px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 15px 0;
  }
}
.cid-tJtpH0y9ui .label-container {
  padding: 5px 16px;
  border-radius: 100px;
  background: #ffb82d;
}
.cid-tJtpH0y9ui .label-text {
  color: #ffffff;
}
.cid-tJtpH0y9ui .card-text {
  color: #353535;
  margin-left: 15px;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-tJtpH0y9ui .card-text {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}
.cid-tJtpH0y9ui .link-text {
  color: #C4CFDE;
  margin-left: 30px;
}
@media (max-width: 767px) {
  .cid-tJtpH0y9ui .link-text {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}
.cid-tJtpH0y9ui .link-text a {
  display: flex;
  align-items: center;
}
.cid-tJtpH0y9ui .link-text a .mbr-iconfont {
  font-size: inherit;
  color: inherit;
  margin-left: 6px;
}
.cid-tJtpH0y9ui .link-text a:hover {
  color: #ffb82d !important;
}
.cid-tJttVeg0qV {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/adobestock-594896573987-2000x1333.webp");
}
.cid-tJttVeg0qV .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #18212f, #ffb82d);
}
.cid-tJttVeg0qV .mbr-text,
.cid-tJttVeg0qV .mbr-section-btn {
  color: #ffffff;
}
.cid-tJttVeg0qV img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tJttVeg0qV img {
    width: 96%;
  }
}
.cid-tJttVeg0qV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJttVeg0qV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtu2qTJyK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tJtu2qTJyK .mbr-text {
  color: #767676;
  text-align: center;
}
.cid-tJtu2qTJyK .mbr-title {
  color: #18212f;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tJtu2qTJyK .md-pb {
    margin-bottom: 2rem;
  }
}
.cid-tJtu2qTJyK h3 {
  margin-bottom: 1.2rem;
}
@media (max-width: 992px) {
  .cid-tJtu2qTJyK .card {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJtu2qTJyK .mbr-text {
    padding-right: 2.5rem;
  }
}
@media (min-width: 767px) {
  .cid-tJtu2qTJyK .row {
    margin: 0;
  }
}
.cid-tJtqApwRMY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #101112;
}
.cid-tJtqApwRMY .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tJtqApwRMY .align-center {
    text-align: center;
  }
  .cid-tJtqApwRMY .wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tJtqApwRMY .block-btn {
  display: flex;
}
.cid-tJtqApwRMY .mbr-section-subtitle {
  margin-bottom: 2rem;
}
.cid-tJtqApwRMY h1 {
  margin-bottom: 0;
}
.cid-tJtqApwRMY .wrapper {
  background-color: #101112;
  border-radius: 4px;
}
@media (min-width: 767px) {
  .cid-tJtqApwRMY .container {
    padding: 0 3rem;
  }
  .cid-tJtqApwRMY .wrapper {
    padding: 3.8rem 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tJtqApwRMY .block-btn {
    justify-content: center;
  }
  .cid-tJtqApwRMY .text-block {
    text-align: center;
  }
  .cid-tJtqApwRMY .mbr-section-title {
    text-align: center;
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJtqApwRMY .block-btn {
    justify-content: flex-end;
  }
  .cid-tJtqApwRMY .btn {
    border-radius: 2px;
    margin-right: 0rem;
  }
}
.cid-tJtqApwRMY .btn-white:hover {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.cid-tJtqApwRMY .btn-white:hover::before {
  background-color: #000000 !important;
}
.cid-tJtqApwRMY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtqApwRMY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtnCfyyXZ {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #fdfcfa;
}
.cid-tJtnCfyyXZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtnCfyyXZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtnCfyyXZ .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tJtnCfyyXZ .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tJtnCfyyXZ .container {
    padding: 0;
  }
}
.cid-tJtnCfyyXZ .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tJtnCfyyXZ .title-wrapper {
    padding: 0 16px;
  }
}
.cid-tJtnCfyyXZ .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tJtnCfyyXZ .title-wrapper .mbr-text {
  margin: 30px 0 0 0;
}
.cid-tJtnCfyyXZ .mbr-section-title {
  color: #18212f;
  text-align: center;
}
.cid-tJtnCfyyXZ .mbr-text {
  color: #263652;
}
.cid-tJtnpfgnDM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJtnpfgnDM .row {
  justify-content: center;
}
.cid-tJtnpfgnDM img,
.cid-tJtnpfgnDM .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tJtnpfgnDM .item:focus,
.cid-tJtnpfgnDM span:focus {
  outline: none;
}
.cid-tJtnpfgnDM .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tJtnpfgnDM .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  min-height: 370px;
  padding: 35px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-tJtnpfgnDM .item-wrapper {
    min-height: 463px;
  }
}
.cid-tJtnpfgnDM .item-wrapper .btn {
  padding: 10px 12px;
}
.cid-tJtnpfgnDM .item-wrapper .btn span {
  color: #222222;
  margin: 0 8px;
}
.cid-tJtnpfgnDM .item-wrapper .btn-primary:hover {
  background-color: #222222 !important;
  border-color: #222222 !important;
}
.cid-tJtnpfgnDM .item-wrapper .btn-primary:hover span {
  color: #ffb82d !important;
}
@media (min-width: 768px) {
  .cid-tJtnpfgnDM .item-wrapper:hover img {
    transform: scale(1);
  }
}
.cid-tJtnpfgnDM .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cid-tJtnpfgnDM .item-img img {
  width: 100%;
  transform: scale(1.2);
  transform-style: preserve-3d;
  transition: 2s;
}
.cid-tJtnpfgnDM .img-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.2;
  pointer-events: none;
}
.cid-tJtnpfgnDM .item-content {
  position: relative;
  z-index: 3;
  padding: 0;
}
.cid-tJtnpfgnDM .mbr-section-title {
  color: #222222;
  width: 100%;
}
.cid-tJtnpfgnDM .mbr-text {
  color: #ffffff;
}
.cid-tJtnpfgnDM .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-tJtnpfgnDM .item-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tJtnpfgnDM .icon-wrapper {
  margin-bottom: 1rem;
}
.cid-tJtnpfgnDM .icon-wrapper .mbr-iconfont {
  font-size: 33px;
  color: #ffffff;
}
.cid-tJtnpfgnDM .mbr-section-head {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tJtnpfgnDM .mbr-section-head {
    padding-left: 30px;
    padding-right: 6rem;
    margin-bottom: 2rem;
  }
}
.cid-tJtnpfgnDM .mbr-text,
.cid-tJtnpfgnDM .mbr-section-btn {
  color: #ffb82d;
}
.cid-tJtnhVwkQY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJtnhVwkQY .row {
  justify-content: center;
}
.cid-tJtnhVwkQY img,
.cid-tJtnhVwkQY .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tJtnhVwkQY .item:focus,
.cid-tJtnhVwkQY span:focus {
  outline: none;
}
.cid-tJtnhVwkQY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tJtnhVwkQY .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  min-height: 370px;
  padding: 35px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-tJtnhVwkQY .item-wrapper {
    min-height: 463px;
  }
}
.cid-tJtnhVwkQY .item-wrapper .btn {
  padding: 10px 12px;
}
.cid-tJtnhVwkQY .item-wrapper .btn span {
  color: #222222;
  margin: 0 8px;
}
.cid-tJtnhVwkQY .item-wrapper .btn-primary:hover {
  background-color: #222222 !important;
  border-color: #222222 !important;
}
.cid-tJtnhVwkQY .item-wrapper .btn-primary:hover span {
  color: #ffb82d !important;
}
@media (min-width: 768px) {
  .cid-tJtnhVwkQY .item-wrapper:hover img {
    transform: scale(1);
  }
}
.cid-tJtnhVwkQY .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cid-tJtnhVwkQY .item-img img {
  width: 100%;
  transform: scale(1.2);
  transform-style: preserve-3d;
  transition: 2s;
}
.cid-tJtnhVwkQY .img-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.2;
  pointer-events: none;
}
.cid-tJtnhVwkQY .item-content {
  position: relative;
  z-index: 3;
  padding: 0;
}
.cid-tJtnhVwkQY .mbr-section-title {
  color: #222222;
  width: 100%;
}
.cid-tJtnhVwkQY .mbr-text {
  color: #ffffff;
}
.cid-tJtnhVwkQY .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-tJtnhVwkQY .item-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tJtnhVwkQY .icon-wrapper {
  margin-bottom: 1rem;
}
.cid-tJtnhVwkQY .icon-wrapper .mbr-iconfont {
  font-size: 33px;
  color: #ffffff;
}
.cid-tJtnhVwkQY .mbr-section-head {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tJtnhVwkQY .mbr-section-head {
    padding-left: 30px;
    padding-right: 6rem;
    margin-bottom: 2rem;
  }
}
.cid-tJtnhVwkQY .mbr-text,
.cid-tJtnhVwkQY .mbr-section-btn {
  color: #ffb82d;
}
.cid-tJtnlr942S {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJtnlr942S .row {
  justify-content: center;
}
.cid-tJtnlr942S img,
.cid-tJtnlr942S .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tJtnlr942S .item:focus,
.cid-tJtnlr942S span:focus {
  outline: none;
}
.cid-tJtnlr942S .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tJtnlr942S .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  min-height: 370px;
  padding: 35px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-tJtnlr942S .item-wrapper {
    min-height: 463px;
  }
}
.cid-tJtnlr942S .item-wrapper .btn {
  padding: 10px 12px;
}
.cid-tJtnlr942S .item-wrapper .btn span {
  color: #222222;
  margin: 0 8px;
}
.cid-tJtnlr942S .item-wrapper .btn-primary:hover {
  background-color: #222222 !important;
  border-color: #222222 !important;
}
.cid-tJtnlr942S .item-wrapper .btn-primary:hover span {
  color: #ffb82d !important;
}
@media (min-width: 768px) {
  .cid-tJtnlr942S .item-wrapper:hover img {
    transform: scale(1);
  }
}
.cid-tJtnlr942S .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cid-tJtnlr942S .item-img img {
  width: 100%;
  transform: scale(1.2);
  transform-style: preserve-3d;
  transition: 2s;
}
.cid-tJtnlr942S .img-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.2;
  pointer-events: none;
}
.cid-tJtnlr942S .item-content {
  position: relative;
  z-index: 3;
  padding: 0;
}
.cid-tJtnlr942S .mbr-section-title {
  color: #222222;
  width: 100%;
}
.cid-tJtnlr942S .mbr-text {
  color: #ffffff;
}
.cid-tJtnlr942S .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-tJtnlr942S .item-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tJtnlr942S .icon-wrapper {
  margin-bottom: 1rem;
}
.cid-tJtnlr942S .icon-wrapper .mbr-iconfont {
  font-size: 33px;
  color: #ffffff;
}
.cid-tJtnlr942S .mbr-section-head {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tJtnlr942S .mbr-section-head {
    padding-left: 30px;
    padding-right: 6rem;
    margin-bottom: 2rem;
  }
}
.cid-tJtnlr942S .mbr-text,
.cid-tJtnlr942S .mbr-section-btn {
  color: #ffb82d;
}
.cid-tJte3JLAs0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tJte3JLAs0 .mbr-iconfont {
  color: #ffb82d !important;
  font-size: 1.4rem !important;
  padding-right: 1rem;
  display: block;
}
.cid-tJte3JLAs0 .card-col {
  max-width: 450px;
  padding: 5rem 2rem;
}
.cid-tJte3JLAs0 .row {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media (min-width: 1700px) {
  .cid-tJte3JLAs0 .card-col {
    margin-right: 20rem;
  }
}
.cid-tJte3JLAs0 img {
  width: 100%;
}
.cid-tJte3JLAs0 .svg-col {
  overflow: hidden;
  padding: 0;
}
.cid-tJte3JLAs0 .container-fluid {
  position: relative;
}
.cid-tJte3JLAs0 .google-map {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  min-height: 15rem;
}
.cid-tJte3JLAs0 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tJte3JLAs0 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tJte3JLAs0 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tJte3JLAs0 .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-tJte3JLAs0 .item {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-tJte3JLAs0 .item h4 {
  margin: 0;
}
.cid-tJte3JLAs0 .card-wrapper {
  background: #101112;
  padding: 1.4rem 1.4rem;
}
.cid-tJte3JLAs0 p {
  font-weight: 400;
}
.cid-tJte3JLAs0 .card-title,
.cid-tJte3JLAs0 .card-img {
  color: #ffb82d;
}
@media (max-width: 767px) {
  .cid-tJte3JLAs0 .google-map {
    position: relative;
    height: 20rem;
    padding-top: 1rem;
  }
  .cid-tJte3JLAs0 .card-col {
    padding: 2rem 1rem;
  }
}
.cid-tJte3JLAs0 H3 {
  color: #ffb82d;
}
.cid-tJte3JLAs0 .mbr-text {
  color: #ffffff;
}
.cid-tJte3JLAs0 H2 {
  color: #ffffff;
}
.cid-tJtbyljThq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tJtbyljThq .row {
  justify-content: center;
  padding: 0 0.5rem;
}
.cid-tJtbyljThq img {
  transition: all 0.3s;
  height: 100%;
  object-fit: cover;
}
.cid-tJtbyljThq .item {
  padding: 0.5rem;
}
.cid-tJtbyljThq .item-wrapper {
  border-radius: 6px;
  height: 100%;
}
.cid-tJtbyljThq .mbr-iconfont {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: #ffffff;
  transition: all 0.3s;
  opacity: 0;
  font-size: 0rem;
}
.cid-tJtbyljThq .mbr-section-title {
  color: #18212f;
}
.cid-tJtbyljThq .item-img {
  position: relative;
  height: 100%;
}
.cid-tJtbyljThq .item-img:before {
  content: '';
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 100%;
  background: #ffb82d;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}
.cid-tJtbyljThq .item-img:hover:before {
  opacity: 0.6;
}
.cid-tJtbyljThq .item-img:hover img {
  transform: scale(1.1);
}
.cid-tJtbyljThq .item-img:hover .mbr-iconfont {
  opacity: 1;
  font-size: 1.5rem;
}
.cid-tJtbagcwUY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("../../../assets/images/adobestock-594896573987-2000x1333.webp");
}
.cid-tJtbagcwUY .item:focus,
.cid-tJtbagcwUY span:focus {
  outline: none;
}
.cid-tJtbagcwUY .item-wrapper {
  position: relative;
}
.cid-tJtbagcwUY .mbr-section-title {
  margin-bottom: 24px;
  color: #ffffff;
  text-align: center;
}
.cid-tJtbagcwUY .slide-content {
  position: relative;
  border-radius: 4px;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-tJtbagcwUY .mbr-text,
.cid-tJtbagcwUY .mbr-section-btn {
  text-align: left;
}
.cid-tJtbagcwUY .item-title {
  text-align: left;
}
.cid-tJtbagcwUY .item-subtitle {
  text-align: left;
}
.cid-tJtbagcwUY .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 23%;
  max-width: 596px;
}
@media (max-width: 768px) {
  .cid-tJtbagcwUY .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (max-width: 900px) {
  .cid-tJtbagcwUY .embla__slide {
    min-width: 60%;
  }
}
@media (max-width: 630px) {
  .cid-tJtbagcwUY .embla__slide {
    min-width: 375px;
  }
}
.cid-tJtbagcwUY .embla__button--next,
.cid-tJtbagcwUY .embla__button--prev {
  display: flex;
}
.cid-tJtbagcwUY .embla__button {
  background-color: rgba(17, 17, 17, 0.5);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 12px 0px;
  transition: all .3s;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 22px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-tJtbagcwUY .embla__button {
    display: none;
  }
}
.cid-tJtbagcwUY .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tJtbagcwUY .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJtbagcwUY .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tJtbagcwUY .embla__button:hover {
  background-color: #14142b;
}
.cid-tJtbagcwUY .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tJtbagcwUY .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tJtbagcwUY .embla {
  position: relative;
  width: 100%;
}
.cid-tJtbagcwUY .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-tJtbagcwUY .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tJtbagcwUY .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tJtbagcwUY .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tJtbagcwUY .title-block {
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
  padding-bottom: 56px;
  max-width: 715px;
  margin: auto;
}
.cid-tJtbagcwUY .shadow {
  border-radius: 8px;
  box-shadow: none !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
  padding: 24px;
  background-color: #ffffff;
}
.cid-tJtbagcwUY .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  display: inline;
  padding-right: 10px;
  padding-bottom: 15px;
}
.cid-tJtbagcwUY .card-title {
  color: #000000;
  transition: 0.35s;
  text-align: left;
  font-size: 14px;
}
.cid-tJtbagcwUY .card-text {
  color: #000000;
  text-align: center;
  font-size: 18px;
  margin-bottom: 15px;
}
.cid-tJtbagcwUY .margin {
  margin-right: 14px;
}
.cid-tJtbagcwUY .article {
  display: contents;
}
.cid-tJtbagcwUY .link-row {
  align-items: center;
}
.cid-tJtbagcwUY .iconfont-wrapper {
  text-align: left;
  margin-bottom: 32px;
  display: inline;
}
.cid-tJtbagcwUY .iconfont-wrapper .mbr-iconfont:before {
  font-size: 16px;
}
.cid-tJtbagcwUY .button-align {
  margin-top: 36px;
  text-align: center;
}
.cid-tJtbagcwUY .btn {
  margin-top: 20px;
}
.cid-tJtbagcwUY a.btn > span {
  margin-left: 0.5rem;
}
.cid-tJtbagcwUY img {
  border-radius: 50%;
  width: 44px;
  height: auto;
}
.cid-tJtbagcwUY .card-title1 {
  display: inline;
  font-size: 12px;
  color: #8b8d8d;
}
.cid-tJtbagcwUY .top {
  display: flex;
  align-items: center;
}
.cid-tJtbagcwUY .mbr-iconfont:before {
  font-size: 34px;
}
.cid-tJtbagcwUY .mbr-iconfont {
  width: auto;
  display: inline-flex;
  padding: 0;
  padding-right: 10px;
}
.cid-tJtbagcwUY .small-header {
  font-size: 12px;
  color: #8b8d8d;
}
.cid-tJtbagcwUY .mbr-text {
  font-size: 14px;
}
.cid-tJtbagcwUY .fl {
  display: flex;
  align-items: flex-start;
}
.cid-tJtbagcwUY .iconfont-wrapper .mbr-iconfont {
  padding-right: 0px;
}
.cid-tJtbagcwUY button .mbr-iconfont:before {
  font-size: 16px;
}
.cid-tJtbagcwUY button .mbr-iconfont {
  padding-right: 2px;
}
.cid-tJtbagcwUY a:hover {
  text-decoration: underline;
}
.cid-tJtbagcwUY .mbr-text a {
  color: #1c91ff !important;
}
.cid-tJtbagcwUY a {
  transition: all .3s;
}
.cid-tJtbagcwUY .mbr-text a:hover {
  color: #1c91ff !important;
}
@media (max-width: 576px) {
  .cid-tJtbagcwUY .embla__slide {
    min-width: 100%;
  }
}
.cid-tJt9Jreot2 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJt9Jreot2 .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tJt9Jreot2 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tJt9Jreot2 .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tJt9Jreot2 .row {
    text-align: center;
  }
  .cid-tJt9Jreot2 .row > div {
    margin: auto;
  }
  .cid-tJt9Jreot2 .social-row {
    justify-content: center;
  }
}
.cid-tJt9Jreot2 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tJt9Jreot2 .list {
  list-style: none;
  padding-left: 0;
  color: #18212f;
}
@media (max-width: 991px) {
  .cid-tJt9Jreot2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJt9Jreot2 .list {
    margin-bottom: 0rem;
  }
}
.cid-tJt9Jreot2 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tJt9Jreot2 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tJt9Jreot2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tJt9Jreot2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJt9Jreot2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t3rRY3ENQi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-t3rRY3ENQi .media-container-row .mbr-text {
  color: #18212f;
}
.cid-tJt8JTZusN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJt8JTZusN .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tJt8JTZusN .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tJt8JTZusN .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tJt8JTZusN .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tJt8JTZusN .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ffb82d;
  z-index: -1;
}
.cid-tJt8JTZusN nav.navbar {
  position: fixed;
}
.cid-tJt8JTZusN .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tJt8JTZusN .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tJt8JTZusN .nav-item {
    border: 0;
  }
}
.cid-tJt8JTZusN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tJt8JTZusN .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tJt8JTZusN .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tJt8JTZusN .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tJt8JTZusN .title-wrap:hover span {
  color: white;
}
.cid-tJt8JTZusN .title-wrap:hover:before {
  height: 100%;
}
.cid-tJt8JTZusN .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-tJt8JTZusN .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ffb82d;
}
.cid-tJt8JTZusN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJt8JTZusN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJt8JTZusN .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tJt8JTZusN .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tJt8JTZusN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJt8JTZusN .nav-link {
  position: relative;
}
.cid-tJt8JTZusN .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tJt8JTZusN .container {
    flex-wrap: nowrap;
  }
}
.cid-tJt8JTZusN .dropdown-menu,
.cid-tJt8JTZusN .navbar.opened {
  background: #ffffff !important;
}
.cid-tJt8JTZusN .nav-item:focus,
.cid-tJt8JTZusN .nav-link:focus {
  outline: none;
}
.cid-tJt8JTZusN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJt8JTZusN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJt8JTZusN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJt8JTZusN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJt8JTZusN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJt8JTZusN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJt8JTZusN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tJt8JTZusN .navbar.opened {
  transition: all 0.3s;
}
.cid-tJt8JTZusN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJt8JTZusN .navbar .navbar-logo img {
  width: auto;
}
.cid-tJt8JTZusN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJt8JTZusN .navbar.collapsed {
  justify-content: center;
}
.cid-tJt8JTZusN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJt8JTZusN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJt8JTZusN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tJt8JTZusN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJt8JTZusN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJt8JTZusN .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-tJt8JTZusN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJt8JTZusN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJt8JTZusN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJt8JTZusN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJt8JTZusN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJt8JTZusN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJt8JTZusN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJt8JTZusN .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-tJt8JTZusN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJt8JTZusN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJt8JTZusN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJt8JTZusN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJt8JTZusN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJt8JTZusN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tJt8JTZusN .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJt8JTZusN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJt8JTZusN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJt8JTZusN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tJt8JTZusN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJt8JTZusN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJt8JTZusN .dropdown-item.active,
.cid-tJt8JTZusN .dropdown-item:active {
  background-color: transparent;
}
.cid-tJt8JTZusN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJt8JTZusN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJt8JTZusN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJt8JTZusN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tJt8JTZusN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJt8JTZusN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJt8JTZusN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJt8JTZusN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJt8JTZusN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJt8JTZusN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tJt8JTZusN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJt8JTZusN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJt8JTZusN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJt8JTZusN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJt8JTZusN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJt8JTZusN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJt8JTZusN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJt8JTZusN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJt8JTZusN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tJt8JTZusN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tJt8JTZusN .navbar {
    height: 70px;
  }
  .cid-tJt8JTZusN .navbar.opened {
    height: auto;
  }
  .cid-tJt8JTZusN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tJt8JTZusN .navbar-caption-wrap,
.cid-tJt8JTZusN .title-wrap {
  color: #272727;
}
.cid-tJtCXQ9kEg {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/adobestock-594896573987-2000x1333.webp");
}
.cid-tJtCXQ9kEg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtCXQ9kEg .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-tJtCXQ9kEg .container {
    padding: 0 30px;
  }
}
.cid-tJtCXQ9kEg .row {
  justify-content: center;
}
.cid-tJtCXQ9kEg .title-wrapper {
  margin: 0 12%;
}
@media (max-width: 992px) {
  .cid-tJtCXQ9kEg .title-wrapper {
    margin: 0;
  }
}
.cid-tJtCXQ9kEg .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tJtCXQ9kEg .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-tJtCXQ9kEg .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tJtCXQ9kEg .text-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tJtCXQ9kEg .mbr-section-subtitle {
  color: #ffb82d;
  text-align: center;
}
.cid-tJtCXQ9kEg .mbr-section-title {
  color: #f1f4e9;
  text-align: center;
}
.cid-tJtCXQ9kEg .mbr-text {
  color: #f1f4e9;
}
.cid-tJtCXQ9kEg .mbr-name {
  color: #f1f4e9;
  text-align: center;
}
.cid-tJtD2g4DEH {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tJtD2g4DEH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtD2g4DEH .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-tJtD2g4DEH .container {
    padding: 0 30px;
  }
}
.cid-tJtD2g4DEH .image-wrapper {
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-tJtD2g4DEH .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tJtD2g4DEH .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tJtD2g4DEH .image-wrapper img {
    height: 300px;
  }
}
.cid-tJtD2g4DEH .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tJtD2g4DEH .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tJtD2g4DEH .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tJtD2g4DEH .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tJtD2g4DEH .mbr-section-subtitle {
  color: #212529;
}
.cid-tJtD2g4DEH .mbr-section-title {
  color: #212529;
}
.cid-tJtD2g4DEH .mbr-text {
  color: #212529;
}
.cid-tJtDGp14mZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJtDGp14mZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtDGp14mZ .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-tJtDGp14mZ .container {
    padding: 0 30px;
  }
}
.cid-tJtDGp14mZ .image-wrapper {
  margin-right: 80px;
  margin-right: 0;
  margin-left: 80px;
}
@media (max-width: 992px) {
  .cid-tJtDGp14mZ .image-wrapper {
    margin: 0 0 30px 0;
  }
}
@media (max-width: 992px) {
  .cid-tJtDGp14mZ .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tJtDGp14mZ .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tJtDGp14mZ .image-wrapper img {
    height: 300px;
  }
}
.cid-tJtDGp14mZ .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tJtDGp14mZ .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tJtDGp14mZ .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tJtDGp14mZ .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tJtDGp14mZ .mbr-section-subtitle {
  color: #212529;
}
.cid-tJtDGp14mZ .mbr-section-title {
  color: #212529;
}
.cid-tJtDGp14mZ .mbr-text {
  color: #212529;
}
.cid-tJtG5VI0FJ {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tJtG5VI0FJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtG5VI0FJ .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-tJtG5VI0FJ .container {
    padding: 0 30px;
  }
}
.cid-tJtG5VI0FJ .image-wrapper {
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-tJtG5VI0FJ .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tJtG5VI0FJ .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tJtG5VI0FJ .image-wrapper img {
    height: 300px;
  }
}
.cid-tJtG5VI0FJ .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tJtG5VI0FJ .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tJtG5VI0FJ .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tJtG5VI0FJ .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tJtG5VI0FJ .mbr-section-subtitle {
  color: #212529;
}
.cid-tJtG5VI0FJ .mbr-section-title {
  color: #212529;
}
.cid-tJtG5VI0FJ .mbr-text {
  color: #212529;
}
.cid-tJtFqHZaP5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #101112;
}
.cid-tJtFqHZaP5 .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tJtFqHZaP5 .align-center {
    text-align: center;
  }
  .cid-tJtFqHZaP5 .wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tJtFqHZaP5 .block-btn {
  display: flex;
}
.cid-tJtFqHZaP5 .mbr-section-subtitle {
  margin-bottom: 2rem;
}
.cid-tJtFqHZaP5 h1 {
  margin-bottom: 0;
}
.cid-tJtFqHZaP5 .wrapper {
  background-color: #101112;
  border-radius: 4px;
}
@media (min-width: 767px) {
  .cid-tJtFqHZaP5 .container {
    padding: 0 3rem;
  }
  .cid-tJtFqHZaP5 .wrapper {
    padding: 3.8rem 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tJtFqHZaP5 .block-btn {
    justify-content: center;
  }
  .cid-tJtFqHZaP5 .text-block {
    text-align: center;
  }
  .cid-tJtFqHZaP5 .mbr-section-title {
    text-align: center;
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJtFqHZaP5 .block-btn {
    justify-content: flex-end;
  }
  .cid-tJtFqHZaP5 .btn {
    border-radius: 2px;
    margin-right: 0rem;
  }
}
.cid-tJtFqHZaP5 .btn-white:hover {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.cid-tJtFqHZaP5 .btn-white:hover::before {
  background-color: #000000 !important;
}
.cid-tJtFqHZaP5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtFqHZaP5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJt9Jreot2 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJt9Jreot2 .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tJt9Jreot2 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tJt9Jreot2 .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tJt9Jreot2 .row {
    text-align: center;
  }
  .cid-tJt9Jreot2 .row > div {
    margin: auto;
  }
  .cid-tJt9Jreot2 .social-row {
    justify-content: center;
  }
}
.cid-tJt9Jreot2 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tJt9Jreot2 .list {
  list-style: none;
  padding-left: 0;
  color: #18212f;
}
@media (max-width: 991px) {
  .cid-tJt9Jreot2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJt9Jreot2 .list {
    margin-bottom: 0rem;
  }
}
.cid-tJt9Jreot2 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tJt9Jreot2 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tJt9Jreot2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tJt9Jreot2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJt9Jreot2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtGXB5nEy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJtGXB5nEy .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tJtGXB5nEy .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tJtGXB5nEy .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tJtGXB5nEy .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tJtGXB5nEy .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ffb82d;
  z-index: -1;
}
.cid-tJtGXB5nEy nav.navbar {
  position: fixed;
}
.cid-tJtGXB5nEy .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tJtGXB5nEy .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tJtGXB5nEy .nav-item {
    border: 0;
  }
}
.cid-tJtGXB5nEy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tJtGXB5nEy .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tJtGXB5nEy .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tJtGXB5nEy .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tJtGXB5nEy .title-wrap:hover span {
  color: white;
}
.cid-tJtGXB5nEy .title-wrap:hover:before {
  height: 100%;
}
.cid-tJtGXB5nEy .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-tJtGXB5nEy .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ffb82d;
}
.cid-tJtGXB5nEy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJtGXB5nEy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJtGXB5nEy .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tJtGXB5nEy .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tJtGXB5nEy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJtGXB5nEy .nav-link {
  position: relative;
}
.cid-tJtGXB5nEy .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tJtGXB5nEy .container {
    flex-wrap: nowrap;
  }
}
.cid-tJtGXB5nEy .dropdown-menu,
.cid-tJtGXB5nEy .navbar.opened {
  background: #ffffff !important;
}
.cid-tJtGXB5nEy .nav-item:focus,
.cid-tJtGXB5nEy .nav-link:focus {
  outline: none;
}
.cid-tJtGXB5nEy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJtGXB5nEy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJtGXB5nEy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJtGXB5nEy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJtGXB5nEy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJtGXB5nEy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJtGXB5nEy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tJtGXB5nEy .navbar.opened {
  transition: all 0.3s;
}
.cid-tJtGXB5nEy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJtGXB5nEy .navbar .navbar-logo img {
  width: auto;
}
.cid-tJtGXB5nEy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJtGXB5nEy .navbar.collapsed {
  justify-content: center;
}
.cid-tJtGXB5nEy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJtGXB5nEy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJtGXB5nEy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tJtGXB5nEy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJtGXB5nEy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJtGXB5nEy .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-tJtGXB5nEy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJtGXB5nEy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJtGXB5nEy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJtGXB5nEy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJtGXB5nEy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJtGXB5nEy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJtGXB5nEy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJtGXB5nEy .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-tJtGXB5nEy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJtGXB5nEy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJtGXB5nEy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJtGXB5nEy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJtGXB5nEy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJtGXB5nEy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tJtGXB5nEy .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJtGXB5nEy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJtGXB5nEy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJtGXB5nEy .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tJtGXB5nEy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJtGXB5nEy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJtGXB5nEy .dropdown-item.active,
.cid-tJtGXB5nEy .dropdown-item:active {
  background-color: transparent;
}
.cid-tJtGXB5nEy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJtGXB5nEy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJtGXB5nEy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJtGXB5nEy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tJtGXB5nEy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJtGXB5nEy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJtGXB5nEy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJtGXB5nEy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJtGXB5nEy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJtGXB5nEy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tJtGXB5nEy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJtGXB5nEy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJtGXB5nEy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJtGXB5nEy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJtGXB5nEy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJtGXB5nEy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJtGXB5nEy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJtGXB5nEy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJtGXB5nEy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tJtGXB5nEy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tJtGXB5nEy .navbar {
    height: 70px;
  }
  .cid-tJtGXB5nEy .navbar.opened {
    height: auto;
  }
  .cid-tJtGXB5nEy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tJtGXB5nEy .navbar-caption-wrap,
.cid-tJtGXB5nEy .title-wrap {
  color: #272727;
}
.cid-tJtGXBCDQt {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/adobestock-594896573987-2000x1333.webp");
}
.cid-tJtGXBCDQt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtGXBCDQt .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-tJtGXBCDQt .container {
    padding: 0 30px;
  }
}
.cid-tJtGXBCDQt .row {
  justify-content: center;
}
.cid-tJtGXBCDQt .title-wrapper {
  margin: 0 12%;
}
@media (max-width: 992px) {
  .cid-tJtGXBCDQt .title-wrapper {
    margin: 0;
  }
}
.cid-tJtGXBCDQt .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tJtGXBCDQt .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-tJtGXBCDQt .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tJtGXBCDQt .text-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tJtGXBCDQt .mbr-section-subtitle {
  color: #ffb82d;
  text-align: center;
}
.cid-tJtGXBCDQt .mbr-section-title {
  color: #f1f4e9;
  text-align: center;
}
.cid-tJtGXBCDQt .mbr-text {
  color: #f1f4e9;
}
.cid-tJtGXBCDQt .mbr-name {
  color: #f1f4e9;
  text-align: center;
}
.cid-tJtGXBYA4f {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tJtGXBYA4f .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtGXBYA4f .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-tJtGXBYA4f .container {
    padding: 0 30px;
  }
}
.cid-tJtGXBYA4f .image-wrapper {
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-tJtGXBYA4f .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tJtGXBYA4f .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tJtGXBYA4f .image-wrapper img {
    height: 300px;
  }
}
.cid-tJtGXBYA4f .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tJtGXBYA4f .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tJtGXBYA4f .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tJtGXBYA4f .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tJtGXBYA4f .mbr-section-subtitle {
  color: #212529;
}
.cid-tJtGXBYA4f .mbr-section-title {
  color: #212529;
}
.cid-tJtGXBYA4f .mbr-text {
  color: #212529;
}
.cid-tJtGXCnCPe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJtGXCnCPe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtGXCnCPe .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-tJtGXCnCPe .container {
    padding: 0 30px;
  }
}
.cid-tJtGXCnCPe .image-wrapper {
  margin-right: 80px;
  margin-right: 0;
  margin-left: 80px;
}
@media (max-width: 992px) {
  .cid-tJtGXCnCPe .image-wrapper {
    margin: 0 0 30px 0;
  }
}
@media (max-width: 992px) {
  .cid-tJtGXCnCPe .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tJtGXCnCPe .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tJtGXCnCPe .image-wrapper img {
    height: 300px;
  }
}
.cid-tJtGXCnCPe .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tJtGXCnCPe .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tJtGXCnCPe .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tJtGXCnCPe .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tJtGXCnCPe .mbr-section-subtitle {
  color: #212529;
}
.cid-tJtGXCnCPe .mbr-section-title {
  color: #212529;
}
.cid-tJtGXCnCPe .mbr-text {
  color: #212529;
}
.cid-tJtGXCLadb {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tJtGXCLadb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtGXCLadb .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-tJtGXCLadb .container {
    padding: 0 30px;
  }
}
.cid-tJtGXCLadb .image-wrapper {
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-tJtGXCLadb .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tJtGXCLadb .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tJtGXCLadb .image-wrapper img {
    height: 300px;
  }
}
.cid-tJtGXCLadb .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tJtGXCLadb .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tJtGXCLadb .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tJtGXCLadb .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tJtGXCLadb .mbr-section-subtitle {
  color: #212529;
}
.cid-tJtGXCLadb .mbr-section-title {
  color: #212529;
}
.cid-tJtGXCLadb .mbr-text {
  color: #212529;
}
.cid-tJtGXD9nvo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #101112;
}
.cid-tJtGXD9nvo .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tJtGXD9nvo .align-center {
    text-align: center;
  }
  .cid-tJtGXD9nvo .wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tJtGXD9nvo .block-btn {
  display: flex;
}
.cid-tJtGXD9nvo .mbr-section-subtitle {
  margin-bottom: 2rem;
}
.cid-tJtGXD9nvo h1 {
  margin-bottom: 0;
}
.cid-tJtGXD9nvo .wrapper {
  background-color: #101112;
  border-radius: 4px;
}
@media (min-width: 767px) {
  .cid-tJtGXD9nvo .container {
    padding: 0 3rem;
  }
  .cid-tJtGXD9nvo .wrapper {
    padding: 3.8rem 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tJtGXD9nvo .block-btn {
    justify-content: center;
  }
  .cid-tJtGXD9nvo .text-block {
    text-align: center;
  }
  .cid-tJtGXD9nvo .mbr-section-title {
    text-align: center;
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJtGXD9nvo .block-btn {
    justify-content: flex-end;
  }
  .cid-tJtGXD9nvo .btn {
    border-radius: 2px;
    margin-right: 0rem;
  }
}
.cid-tJtGXD9nvo .btn-white:hover {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.cid-tJtGXD9nvo .btn-white:hover::before {
  background-color: #000000 !important;
}
.cid-tJtGXD9nvo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtGXD9nvo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtGXDxa0a {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJtGXDxa0a .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tJtGXDxa0a .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tJtGXDxa0a .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tJtGXDxa0a .row {
    text-align: center;
  }
  .cid-tJtGXDxa0a .row > div {
    margin: auto;
  }
  .cid-tJtGXDxa0a .social-row {
    justify-content: center;
  }
}
.cid-tJtGXDxa0a .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tJtGXDxa0a .list {
  list-style: none;
  padding-left: 0;
  color: #18212f;
}
@media (max-width: 991px) {
  .cid-tJtGXDxa0a .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJtGXDxa0a .list {
    margin-bottom: 0rem;
  }
}
.cid-tJtGXDxa0a .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tJtGXDxa0a .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tJtGXDxa0a div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tJtGXDxa0a .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtGXDxa0a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtHZ8P0J8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJtHZ8P0J8 .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tJtHZ8P0J8 .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tJtHZ8P0J8 .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tJtHZ8P0J8 .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tJtHZ8P0J8 .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ffb82d;
  z-index: -1;
}
.cid-tJtHZ8P0J8 nav.navbar {
  position: fixed;
}
.cid-tJtHZ8P0J8 .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tJtHZ8P0J8 .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tJtHZ8P0J8 .nav-item {
    border: 0;
  }
}
.cid-tJtHZ8P0J8 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tJtHZ8P0J8 .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tJtHZ8P0J8 .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tJtHZ8P0J8 .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tJtHZ8P0J8 .title-wrap:hover span {
  color: white;
}
.cid-tJtHZ8P0J8 .title-wrap:hover:before {
  height: 100%;
}
.cid-tJtHZ8P0J8 .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-tJtHZ8P0J8 .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ffb82d;
}
.cid-tJtHZ8P0J8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJtHZ8P0J8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJtHZ8P0J8 .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tJtHZ8P0J8 .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tJtHZ8P0J8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJtHZ8P0J8 .nav-link {
  position: relative;
}
.cid-tJtHZ8P0J8 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tJtHZ8P0J8 .container {
    flex-wrap: nowrap;
  }
}
.cid-tJtHZ8P0J8 .dropdown-menu,
.cid-tJtHZ8P0J8 .navbar.opened {
  background: #ffffff !important;
}
.cid-tJtHZ8P0J8 .nav-item:focus,
.cid-tJtHZ8P0J8 .nav-link:focus {
  outline: none;
}
.cid-tJtHZ8P0J8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJtHZ8P0J8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJtHZ8P0J8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJtHZ8P0J8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJtHZ8P0J8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJtHZ8P0J8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJtHZ8P0J8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tJtHZ8P0J8 .navbar.opened {
  transition: all 0.3s;
}
.cid-tJtHZ8P0J8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJtHZ8P0J8 .navbar .navbar-logo img {
  width: auto;
}
.cid-tJtHZ8P0J8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJtHZ8P0J8 .navbar.collapsed {
  justify-content: center;
}
.cid-tJtHZ8P0J8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJtHZ8P0J8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJtHZ8P0J8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tJtHZ8P0J8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJtHZ8P0J8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJtHZ8P0J8 .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-tJtHZ8P0J8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJtHZ8P0J8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJtHZ8P0J8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJtHZ8P0J8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJtHZ8P0J8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJtHZ8P0J8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJtHZ8P0J8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJtHZ8P0J8 .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-tJtHZ8P0J8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJtHZ8P0J8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJtHZ8P0J8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJtHZ8P0J8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJtHZ8P0J8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJtHZ8P0J8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tJtHZ8P0J8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJtHZ8P0J8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJtHZ8P0J8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJtHZ8P0J8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tJtHZ8P0J8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJtHZ8P0J8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJtHZ8P0J8 .dropdown-item.active,
.cid-tJtHZ8P0J8 .dropdown-item:active {
  background-color: transparent;
}
.cid-tJtHZ8P0J8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJtHZ8P0J8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJtHZ8P0J8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJtHZ8P0J8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tJtHZ8P0J8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJtHZ8P0J8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJtHZ8P0J8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJtHZ8P0J8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJtHZ8P0J8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJtHZ8P0J8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tJtHZ8P0J8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJtHZ8P0J8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJtHZ8P0J8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJtHZ8P0J8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJtHZ8P0J8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJtHZ8P0J8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJtHZ8P0J8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJtHZ8P0J8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJtHZ8P0J8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tJtHZ8P0J8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tJtHZ8P0J8 .navbar {
    height: 70px;
  }
  .cid-tJtHZ8P0J8 .navbar.opened {
    height: auto;
  }
  .cid-tJtHZ8P0J8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tJtHZ8P0J8 .navbar-caption-wrap,
.cid-tJtHZ8P0J8 .title-wrap {
  color: #272727;
}
.cid-tJtHZ9nDcH {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/adobestock-594896573987-2000x1333.webp");
}
.cid-tJtHZ9nDcH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtHZ9nDcH .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-tJtHZ9nDcH .container {
    padding: 0 30px;
  }
}
.cid-tJtHZ9nDcH .row {
  justify-content: center;
}
.cid-tJtHZ9nDcH .title-wrapper {
  margin: 0 12%;
}
@media (max-width: 992px) {
  .cid-tJtHZ9nDcH .title-wrapper {
    margin: 0;
  }
}
.cid-tJtHZ9nDcH .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tJtHZ9nDcH .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-tJtHZ9nDcH .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tJtHZ9nDcH .text-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tJtHZ9nDcH .mbr-section-subtitle {
  color: #ffb82d;
  text-align: center;
}
.cid-tJtHZ9nDcH .mbr-section-title {
  color: #f1f4e9;
  text-align: center;
}
.cid-tJtHZ9nDcH .mbr-text {
  color: #f1f4e9;
}
.cid-tJtHZ9nDcH .mbr-name {
  color: #f1f4e9;
  text-align: center;
}
.cid-tJtHZ9LzQ3 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tJtHZ9LzQ3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtHZ9LzQ3 .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-tJtHZ9LzQ3 .container {
    padding: 0 30px;
  }
}
.cid-tJtHZ9LzQ3 .image-wrapper {
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-tJtHZ9LzQ3 .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tJtHZ9LzQ3 .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tJtHZ9LzQ3 .image-wrapper img {
    height: 300px;
  }
}
.cid-tJtHZ9LzQ3 .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tJtHZ9LzQ3 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tJtHZ9LzQ3 .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tJtHZ9LzQ3 .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tJtHZ9LzQ3 .mbr-section-subtitle {
  color: #212529;
}
.cid-tJtHZ9LzQ3 .mbr-section-title {
  color: #212529;
}
.cid-tJtHZ9LzQ3 .mbr-text {
  color: #212529;
}
.cid-tJtHZa9JnQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJtHZa9JnQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtHZa9JnQ .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-tJtHZa9JnQ .container {
    padding: 0 30px;
  }
}
.cid-tJtHZa9JnQ .image-wrapper {
  margin-right: 80px;
  margin-right: 0;
  margin-left: 80px;
}
@media (max-width: 992px) {
  .cid-tJtHZa9JnQ .image-wrapper {
    margin: 0 0 30px 0;
  }
}
@media (max-width: 992px) {
  .cid-tJtHZa9JnQ .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tJtHZa9JnQ .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tJtHZa9JnQ .image-wrapper img {
    height: 300px;
  }
}
.cid-tJtHZa9JnQ .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tJtHZa9JnQ .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tJtHZa9JnQ .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tJtHZa9JnQ .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tJtHZa9JnQ .mbr-section-subtitle {
  color: #212529;
}
.cid-tJtHZa9JnQ .mbr-section-title {
  color: #212529;
}
.cid-tJtHZa9JnQ .mbr-text {
  color: #212529;
}
.cid-tJtHZaADA4 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tJtHZaADA4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtHZaADA4 .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-tJtHZaADA4 .container {
    padding: 0 30px;
  }
}
.cid-tJtHZaADA4 .image-wrapper {
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-tJtHZaADA4 .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tJtHZaADA4 .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tJtHZaADA4 .image-wrapper img {
    height: 300px;
  }
}
.cid-tJtHZaADA4 .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tJtHZaADA4 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tJtHZaADA4 .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tJtHZaADA4 .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tJtHZaADA4 .mbr-section-subtitle {
  color: #212529;
}
.cid-tJtHZaADA4 .mbr-section-title {
  color: #212529;
}
.cid-tJtHZaADA4 .mbr-text {
  color: #212529;
}
.cid-tJtHZb0xFw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #101112;
}
.cid-tJtHZb0xFw .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tJtHZb0xFw .align-center {
    text-align: center;
  }
  .cid-tJtHZb0xFw .wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tJtHZb0xFw .block-btn {
  display: flex;
}
.cid-tJtHZb0xFw .mbr-section-subtitle {
  margin-bottom: 2rem;
}
.cid-tJtHZb0xFw h1 {
  margin-bottom: 0;
}
.cid-tJtHZb0xFw .wrapper {
  background-color: #101112;
  border-radius: 4px;
}
@media (min-width: 767px) {
  .cid-tJtHZb0xFw .container {
    padding: 0 3rem;
  }
  .cid-tJtHZb0xFw .wrapper {
    padding: 3.8rem 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tJtHZb0xFw .block-btn {
    justify-content: center;
  }
  .cid-tJtHZb0xFw .text-block {
    text-align: center;
  }
  .cid-tJtHZb0xFw .mbr-section-title {
    text-align: center;
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJtHZb0xFw .block-btn {
    justify-content: flex-end;
  }
  .cid-tJtHZb0xFw .btn {
    border-radius: 2px;
    margin-right: 0rem;
  }
}
.cid-tJtHZb0xFw .btn-white:hover {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.cid-tJtHZb0xFw .btn-white:hover::before {
  background-color: #000000 !important;
}
.cid-tJtHZb0xFw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtHZb0xFw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtHZbqSot {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJtHZbqSot .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tJtHZbqSot .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tJtHZbqSot .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tJtHZbqSot .row {
    text-align: center;
  }
  .cid-tJtHZbqSot .row > div {
    margin: auto;
  }
  .cid-tJtHZbqSot .social-row {
    justify-content: center;
  }
}
.cid-tJtHZbqSot .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tJtHZbqSot .list {
  list-style: none;
  padding-left: 0;
  color: #18212f;
}
@media (max-width: 991px) {
  .cid-tJtHZbqSot .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJtHZbqSot .list {
    margin-bottom: 0rem;
  }
}
.cid-tJtHZbqSot .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tJtHZbqSot .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tJtHZbqSot div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tJtHZbqSot .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtHZbqSot .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtLccIdnc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJtLccIdnc .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tJtLccIdnc .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tJtLccIdnc .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tJtLccIdnc .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tJtLccIdnc .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ffb82d;
  z-index: -1;
}
.cid-tJtLccIdnc nav.navbar {
  position: fixed;
}
.cid-tJtLccIdnc .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tJtLccIdnc .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tJtLccIdnc .nav-item {
    border: 0;
  }
}
.cid-tJtLccIdnc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tJtLccIdnc .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tJtLccIdnc .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tJtLccIdnc .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tJtLccIdnc .title-wrap:hover span {
  color: white;
}
.cid-tJtLccIdnc .title-wrap:hover:before {
  height: 100%;
}
.cid-tJtLccIdnc .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-tJtLccIdnc .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ffb82d;
}
.cid-tJtLccIdnc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJtLccIdnc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJtLccIdnc .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tJtLccIdnc .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tJtLccIdnc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJtLccIdnc .nav-link {
  position: relative;
}
.cid-tJtLccIdnc .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tJtLccIdnc .container {
    flex-wrap: nowrap;
  }
}
.cid-tJtLccIdnc .dropdown-menu,
.cid-tJtLccIdnc .navbar.opened {
  background: #ffffff !important;
}
.cid-tJtLccIdnc .nav-item:focus,
.cid-tJtLccIdnc .nav-link:focus {
  outline: none;
}
.cid-tJtLccIdnc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJtLccIdnc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJtLccIdnc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJtLccIdnc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJtLccIdnc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJtLccIdnc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJtLccIdnc .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tJtLccIdnc .navbar.opened {
  transition: all 0.3s;
}
.cid-tJtLccIdnc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJtLccIdnc .navbar .navbar-logo img {
  width: auto;
}
.cid-tJtLccIdnc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJtLccIdnc .navbar.collapsed {
  justify-content: center;
}
.cid-tJtLccIdnc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJtLccIdnc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJtLccIdnc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tJtLccIdnc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJtLccIdnc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJtLccIdnc .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-tJtLccIdnc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJtLccIdnc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJtLccIdnc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJtLccIdnc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJtLccIdnc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJtLccIdnc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJtLccIdnc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJtLccIdnc .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-tJtLccIdnc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJtLccIdnc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJtLccIdnc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJtLccIdnc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJtLccIdnc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJtLccIdnc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tJtLccIdnc .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJtLccIdnc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJtLccIdnc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJtLccIdnc .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tJtLccIdnc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJtLccIdnc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJtLccIdnc .dropdown-item.active,
.cid-tJtLccIdnc .dropdown-item:active {
  background-color: transparent;
}
.cid-tJtLccIdnc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJtLccIdnc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJtLccIdnc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJtLccIdnc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tJtLccIdnc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJtLccIdnc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJtLccIdnc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJtLccIdnc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJtLccIdnc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJtLccIdnc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tJtLccIdnc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJtLccIdnc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJtLccIdnc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJtLccIdnc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJtLccIdnc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJtLccIdnc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJtLccIdnc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJtLccIdnc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJtLccIdnc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tJtLccIdnc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tJtLccIdnc .navbar {
    height: 70px;
  }
  .cid-tJtLccIdnc .navbar.opened {
    height: auto;
  }
  .cid-tJtLccIdnc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tJtLccIdnc .navbar-caption-wrap,
.cid-tJtLccIdnc .title-wrap {
  color: #272727;
}
.cid-tJtLcdgqXk {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/adobestock-594896573987-2000x1333.webp");
}
.cid-tJtLcdgqXk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtLcdgqXk .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-tJtLcdgqXk .container {
    padding: 0 30px;
  }
}
.cid-tJtLcdgqXk .row {
  justify-content: center;
}
.cid-tJtLcdgqXk .title-wrapper {
  margin: 0 12%;
}
@media (max-width: 992px) {
  .cid-tJtLcdgqXk .title-wrapper {
    margin: 0;
  }
}
.cid-tJtLcdgqXk .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tJtLcdgqXk .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-tJtLcdgqXk .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tJtLcdgqXk .text-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tJtLcdgqXk .mbr-section-subtitle {
  color: #ffb82d;
  text-align: center;
}
.cid-tJtLcdgqXk .mbr-section-title {
  color: #f1f4e9;
  text-align: center;
}
.cid-tJtLcdgqXk .mbr-text {
  color: #f1f4e9;
}
.cid-tJtLcdgqXk .mbr-name {
  color: #f1f4e9;
  text-align: center;
}
.cid-tJtLcdFpZx {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tJtLcdFpZx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtLcdFpZx .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-tJtLcdFpZx .container {
    padding: 0 30px;
  }
}
.cid-tJtLcdFpZx .image-wrapper {
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-tJtLcdFpZx .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tJtLcdFpZx .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tJtLcdFpZx .image-wrapper img {
    height: 300px;
  }
}
.cid-tJtLcdFpZx .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tJtLcdFpZx .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tJtLcdFpZx .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tJtLcdFpZx .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tJtLcdFpZx .mbr-section-subtitle {
  color: #212529;
}
.cid-tJtLcdFpZx .mbr-section-title {
  color: #212529;
}
.cid-tJtLcdFpZx .mbr-text {
  color: #212529;
}
.cid-tJtLce4dJr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJtLce4dJr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtLce4dJr .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-tJtLce4dJr .container {
    padding: 0 30px;
  }
}
.cid-tJtLce4dJr .image-wrapper {
  margin-right: 80px;
  margin-right: 0;
  margin-left: 80px;
}
@media (max-width: 992px) {
  .cid-tJtLce4dJr .image-wrapper {
    margin: 0 0 30px 0;
  }
}
@media (max-width: 992px) {
  .cid-tJtLce4dJr .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tJtLce4dJr .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tJtLce4dJr .image-wrapper img {
    height: 300px;
  }
}
.cid-tJtLce4dJr .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tJtLce4dJr .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tJtLce4dJr .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tJtLce4dJr .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tJtLce4dJr .mbr-section-subtitle {
  color: #212529;
}
.cid-tJtLce4dJr .mbr-section-title {
  color: #212529;
}
.cid-tJtLce4dJr .mbr-text {
  color: #212529;
}
.cid-tJtLces5oj {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tJtLces5oj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtLces5oj .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-tJtLces5oj .container {
    padding: 0 30px;
  }
}
.cid-tJtLces5oj .image-wrapper {
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-tJtLces5oj .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tJtLces5oj .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tJtLces5oj .image-wrapper img {
    height: 300px;
  }
}
.cid-tJtLces5oj .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tJtLces5oj .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tJtLces5oj .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tJtLces5oj .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tJtLces5oj .mbr-section-subtitle {
  color: #212529;
}
.cid-tJtLces5oj .mbr-section-title {
  color: #212529;
}
.cid-tJtLces5oj .mbr-text {
  color: #212529;
}
.cid-tJtLSG4DcA {
  padding-top: 30px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-tJtLSG4DcA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtLSG4DcA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtLSG4DcA .mbr-text {
  text-align: left;
}
.cid-tJtLceRnk5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #101112;
}
.cid-tJtLceRnk5 .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tJtLceRnk5 .align-center {
    text-align: center;
  }
  .cid-tJtLceRnk5 .wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tJtLceRnk5 .block-btn {
  display: flex;
}
.cid-tJtLceRnk5 .mbr-section-subtitle {
  margin-bottom: 2rem;
}
.cid-tJtLceRnk5 h1 {
  margin-bottom: 0;
}
.cid-tJtLceRnk5 .wrapper {
  background-color: #101112;
  border-radius: 4px;
}
@media (min-width: 767px) {
  .cid-tJtLceRnk5 .container {
    padding: 0 3rem;
  }
  .cid-tJtLceRnk5 .wrapper {
    padding: 3.8rem 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tJtLceRnk5 .block-btn {
    justify-content: center;
  }
  .cid-tJtLceRnk5 .text-block {
    text-align: center;
  }
  .cid-tJtLceRnk5 .mbr-section-title {
    text-align: center;
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJtLceRnk5 .block-btn {
    justify-content: flex-end;
  }
  .cid-tJtLceRnk5 .btn {
    border-radius: 2px;
    margin-right: 0rem;
  }
}
.cid-tJtLceRnk5 .btn-white:hover {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.cid-tJtLceRnk5 .btn-white:hover::before {
  background-color: #000000 !important;
}
.cid-tJtLceRnk5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtLceRnk5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtLcff3Md {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJtLcff3Md .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tJtLcff3Md .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tJtLcff3Md .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tJtLcff3Md .row {
    text-align: center;
  }
  .cid-tJtLcff3Md .row > div {
    margin: auto;
  }
  .cid-tJtLcff3Md .social-row {
    justify-content: center;
  }
}
.cid-tJtLcff3Md .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tJtLcff3Md .list {
  list-style: none;
  padding-left: 0;
  color: #18212f;
}
@media (max-width: 991px) {
  .cid-tJtLcff3Md .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJtLcff3Md .list {
    margin-bottom: 0rem;
  }
}
.cid-tJtLcff3Md .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tJtLcff3Md .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tJtLcff3Md div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tJtLcff3Md .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtLcff3Md .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtNOEt5fO {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJtNOEt5fO .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tJtNOEt5fO .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tJtNOEt5fO .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tJtNOEt5fO .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tJtNOEt5fO .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ffb82d;
  z-index: -1;
}
.cid-tJtNOEt5fO nav.navbar {
  position: fixed;
}
.cid-tJtNOEt5fO .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tJtNOEt5fO .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tJtNOEt5fO .nav-item {
    border: 0;
  }
}
.cid-tJtNOEt5fO .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tJtNOEt5fO .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tJtNOEt5fO .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tJtNOEt5fO .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tJtNOEt5fO .title-wrap:hover span {
  color: white;
}
.cid-tJtNOEt5fO .title-wrap:hover:before {
  height: 100%;
}
.cid-tJtNOEt5fO .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-tJtNOEt5fO .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ffb82d;
}
.cid-tJtNOEt5fO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJtNOEt5fO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJtNOEt5fO .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tJtNOEt5fO .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tJtNOEt5fO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJtNOEt5fO .nav-link {
  position: relative;
}
.cid-tJtNOEt5fO .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tJtNOEt5fO .container {
    flex-wrap: nowrap;
  }
}
.cid-tJtNOEt5fO .dropdown-menu,
.cid-tJtNOEt5fO .navbar.opened {
  background: #ffffff !important;
}
.cid-tJtNOEt5fO .nav-item:focus,
.cid-tJtNOEt5fO .nav-link:focus {
  outline: none;
}
.cid-tJtNOEt5fO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJtNOEt5fO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJtNOEt5fO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJtNOEt5fO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJtNOEt5fO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJtNOEt5fO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJtNOEt5fO .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tJtNOEt5fO .navbar.opened {
  transition: all 0.3s;
}
.cid-tJtNOEt5fO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJtNOEt5fO .navbar .navbar-logo img {
  width: auto;
}
.cid-tJtNOEt5fO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJtNOEt5fO .navbar.collapsed {
  justify-content: center;
}
.cid-tJtNOEt5fO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJtNOEt5fO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJtNOEt5fO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tJtNOEt5fO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJtNOEt5fO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJtNOEt5fO .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-tJtNOEt5fO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJtNOEt5fO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJtNOEt5fO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJtNOEt5fO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJtNOEt5fO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJtNOEt5fO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJtNOEt5fO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJtNOEt5fO .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-tJtNOEt5fO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJtNOEt5fO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJtNOEt5fO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJtNOEt5fO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJtNOEt5fO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJtNOEt5fO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tJtNOEt5fO .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJtNOEt5fO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJtNOEt5fO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJtNOEt5fO .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tJtNOEt5fO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJtNOEt5fO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJtNOEt5fO .dropdown-item.active,
.cid-tJtNOEt5fO .dropdown-item:active {
  background-color: transparent;
}
.cid-tJtNOEt5fO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJtNOEt5fO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJtNOEt5fO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJtNOEt5fO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tJtNOEt5fO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJtNOEt5fO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJtNOEt5fO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJtNOEt5fO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJtNOEt5fO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJtNOEt5fO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tJtNOEt5fO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJtNOEt5fO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJtNOEt5fO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJtNOEt5fO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJtNOEt5fO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJtNOEt5fO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJtNOEt5fO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJtNOEt5fO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJtNOEt5fO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tJtNOEt5fO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tJtNOEt5fO .navbar {
    height: 70px;
  }
  .cid-tJtNOEt5fO .navbar.opened {
    height: auto;
  }
  .cid-tJtNOEt5fO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tJtNOEt5fO .navbar-caption-wrap,
.cid-tJtNOEt5fO .title-wrap {
  color: #272727;
}
.cid-tJtNOF6mqo {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/adobestock-594896573987-2000x1333.webp");
}
.cid-tJtNOF6mqo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtNOF6mqo .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-tJtNOF6mqo .container {
    padding: 0 30px;
  }
}
.cid-tJtNOF6mqo .row {
  justify-content: center;
}
.cid-tJtNOF6mqo .title-wrapper {
  margin: 0 12%;
}
@media (max-width: 992px) {
  .cid-tJtNOF6mqo .title-wrapper {
    margin: 0;
  }
}
.cid-tJtNOF6mqo .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tJtNOF6mqo .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-tJtNOF6mqo .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tJtNOF6mqo .text-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tJtNOF6mqo .mbr-section-subtitle {
  color: #ffb82d;
  text-align: center;
}
.cid-tJtNOF6mqo .mbr-section-title {
  color: #f1f4e9;
  text-align: center;
}
.cid-tJtNOF6mqo .mbr-text {
  color: #f1f4e9;
}
.cid-tJtNOF6mqo .mbr-name {
  color: #f1f4e9;
  text-align: center;
}
.cid-tJtNOFxvF9 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tJtNOFxvF9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtNOFxvF9 .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-tJtNOFxvF9 .container {
    padding: 0 30px;
  }
}
.cid-tJtNOFxvF9 .image-wrapper {
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-tJtNOFxvF9 .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tJtNOFxvF9 .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tJtNOFxvF9 .image-wrapper img {
    height: 300px;
  }
}
.cid-tJtNOFxvF9 .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tJtNOFxvF9 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tJtNOFxvF9 .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tJtNOFxvF9 .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tJtNOFxvF9 .mbr-section-subtitle {
  color: #212529;
}
.cid-tJtNOFxvF9 .mbr-section-title {
  color: #212529;
}
.cid-tJtNOFxvF9 .mbr-text {
  color: #212529;
}
.cid-tJtNOG0aRd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJtNOG0aRd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtNOG0aRd .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-tJtNOG0aRd .container {
    padding: 0 30px;
  }
}
.cid-tJtNOG0aRd .image-wrapper {
  margin-right: 80px;
  margin-right: 0;
  margin-left: 80px;
}
@media (max-width: 992px) {
  .cid-tJtNOG0aRd .image-wrapper {
    margin: 0 0 30px 0;
  }
}
@media (max-width: 992px) {
  .cid-tJtNOG0aRd .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tJtNOG0aRd .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tJtNOG0aRd .image-wrapper img {
    height: 300px;
  }
}
.cid-tJtNOG0aRd .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tJtNOG0aRd .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tJtNOG0aRd .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tJtNOG0aRd .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tJtNOG0aRd .mbr-section-subtitle {
  color: #212529;
}
.cid-tJtNOG0aRd .mbr-section-title {
  color: #212529;
}
.cid-tJtNOG0aRd .mbr-text {
  color: #212529;
}
.cid-tJtNOGr4zg {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tJtNOGr4zg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtNOGr4zg .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-tJtNOGr4zg .container {
    padding: 0 30px;
  }
}
.cid-tJtNOGr4zg .image-wrapper {
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-tJtNOGr4zg .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tJtNOGr4zg .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tJtNOGr4zg .image-wrapper img {
    height: 300px;
  }
}
.cid-tJtNOGr4zg .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tJtNOGr4zg .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tJtNOGr4zg .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tJtNOGr4zg .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tJtNOGr4zg .mbr-section-subtitle {
  color: #212529;
}
.cid-tJtNOGr4zg .mbr-section-title {
  color: #212529;
}
.cid-tJtNOGr4zg .mbr-text {
  color: #212529;
}
.cid-tJtNOGUsQT {
  padding-top: 30px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-tJtNOGUsQT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtNOGUsQT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtNOGUsQT .mbr-text {
  text-align: left;
}
.cid-tJtNOHoUbu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #101112;
}
.cid-tJtNOHoUbu .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tJtNOHoUbu .align-center {
    text-align: center;
  }
  .cid-tJtNOHoUbu .wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tJtNOHoUbu .block-btn {
  display: flex;
}
.cid-tJtNOHoUbu .mbr-section-subtitle {
  margin-bottom: 2rem;
}
.cid-tJtNOHoUbu h1 {
  margin-bottom: 0;
}
.cid-tJtNOHoUbu .wrapper {
  background-color: #101112;
  border-radius: 4px;
}
@media (min-width: 767px) {
  .cid-tJtNOHoUbu .container {
    padding: 0 3rem;
  }
  .cid-tJtNOHoUbu .wrapper {
    padding: 3.8rem 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tJtNOHoUbu .block-btn {
    justify-content: center;
  }
  .cid-tJtNOHoUbu .text-block {
    text-align: center;
  }
  .cid-tJtNOHoUbu .mbr-section-title {
    text-align: center;
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJtNOHoUbu .block-btn {
    justify-content: flex-end;
  }
  .cid-tJtNOHoUbu .btn {
    border-radius: 2px;
    margin-right: 0rem;
  }
}
.cid-tJtNOHoUbu .btn-white:hover {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.cid-tJtNOHoUbu .btn-white:hover::before {
  background-color: #000000 !important;
}
.cid-tJtNOHoUbu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtNOHoUbu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtNOHRAXz {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJtNOHRAXz .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tJtNOHRAXz .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tJtNOHRAXz .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tJtNOHRAXz .row {
    text-align: center;
  }
  .cid-tJtNOHRAXz .row > div {
    margin: auto;
  }
  .cid-tJtNOHRAXz .social-row {
    justify-content: center;
  }
}
.cid-tJtNOHRAXz .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tJtNOHRAXz .list {
  list-style: none;
  padding-left: 0;
  color: #18212f;
}
@media (max-width: 991px) {
  .cid-tJtNOHRAXz .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJtNOHRAXz .list {
    margin-bottom: 0rem;
  }
}
.cid-tJtNOHRAXz .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tJtNOHRAXz .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tJtNOHRAXz div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tJtNOHRAXz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtNOHRAXz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtPJnIYnR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJtPJnIYnR .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tJtPJnIYnR .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tJtPJnIYnR .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tJtPJnIYnR .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tJtPJnIYnR .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ffb82d;
  z-index: -1;
}
.cid-tJtPJnIYnR nav.navbar {
  position: fixed;
}
.cid-tJtPJnIYnR .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tJtPJnIYnR .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tJtPJnIYnR .nav-item {
    border: 0;
  }
}
.cid-tJtPJnIYnR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tJtPJnIYnR .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tJtPJnIYnR .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tJtPJnIYnR .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tJtPJnIYnR .title-wrap:hover span {
  color: white;
}
.cid-tJtPJnIYnR .title-wrap:hover:before {
  height: 100%;
}
.cid-tJtPJnIYnR .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-tJtPJnIYnR .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ffb82d;
}
.cid-tJtPJnIYnR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJtPJnIYnR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJtPJnIYnR .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tJtPJnIYnR .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tJtPJnIYnR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJtPJnIYnR .nav-link {
  position: relative;
}
.cid-tJtPJnIYnR .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tJtPJnIYnR .container {
    flex-wrap: nowrap;
  }
}
.cid-tJtPJnIYnR .dropdown-menu,
.cid-tJtPJnIYnR .navbar.opened {
  background: #ffffff !important;
}
.cid-tJtPJnIYnR .nav-item:focus,
.cid-tJtPJnIYnR .nav-link:focus {
  outline: none;
}
.cid-tJtPJnIYnR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJtPJnIYnR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJtPJnIYnR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJtPJnIYnR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJtPJnIYnR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJtPJnIYnR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJtPJnIYnR .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tJtPJnIYnR .navbar.opened {
  transition: all 0.3s;
}
.cid-tJtPJnIYnR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJtPJnIYnR .navbar .navbar-logo img {
  width: auto;
}
.cid-tJtPJnIYnR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJtPJnIYnR .navbar.collapsed {
  justify-content: center;
}
.cid-tJtPJnIYnR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJtPJnIYnR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJtPJnIYnR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tJtPJnIYnR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJtPJnIYnR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJtPJnIYnR .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-tJtPJnIYnR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJtPJnIYnR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJtPJnIYnR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJtPJnIYnR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJtPJnIYnR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJtPJnIYnR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJtPJnIYnR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJtPJnIYnR .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-tJtPJnIYnR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJtPJnIYnR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJtPJnIYnR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJtPJnIYnR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJtPJnIYnR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJtPJnIYnR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tJtPJnIYnR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJtPJnIYnR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJtPJnIYnR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJtPJnIYnR .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tJtPJnIYnR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJtPJnIYnR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJtPJnIYnR .dropdown-item.active,
.cid-tJtPJnIYnR .dropdown-item:active {
  background-color: transparent;
}
.cid-tJtPJnIYnR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJtPJnIYnR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJtPJnIYnR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJtPJnIYnR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tJtPJnIYnR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJtPJnIYnR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJtPJnIYnR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJtPJnIYnR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJtPJnIYnR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJtPJnIYnR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tJtPJnIYnR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJtPJnIYnR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJtPJnIYnR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJtPJnIYnR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJtPJnIYnR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJtPJnIYnR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJtPJnIYnR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJtPJnIYnR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJtPJnIYnR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tJtPJnIYnR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tJtPJnIYnR .navbar {
    height: 70px;
  }
  .cid-tJtPJnIYnR .navbar.opened {
    height: auto;
  }
  .cid-tJtPJnIYnR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tJtPJnIYnR .navbar-caption-wrap,
.cid-tJtPJnIYnR .title-wrap {
  color: #272727;
}
.cid-tJtPJowI8B {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/adobestock-594896573987-2000x1333.webp");
}
.cid-tJtPJowI8B .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtPJowI8B .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-tJtPJowI8B .container {
    padding: 0 30px;
  }
}
.cid-tJtPJowI8B .row {
  justify-content: center;
}
.cid-tJtPJowI8B .title-wrapper {
  margin: 0 12%;
}
@media (max-width: 992px) {
  .cid-tJtPJowI8B .title-wrapper {
    margin: 0;
  }
}
.cid-tJtPJowI8B .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tJtPJowI8B .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-tJtPJowI8B .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tJtPJowI8B .text-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tJtPJowI8B .mbr-section-subtitle {
  color: #ffb82d;
  text-align: center;
}
.cid-tJtPJowI8B .mbr-section-title {
  color: #f1f4e9;
  text-align: center;
}
.cid-tJtPJowI8B .mbr-text {
  color: #f1f4e9;
}
.cid-tJtPJowI8B .mbr-name {
  color: #f1f4e9;
  text-align: center;
}
.cid-tJtPJp91gD {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tJtPJp91gD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtPJp91gD .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-tJtPJp91gD .container {
    padding: 0 30px;
  }
}
.cid-tJtPJp91gD .image-wrapper {
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-tJtPJp91gD .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tJtPJp91gD .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tJtPJp91gD .image-wrapper img {
    height: 300px;
  }
}
.cid-tJtPJp91gD .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tJtPJp91gD .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tJtPJp91gD .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tJtPJp91gD .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tJtPJp91gD .mbr-section-subtitle {
  color: #212529;
}
.cid-tJtPJp91gD .mbr-section-title {
  color: #212529;
}
.cid-tJtPJp91gD .mbr-text {
  color: #212529;
}
.cid-tJtPJpLsfh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJtPJpLsfh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtPJpLsfh .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-tJtPJpLsfh .container {
    padding: 0 30px;
  }
}
.cid-tJtPJpLsfh .image-wrapper {
  margin-right: 80px;
  margin-right: 0;
  margin-left: 80px;
}
@media (max-width: 992px) {
  .cid-tJtPJpLsfh .image-wrapper {
    margin: 0 0 30px 0;
  }
}
@media (max-width: 992px) {
  .cid-tJtPJpLsfh .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tJtPJpLsfh .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tJtPJpLsfh .image-wrapper img {
    height: 300px;
  }
}
.cid-tJtPJpLsfh .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tJtPJpLsfh .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tJtPJpLsfh .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tJtPJpLsfh .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tJtPJpLsfh .mbr-section-subtitle {
  color: #212529;
}
.cid-tJtPJpLsfh .mbr-section-title {
  color: #212529;
}
.cid-tJtPJpLsfh .mbr-text {
  color: #212529;
}
.cid-tJtPJqXdjW {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tJtPJqXdjW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtPJqXdjW .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-tJtPJqXdjW .container {
    padding: 0 30px;
  }
}
.cid-tJtPJqXdjW .image-wrapper {
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-tJtPJqXdjW .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tJtPJqXdjW .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tJtPJqXdjW .image-wrapper img {
    height: 300px;
  }
}
.cid-tJtPJqXdjW .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tJtPJqXdjW .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tJtPJqXdjW .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tJtPJqXdjW .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tJtPJqXdjW .mbr-section-subtitle {
  color: #212529;
}
.cid-tJtPJqXdjW .mbr-section-title {
  color: #212529;
}
.cid-tJtPJqXdjW .mbr-text {
  color: #212529;
}
.cid-tJtPJrncCp {
  padding-top: 30px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-tJtPJrncCp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtPJrncCp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtPJrncCp .mbr-text {
  text-align: left;
}
.cid-tJtPJrPZm0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #101112;
}
.cid-tJtPJrPZm0 .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tJtPJrPZm0 .align-center {
    text-align: center;
  }
  .cid-tJtPJrPZm0 .wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tJtPJrPZm0 .block-btn {
  display: flex;
}
.cid-tJtPJrPZm0 .mbr-section-subtitle {
  margin-bottom: 2rem;
}
.cid-tJtPJrPZm0 h1 {
  margin-bottom: 0;
}
.cid-tJtPJrPZm0 .wrapper {
  background-color: #101112;
  border-radius: 4px;
}
@media (min-width: 767px) {
  .cid-tJtPJrPZm0 .container {
    padding: 0 3rem;
  }
  .cid-tJtPJrPZm0 .wrapper {
    padding: 3.8rem 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tJtPJrPZm0 .block-btn {
    justify-content: center;
  }
  .cid-tJtPJrPZm0 .text-block {
    text-align: center;
  }
  .cid-tJtPJrPZm0 .mbr-section-title {
    text-align: center;
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJtPJrPZm0 .block-btn {
    justify-content: flex-end;
  }
  .cid-tJtPJrPZm0 .btn {
    border-radius: 2px;
    margin-right: 0rem;
  }
}
.cid-tJtPJrPZm0 .btn-white:hover {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.cid-tJtPJrPZm0 .btn-white:hover::before {
  background-color: #000000 !important;
}
.cid-tJtPJrPZm0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtPJrPZm0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtPJsg3gX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJtPJsg3gX .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tJtPJsg3gX .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tJtPJsg3gX .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tJtPJsg3gX .row {
    text-align: center;
  }
  .cid-tJtPJsg3gX .row > div {
    margin: auto;
  }
  .cid-tJtPJsg3gX .social-row {
    justify-content: center;
  }
}
.cid-tJtPJsg3gX .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tJtPJsg3gX .list {
  list-style: none;
  padding-left: 0;
  color: #18212f;
}
@media (max-width: 991px) {
  .cid-tJtPJsg3gX .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJtPJsg3gX .list {
    margin-bottom: 0rem;
  }
}
.cid-tJtPJsg3gX .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tJtPJsg3gX .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tJtPJsg3gX div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tJtPJsg3gX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtPJsg3gX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtRkYVJD0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJtRkYVJD0 .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tJtRkYVJD0 .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tJtRkYVJD0 .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tJtRkYVJD0 .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tJtRkYVJD0 .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ffb82d;
  z-index: -1;
}
.cid-tJtRkYVJD0 nav.navbar {
  position: fixed;
}
.cid-tJtRkYVJD0 .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tJtRkYVJD0 .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tJtRkYVJD0 .nav-item {
    border: 0;
  }
}
.cid-tJtRkYVJD0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tJtRkYVJD0 .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tJtRkYVJD0 .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tJtRkYVJD0 .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tJtRkYVJD0 .title-wrap:hover span {
  color: white;
}
.cid-tJtRkYVJD0 .title-wrap:hover:before {
  height: 100%;
}
.cid-tJtRkYVJD0 .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-tJtRkYVJD0 .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ffb82d;
}
.cid-tJtRkYVJD0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJtRkYVJD0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJtRkYVJD0 .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tJtRkYVJD0 .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tJtRkYVJD0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJtRkYVJD0 .nav-link {
  position: relative;
}
.cid-tJtRkYVJD0 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tJtRkYVJD0 .container {
    flex-wrap: nowrap;
  }
}
.cid-tJtRkYVJD0 .dropdown-menu,
.cid-tJtRkYVJD0 .navbar.opened {
  background: #ffffff !important;
}
.cid-tJtRkYVJD0 .nav-item:focus,
.cid-tJtRkYVJD0 .nav-link:focus {
  outline: none;
}
.cid-tJtRkYVJD0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJtRkYVJD0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJtRkYVJD0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJtRkYVJD0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJtRkYVJD0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJtRkYVJD0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJtRkYVJD0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tJtRkYVJD0 .navbar.opened {
  transition: all 0.3s;
}
.cid-tJtRkYVJD0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJtRkYVJD0 .navbar .navbar-logo img {
  width: auto;
}
.cid-tJtRkYVJD0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJtRkYVJD0 .navbar.collapsed {
  justify-content: center;
}
.cid-tJtRkYVJD0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJtRkYVJD0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJtRkYVJD0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tJtRkYVJD0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJtRkYVJD0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJtRkYVJD0 .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-tJtRkYVJD0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJtRkYVJD0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJtRkYVJD0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJtRkYVJD0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJtRkYVJD0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJtRkYVJD0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJtRkYVJD0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJtRkYVJD0 .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-tJtRkYVJD0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJtRkYVJD0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJtRkYVJD0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJtRkYVJD0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJtRkYVJD0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJtRkYVJD0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tJtRkYVJD0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJtRkYVJD0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJtRkYVJD0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJtRkYVJD0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tJtRkYVJD0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJtRkYVJD0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJtRkYVJD0 .dropdown-item.active,
.cid-tJtRkYVJD0 .dropdown-item:active {
  background-color: transparent;
}
.cid-tJtRkYVJD0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJtRkYVJD0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJtRkYVJD0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJtRkYVJD0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tJtRkYVJD0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJtRkYVJD0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJtRkYVJD0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJtRkYVJD0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJtRkYVJD0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJtRkYVJD0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tJtRkYVJD0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJtRkYVJD0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJtRkYVJD0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJtRkYVJD0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJtRkYVJD0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJtRkYVJD0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJtRkYVJD0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJtRkYVJD0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJtRkYVJD0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tJtRkYVJD0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tJtRkYVJD0 .navbar {
    height: 70px;
  }
  .cid-tJtRkYVJD0 .navbar.opened {
    height: auto;
  }
  .cid-tJtRkYVJD0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tJtRkYVJD0 .navbar-caption-wrap,
.cid-tJtRkYVJD0 .title-wrap {
  color: #272727;
}
.cid-tJtRkZyPsC {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/adobestock-594896573987-2000x1333.webp");
}
.cid-tJtRkZyPsC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtRkZyPsC .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-tJtRkZyPsC .container {
    padding: 0 30px;
  }
}
.cid-tJtRkZyPsC .row {
  justify-content: center;
}
.cid-tJtRkZyPsC .title-wrapper {
  margin: 0 12%;
}
@media (max-width: 992px) {
  .cid-tJtRkZyPsC .title-wrapper {
    margin: 0;
  }
}
.cid-tJtRkZyPsC .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tJtRkZyPsC .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-tJtRkZyPsC .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tJtRkZyPsC .text-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tJtRkZyPsC .mbr-section-subtitle {
  color: #ffb82d;
  text-align: center;
}
.cid-tJtRkZyPsC .mbr-section-title {
  color: #f1f4e9;
  text-align: center;
}
.cid-tJtRkZyPsC .mbr-text {
  color: #f1f4e9;
}
.cid-tJtRkZyPsC .mbr-name {
  color: #f1f4e9;
  text-align: center;
}
.cid-tJtRl03CNX {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tJtRl03CNX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtRl03CNX .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-tJtRl03CNX .container {
    padding: 0 30px;
  }
}
.cid-tJtRl03CNX .image-wrapper {
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-tJtRl03CNX .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tJtRl03CNX .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tJtRl03CNX .image-wrapper img {
    height: 300px;
  }
}
.cid-tJtRl03CNX .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tJtRl03CNX .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tJtRl03CNX .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tJtRl03CNX .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tJtRl03CNX .mbr-section-subtitle {
  color: #212529;
}
.cid-tJtRl03CNX .mbr-section-title {
  color: #212529;
}
.cid-tJtRl03CNX .mbr-text {
  color: #212529;
}
.cid-tJtRl0ywKF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJtRl0ywKF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtRl0ywKF .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-tJtRl0ywKF .container {
    padding: 0 30px;
  }
}
.cid-tJtRl0ywKF .image-wrapper {
  margin-right: 80px;
  margin-right: 0;
  margin-left: 80px;
}
@media (max-width: 992px) {
  .cid-tJtRl0ywKF .image-wrapper {
    margin: 0 0 30px 0;
  }
}
@media (max-width: 992px) {
  .cid-tJtRl0ywKF .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tJtRl0ywKF .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tJtRl0ywKF .image-wrapper img {
    height: 300px;
  }
}
.cid-tJtRl0ywKF .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tJtRl0ywKF .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tJtRl0ywKF .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tJtRl0ywKF .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tJtRl0ywKF .mbr-section-subtitle {
  color: #212529;
}
.cid-tJtRl0ywKF .mbr-section-title {
  color: #212529;
}
.cid-tJtRl0ywKF .mbr-text {
  color: #212529;
}
.cid-tJtRl10y48 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tJtRl10y48 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtRl10y48 .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-tJtRl10y48 .container {
    padding: 0 30px;
  }
}
.cid-tJtRl10y48 .image-wrapper {
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-tJtRl10y48 .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tJtRl10y48 .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tJtRl10y48 .image-wrapper img {
    height: 300px;
  }
}
.cid-tJtRl10y48 .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tJtRl10y48 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tJtRl10y48 .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tJtRl10y48 .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tJtRl10y48 .mbr-section-subtitle {
  color: #212529;
}
.cid-tJtRl10y48 .mbr-section-title {
  color: #212529;
}
.cid-tJtRl10y48 .mbr-text {
  color: #212529;
}
.cid-tJtRl1s9iO {
  padding-top: 30px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-tJtRl1s9iO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtRl1s9iO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtRl1s9iO .mbr-text {
  text-align: left;
}
.cid-tJtRl1WQua {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #101112;
}
.cid-tJtRl1WQua .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tJtRl1WQua .align-center {
    text-align: center;
  }
  .cid-tJtRl1WQua .wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tJtRl1WQua .block-btn {
  display: flex;
}
.cid-tJtRl1WQua .mbr-section-subtitle {
  margin-bottom: 2rem;
}
.cid-tJtRl1WQua h1 {
  margin-bottom: 0;
}
.cid-tJtRl1WQua .wrapper {
  background-color: #101112;
  border-radius: 4px;
}
@media (min-width: 767px) {
  .cid-tJtRl1WQua .container {
    padding: 0 3rem;
  }
  .cid-tJtRl1WQua .wrapper {
    padding: 3.8rem 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tJtRl1WQua .block-btn {
    justify-content: center;
  }
  .cid-tJtRl1WQua .text-block {
    text-align: center;
  }
  .cid-tJtRl1WQua .mbr-section-title {
    text-align: center;
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJtRl1WQua .block-btn {
    justify-content: flex-end;
  }
  .cid-tJtRl1WQua .btn {
    border-radius: 2px;
    margin-right: 0rem;
  }
}
.cid-tJtRl1WQua .btn-white:hover {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.cid-tJtRl1WQua .btn-white:hover::before {
  background-color: #000000 !important;
}
.cid-tJtRl1WQua .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtRl1WQua .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtRl2oYeF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJtRl2oYeF .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tJtRl2oYeF .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tJtRl2oYeF .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tJtRl2oYeF .row {
    text-align: center;
  }
  .cid-tJtRl2oYeF .row > div {
    margin: auto;
  }
  .cid-tJtRl2oYeF .social-row {
    justify-content: center;
  }
}
.cid-tJtRl2oYeF .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tJtRl2oYeF .list {
  list-style: none;
  padding-left: 0;
  color: #18212f;
}
@media (max-width: 991px) {
  .cid-tJtRl2oYeF .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJtRl2oYeF .list {
    margin-bottom: 0rem;
  }
}
.cid-tJtRl2oYeF .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tJtRl2oYeF .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tJtRl2oYeF div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tJtRl2oYeF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtRl2oYeF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtStduCd5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJtStduCd5 .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tJtStduCd5 .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tJtStduCd5 .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tJtStduCd5 .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tJtStduCd5 .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ffb82d;
  z-index: -1;
}
.cid-tJtStduCd5 nav.navbar {
  position: fixed;
}
.cid-tJtStduCd5 .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tJtStduCd5 .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tJtStduCd5 .nav-item {
    border: 0;
  }
}
.cid-tJtStduCd5 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tJtStduCd5 .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tJtStduCd5 .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tJtStduCd5 .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tJtStduCd5 .title-wrap:hover span {
  color: white;
}
.cid-tJtStduCd5 .title-wrap:hover:before {
  height: 100%;
}
.cid-tJtStduCd5 .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-tJtStduCd5 .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ffb82d;
}
.cid-tJtStduCd5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJtStduCd5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJtStduCd5 .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tJtStduCd5 .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tJtStduCd5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJtStduCd5 .nav-link {
  position: relative;
}
.cid-tJtStduCd5 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tJtStduCd5 .container {
    flex-wrap: nowrap;
  }
}
.cid-tJtStduCd5 .dropdown-menu,
.cid-tJtStduCd5 .navbar.opened {
  background: #ffffff !important;
}
.cid-tJtStduCd5 .nav-item:focus,
.cid-tJtStduCd5 .nav-link:focus {
  outline: none;
}
.cid-tJtStduCd5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJtStduCd5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJtStduCd5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJtStduCd5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJtStduCd5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJtStduCd5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJtStduCd5 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tJtStduCd5 .navbar.opened {
  transition: all 0.3s;
}
.cid-tJtStduCd5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJtStduCd5 .navbar .navbar-logo img {
  width: auto;
}
.cid-tJtStduCd5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJtStduCd5 .navbar.collapsed {
  justify-content: center;
}
.cid-tJtStduCd5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJtStduCd5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJtStduCd5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tJtStduCd5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJtStduCd5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJtStduCd5 .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-tJtStduCd5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJtStduCd5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJtStduCd5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJtStduCd5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJtStduCd5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJtStduCd5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJtStduCd5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJtStduCd5 .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-tJtStduCd5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJtStduCd5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJtStduCd5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJtStduCd5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJtStduCd5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJtStduCd5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tJtStduCd5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJtStduCd5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJtStduCd5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJtStduCd5 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tJtStduCd5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJtStduCd5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJtStduCd5 .dropdown-item.active,
.cid-tJtStduCd5 .dropdown-item:active {
  background-color: transparent;
}
.cid-tJtStduCd5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJtStduCd5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJtStduCd5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJtStduCd5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tJtStduCd5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJtStduCd5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJtStduCd5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJtStduCd5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJtStduCd5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJtStduCd5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tJtStduCd5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJtStduCd5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJtStduCd5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJtStduCd5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJtStduCd5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJtStduCd5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJtStduCd5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJtStduCd5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJtStduCd5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tJtStduCd5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tJtStduCd5 .navbar {
    height: 70px;
  }
  .cid-tJtStduCd5 .navbar.opened {
    height: auto;
  }
  .cid-tJtStduCd5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tJtStduCd5 .navbar-caption-wrap,
.cid-tJtStduCd5 .title-wrap {
  color: #272727;
}
.cid-tJtStei2HV {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/adobestock-594896573987-2000x1333.webp");
}
.cid-tJtStei2HV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtStei2HV .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-tJtStei2HV .container {
    padding: 0 30px;
  }
}
.cid-tJtStei2HV .row {
  justify-content: center;
}
.cid-tJtStei2HV .title-wrapper {
  margin: 0 12%;
}
@media (max-width: 992px) {
  .cid-tJtStei2HV .title-wrapper {
    margin: 0;
  }
}
.cid-tJtStei2HV .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tJtStei2HV .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-tJtStei2HV .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tJtStei2HV .text-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tJtStei2HV .mbr-section-subtitle {
  color: #ffb82d;
  text-align: center;
}
.cid-tJtStei2HV .mbr-section-title {
  color: #f1f4e9;
  text-align: center;
}
.cid-tJtStei2HV .mbr-text {
  color: #f1f4e9;
}
.cid-tJtStei2HV .mbr-name {
  color: #f1f4e9;
  text-align: center;
}
.cid-tJtStfhGBm {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tJtStfhGBm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtStfhGBm .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-tJtStfhGBm .container {
    padding: 0 30px;
  }
}
.cid-tJtStfhGBm .image-wrapper {
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-tJtStfhGBm .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tJtStfhGBm .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tJtStfhGBm .image-wrapper img {
    height: 300px;
  }
}
.cid-tJtStfhGBm .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tJtStfhGBm .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tJtStfhGBm .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tJtStfhGBm .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tJtStfhGBm .mbr-section-subtitle {
  color: #212529;
}
.cid-tJtStfhGBm .mbr-section-title {
  color: #212529;
}
.cid-tJtStfhGBm .mbr-text {
  color: #212529;
}
.cid-tJtStfKAJe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJtStfKAJe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtStfKAJe .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-tJtStfKAJe .container {
    padding: 0 30px;
  }
}
.cid-tJtStfKAJe .image-wrapper {
  margin-right: 80px;
  margin-right: 0;
  margin-left: 80px;
}
@media (max-width: 992px) {
  .cid-tJtStfKAJe .image-wrapper {
    margin: 0 0 30px 0;
  }
}
@media (max-width: 992px) {
  .cid-tJtStfKAJe .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tJtStfKAJe .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tJtStfKAJe .image-wrapper img {
    height: 300px;
  }
}
.cid-tJtStfKAJe .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tJtStfKAJe .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tJtStfKAJe .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tJtStfKAJe .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tJtStfKAJe .mbr-section-subtitle {
  color: #212529;
}
.cid-tJtStfKAJe .mbr-section-title {
  color: #212529;
}
.cid-tJtStfKAJe .mbr-text {
  color: #212529;
}
.cid-tJtStgda8Z {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tJtStgda8Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtStgda8Z .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-tJtStgda8Z .container {
    padding: 0 30px;
  }
}
.cid-tJtStgda8Z .image-wrapper {
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-tJtStgda8Z .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tJtStgda8Z .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tJtStgda8Z .image-wrapper img {
    height: 300px;
  }
}
.cid-tJtStgda8Z .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tJtStgda8Z .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tJtStgda8Z .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tJtStgda8Z .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tJtStgda8Z .mbr-section-subtitle {
  color: #212529;
}
.cid-tJtStgda8Z .mbr-section-title {
  color: #212529;
}
.cid-tJtStgda8Z .mbr-text {
  color: #212529;
}
.cid-tJtSthazsR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #101112;
}
.cid-tJtSthazsR .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tJtSthazsR .align-center {
    text-align: center;
  }
  .cid-tJtSthazsR .wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tJtSthazsR .block-btn {
  display: flex;
}
.cid-tJtSthazsR .mbr-section-subtitle {
  margin-bottom: 2rem;
}
.cid-tJtSthazsR h1 {
  margin-bottom: 0;
}
.cid-tJtSthazsR .wrapper {
  background-color: #101112;
  border-radius: 4px;
}
@media (min-width: 767px) {
  .cid-tJtSthazsR .container {
    padding: 0 3rem;
  }
  .cid-tJtSthazsR .wrapper {
    padding: 3.8rem 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tJtSthazsR .block-btn {
    justify-content: center;
  }
  .cid-tJtSthazsR .text-block {
    text-align: center;
  }
  .cid-tJtSthazsR .mbr-section-title {
    text-align: center;
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJtSthazsR .block-btn {
    justify-content: flex-end;
  }
  .cid-tJtSthazsR .btn {
    border-radius: 2px;
    margin-right: 0rem;
  }
}
.cid-tJtSthazsR .btn-white:hover {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.cid-tJtSthazsR .btn-white:hover::before {
  background-color: #000000 !important;
}
.cid-tJtSthazsR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtSthazsR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtSthDAhI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJtSthDAhI .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tJtSthDAhI .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tJtSthDAhI .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tJtSthDAhI .row {
    text-align: center;
  }
  .cid-tJtSthDAhI .row > div {
    margin: auto;
  }
  .cid-tJtSthDAhI .social-row {
    justify-content: center;
  }
}
.cid-tJtSthDAhI .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tJtSthDAhI .list {
  list-style: none;
  padding-left: 0;
  color: #18212f;
}
@media (max-width: 991px) {
  .cid-tJtSthDAhI .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJtSthDAhI .list {
    margin-bottom: 0rem;
  }
}
.cid-tJtSthDAhI .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tJtSthDAhI .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tJtSthDAhI div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tJtSthDAhI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtSthDAhI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtU2FhfP5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJtU2FhfP5 .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tJtU2FhfP5 .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tJtU2FhfP5 .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tJtU2FhfP5 .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tJtU2FhfP5 .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ffb82d;
  z-index: -1;
}
.cid-tJtU2FhfP5 nav.navbar {
  position: fixed;
}
.cid-tJtU2FhfP5 .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tJtU2FhfP5 .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tJtU2FhfP5 .nav-item {
    border: 0;
  }
}
.cid-tJtU2FhfP5 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tJtU2FhfP5 .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tJtU2FhfP5 .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tJtU2FhfP5 .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tJtU2FhfP5 .title-wrap:hover span {
  color: white;
}
.cid-tJtU2FhfP5 .title-wrap:hover:before {
  height: 100%;
}
.cid-tJtU2FhfP5 .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-tJtU2FhfP5 .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ffb82d;
}
.cid-tJtU2FhfP5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJtU2FhfP5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJtU2FhfP5 .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tJtU2FhfP5 .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tJtU2FhfP5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJtU2FhfP5 .nav-link {
  position: relative;
}
.cid-tJtU2FhfP5 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tJtU2FhfP5 .container {
    flex-wrap: nowrap;
  }
}
.cid-tJtU2FhfP5 .dropdown-menu,
.cid-tJtU2FhfP5 .navbar.opened {
  background: #ffffff !important;
}
.cid-tJtU2FhfP5 .nav-item:focus,
.cid-tJtU2FhfP5 .nav-link:focus {
  outline: none;
}
.cid-tJtU2FhfP5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJtU2FhfP5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJtU2FhfP5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJtU2FhfP5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJtU2FhfP5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJtU2FhfP5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJtU2FhfP5 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tJtU2FhfP5 .navbar.opened {
  transition: all 0.3s;
}
.cid-tJtU2FhfP5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJtU2FhfP5 .navbar .navbar-logo img {
  width: auto;
}
.cid-tJtU2FhfP5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJtU2FhfP5 .navbar.collapsed {
  justify-content: center;
}
.cid-tJtU2FhfP5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJtU2FhfP5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJtU2FhfP5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tJtU2FhfP5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJtU2FhfP5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJtU2FhfP5 .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-tJtU2FhfP5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJtU2FhfP5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJtU2FhfP5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJtU2FhfP5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJtU2FhfP5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJtU2FhfP5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJtU2FhfP5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJtU2FhfP5 .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-tJtU2FhfP5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJtU2FhfP5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJtU2FhfP5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJtU2FhfP5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJtU2FhfP5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJtU2FhfP5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tJtU2FhfP5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJtU2FhfP5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJtU2FhfP5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJtU2FhfP5 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tJtU2FhfP5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJtU2FhfP5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJtU2FhfP5 .dropdown-item.active,
.cid-tJtU2FhfP5 .dropdown-item:active {
  background-color: transparent;
}
.cid-tJtU2FhfP5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJtU2FhfP5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJtU2FhfP5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJtU2FhfP5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tJtU2FhfP5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJtU2FhfP5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJtU2FhfP5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJtU2FhfP5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJtU2FhfP5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJtU2FhfP5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tJtU2FhfP5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJtU2FhfP5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJtU2FhfP5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJtU2FhfP5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJtU2FhfP5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJtU2FhfP5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJtU2FhfP5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJtU2FhfP5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJtU2FhfP5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tJtU2FhfP5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tJtU2FhfP5 .navbar {
    height: 70px;
  }
  .cid-tJtU2FhfP5 .navbar.opened {
    height: auto;
  }
  .cid-tJtU2FhfP5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tJtU2FhfP5 .navbar-caption-wrap,
.cid-tJtU2FhfP5 .title-wrap {
  color: #272727;
}
.cid-tJtU2G0YUS {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/adobestock-594896573987-2000x1333.webp");
}
.cid-tJtU2G0YUS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtU2G0YUS .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-tJtU2G0YUS .container {
    padding: 0 30px;
  }
}
.cid-tJtU2G0YUS .row {
  justify-content: center;
}
.cid-tJtU2G0YUS .title-wrapper {
  margin: 0 12%;
}
@media (max-width: 992px) {
  .cid-tJtU2G0YUS .title-wrapper {
    margin: 0;
  }
}
.cid-tJtU2G0YUS .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tJtU2G0YUS .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-tJtU2G0YUS .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tJtU2G0YUS .text-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tJtU2G0YUS .mbr-section-subtitle {
  color: #ffb82d;
  text-align: center;
}
.cid-tJtU2G0YUS .mbr-section-title {
  color: #f1f4e9;
  text-align: center;
}
.cid-tJtU2G0YUS .mbr-text {
  color: #f1f4e9;
}
.cid-tJtU2G0YUS .mbr-name {
  color: #f1f4e9;
  text-align: center;
}
.cid-tJtU2GSvFO {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tJtU2GSvFO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtU2GSvFO .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-tJtU2GSvFO .container {
    padding: 0 30px;
  }
}
.cid-tJtU2GSvFO .image-wrapper {
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-tJtU2GSvFO .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tJtU2GSvFO .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tJtU2GSvFO .image-wrapper img {
    height: 300px;
  }
}
.cid-tJtU2GSvFO .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tJtU2GSvFO .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tJtU2GSvFO .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tJtU2GSvFO .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tJtU2GSvFO .mbr-section-subtitle {
  color: #212529;
}
.cid-tJtU2GSvFO .mbr-section-title {
  color: #212529;
}
.cid-tJtU2GSvFO .mbr-text {
  color: #212529;
}
.cid-tJtU2Hsr3f {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJtU2Hsr3f .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtU2Hsr3f .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-tJtU2Hsr3f .container {
    padding: 0 30px;
  }
}
.cid-tJtU2Hsr3f .image-wrapper {
  margin-right: 80px;
  margin-right: 0;
  margin-left: 80px;
}
@media (max-width: 992px) {
  .cid-tJtU2Hsr3f .image-wrapper {
    margin: 0 0 30px 0;
  }
}
@media (max-width: 992px) {
  .cid-tJtU2Hsr3f .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tJtU2Hsr3f .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tJtU2Hsr3f .image-wrapper img {
    height: 300px;
  }
}
.cid-tJtU2Hsr3f .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tJtU2Hsr3f .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tJtU2Hsr3f .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tJtU2Hsr3f .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tJtU2Hsr3f .mbr-section-subtitle {
  color: #212529;
}
.cid-tJtU2Hsr3f .mbr-section-title {
  color: #212529;
}
.cid-tJtU2Hsr3f .mbr-text {
  color: #212529;
}
.cid-tJtU2HT9yk {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tJtU2HT9yk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtU2HT9yk .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-tJtU2HT9yk .container {
    padding: 0 30px;
  }
}
.cid-tJtU2HT9yk .image-wrapper {
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-tJtU2HT9yk .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tJtU2HT9yk .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tJtU2HT9yk .image-wrapper img {
    height: 300px;
  }
}
.cid-tJtU2HT9yk .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tJtU2HT9yk .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tJtU2HT9yk .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tJtU2HT9yk .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tJtU2HT9yk .mbr-section-subtitle {
  color: #212529;
}
.cid-tJtU2HT9yk .mbr-section-title {
  color: #212529;
}
.cid-tJtU2HT9yk .mbr-text {
  color: #212529;
}
.cid-tJtU2IOxHR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #101112;
}
.cid-tJtU2IOxHR .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tJtU2IOxHR .align-center {
    text-align: center;
  }
  .cid-tJtU2IOxHR .wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tJtU2IOxHR .block-btn {
  display: flex;
}
.cid-tJtU2IOxHR .mbr-section-subtitle {
  margin-bottom: 2rem;
}
.cid-tJtU2IOxHR h1 {
  margin-bottom: 0;
}
.cid-tJtU2IOxHR .wrapper {
  background-color: #101112;
  border-radius: 4px;
}
@media (min-width: 767px) {
  .cid-tJtU2IOxHR .container {
    padding: 0 3rem;
  }
  .cid-tJtU2IOxHR .wrapper {
    padding: 3.8rem 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tJtU2IOxHR .block-btn {
    justify-content: center;
  }
  .cid-tJtU2IOxHR .text-block {
    text-align: center;
  }
  .cid-tJtU2IOxHR .mbr-section-title {
    text-align: center;
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJtU2IOxHR .block-btn {
    justify-content: flex-end;
  }
  .cid-tJtU2IOxHR .btn {
    border-radius: 2px;
    margin-right: 0rem;
  }
}
.cid-tJtU2IOxHR .btn-white:hover {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.cid-tJtU2IOxHR .btn-white:hover::before {
  background-color: #000000 !important;
}
.cid-tJtU2IOxHR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtU2IOxHR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtU2JgB2D {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJtU2JgB2D .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tJtU2JgB2D .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tJtU2JgB2D .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tJtU2JgB2D .row {
    text-align: center;
  }
  .cid-tJtU2JgB2D .row > div {
    margin: auto;
  }
  .cid-tJtU2JgB2D .social-row {
    justify-content: center;
  }
}
.cid-tJtU2JgB2D .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tJtU2JgB2D .list {
  list-style: none;
  padding-left: 0;
  color: #18212f;
}
@media (max-width: 991px) {
  .cid-tJtU2JgB2D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJtU2JgB2D .list {
    margin-bottom: 0rem;
  }
}
.cid-tJtU2JgB2D .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tJtU2JgB2D .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tJtU2JgB2D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tJtU2JgB2D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtU2JgB2D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtVPhfPiV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJtVPhfPiV .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tJtVPhfPiV .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tJtVPhfPiV .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tJtVPhfPiV .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tJtVPhfPiV .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ffb82d;
  z-index: -1;
}
.cid-tJtVPhfPiV nav.navbar {
  position: fixed;
}
.cid-tJtVPhfPiV .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tJtVPhfPiV .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tJtVPhfPiV .nav-item {
    border: 0;
  }
}
.cid-tJtVPhfPiV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tJtVPhfPiV .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tJtVPhfPiV .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tJtVPhfPiV .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tJtVPhfPiV .title-wrap:hover span {
  color: white;
}
.cid-tJtVPhfPiV .title-wrap:hover:before {
  height: 100%;
}
.cid-tJtVPhfPiV .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-tJtVPhfPiV .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ffb82d;
}
.cid-tJtVPhfPiV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJtVPhfPiV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJtVPhfPiV .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tJtVPhfPiV .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tJtVPhfPiV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJtVPhfPiV .nav-link {
  position: relative;
}
.cid-tJtVPhfPiV .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tJtVPhfPiV .container {
    flex-wrap: nowrap;
  }
}
.cid-tJtVPhfPiV .dropdown-menu,
.cid-tJtVPhfPiV .navbar.opened {
  background: #ffffff !important;
}
.cid-tJtVPhfPiV .nav-item:focus,
.cid-tJtVPhfPiV .nav-link:focus {
  outline: none;
}
.cid-tJtVPhfPiV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJtVPhfPiV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJtVPhfPiV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJtVPhfPiV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJtVPhfPiV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJtVPhfPiV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJtVPhfPiV .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tJtVPhfPiV .navbar.opened {
  transition: all 0.3s;
}
.cid-tJtVPhfPiV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJtVPhfPiV .navbar .navbar-logo img {
  width: auto;
}
.cid-tJtVPhfPiV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJtVPhfPiV .navbar.collapsed {
  justify-content: center;
}
.cid-tJtVPhfPiV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJtVPhfPiV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJtVPhfPiV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tJtVPhfPiV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJtVPhfPiV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJtVPhfPiV .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-tJtVPhfPiV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJtVPhfPiV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJtVPhfPiV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJtVPhfPiV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJtVPhfPiV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJtVPhfPiV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJtVPhfPiV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJtVPhfPiV .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-tJtVPhfPiV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJtVPhfPiV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJtVPhfPiV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJtVPhfPiV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJtVPhfPiV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJtVPhfPiV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tJtVPhfPiV .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJtVPhfPiV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJtVPhfPiV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJtVPhfPiV .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tJtVPhfPiV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJtVPhfPiV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJtVPhfPiV .dropdown-item.active,
.cid-tJtVPhfPiV .dropdown-item:active {
  background-color: transparent;
}
.cid-tJtVPhfPiV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJtVPhfPiV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJtVPhfPiV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJtVPhfPiV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tJtVPhfPiV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJtVPhfPiV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJtVPhfPiV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJtVPhfPiV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJtVPhfPiV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJtVPhfPiV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tJtVPhfPiV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJtVPhfPiV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJtVPhfPiV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJtVPhfPiV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJtVPhfPiV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJtVPhfPiV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJtVPhfPiV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJtVPhfPiV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJtVPhfPiV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tJtVPhfPiV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tJtVPhfPiV .navbar {
    height: 70px;
  }
  .cid-tJtVPhfPiV .navbar.opened {
    height: auto;
  }
  .cid-tJtVPhfPiV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tJtVPhfPiV .navbar-caption-wrap,
.cid-tJtVPhfPiV .title-wrap {
  color: #272727;
}
.cid-tJtVPi0AmB {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/adobestock-594896573987-2000x1333.webp");
}
.cid-tJtVPi0AmB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtVPi0AmB .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-tJtVPi0AmB .container {
    padding: 0 30px;
  }
}
.cid-tJtVPi0AmB .row {
  justify-content: center;
}
.cid-tJtVPi0AmB .title-wrapper {
  margin: 0 12%;
}
@media (max-width: 992px) {
  .cid-tJtVPi0AmB .title-wrapper {
    margin: 0;
  }
}
.cid-tJtVPi0AmB .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tJtVPi0AmB .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-tJtVPi0AmB .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tJtVPi0AmB .text-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tJtVPi0AmB .mbr-section-subtitle {
  color: #ffb82d;
  text-align: center;
}
.cid-tJtVPi0AmB .mbr-section-title {
  color: #f1f4e9;
  text-align: center;
}
.cid-tJtVPi0AmB .mbr-text {
  color: #f1f4e9;
}
.cid-tJtVPi0AmB .mbr-name {
  color: #f1f4e9;
  text-align: center;
}
.cid-tJtVPkGch3 {
  padding-top: 30px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-tJtVPkGch3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtVPkGch3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtVPkGch3 .mbr-text {
  text-align: left;
}
.cid-tJtVPl7KvQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #101112;
}
.cid-tJtVPl7KvQ .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tJtVPl7KvQ .align-center {
    text-align: center;
  }
  .cid-tJtVPl7KvQ .wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tJtVPl7KvQ .block-btn {
  display: flex;
}
.cid-tJtVPl7KvQ .mbr-section-subtitle {
  margin-bottom: 2rem;
}
.cid-tJtVPl7KvQ h1 {
  margin-bottom: 0;
}
.cid-tJtVPl7KvQ .wrapper {
  background-color: #101112;
  border-radius: 4px;
}
@media (min-width: 767px) {
  .cid-tJtVPl7KvQ .container {
    padding: 0 3rem;
  }
  .cid-tJtVPl7KvQ .wrapper {
    padding: 3.8rem 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tJtVPl7KvQ .block-btn {
    justify-content: center;
  }
  .cid-tJtVPl7KvQ .text-block {
    text-align: center;
  }
  .cid-tJtVPl7KvQ .mbr-section-title {
    text-align: center;
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJtVPl7KvQ .block-btn {
    justify-content: flex-end;
  }
  .cid-tJtVPl7KvQ .btn {
    border-radius: 2px;
    margin-right: 0rem;
  }
}
.cid-tJtVPl7KvQ .btn-white:hover {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.cid-tJtVPl7KvQ .btn-white:hover::before {
  background-color: #000000 !important;
}
.cid-tJtVPl7KvQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtVPl7KvQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtVPlDII6 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJtVPlDII6 .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tJtVPlDII6 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tJtVPlDII6 .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tJtVPlDII6 .row {
    text-align: center;
  }
  .cid-tJtVPlDII6 .row > div {
    margin: auto;
  }
  .cid-tJtVPlDII6 .social-row {
    justify-content: center;
  }
}
.cid-tJtVPlDII6 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tJtVPlDII6 .list {
  list-style: none;
  padding-left: 0;
  color: #18212f;
}
@media (max-width: 991px) {
  .cid-tJtVPlDII6 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJtVPlDII6 .list {
    margin-bottom: 0rem;
  }
}
.cid-tJtVPlDII6 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tJtVPlDII6 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tJtVPlDII6 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tJtVPlDII6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtVPlDII6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtWiyO1tk {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJtWiyO1tk .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tJtWiyO1tk .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tJtWiyO1tk .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tJtWiyO1tk .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tJtWiyO1tk .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ffb82d;
  z-index: -1;
}
.cid-tJtWiyO1tk nav.navbar {
  position: fixed;
}
.cid-tJtWiyO1tk .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tJtWiyO1tk .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tJtWiyO1tk .nav-item {
    border: 0;
  }
}
.cid-tJtWiyO1tk .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tJtWiyO1tk .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tJtWiyO1tk .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tJtWiyO1tk .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tJtWiyO1tk .title-wrap:hover span {
  color: white;
}
.cid-tJtWiyO1tk .title-wrap:hover:before {
  height: 100%;
}
.cid-tJtWiyO1tk .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-tJtWiyO1tk .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ffb82d;
}
.cid-tJtWiyO1tk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJtWiyO1tk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJtWiyO1tk .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tJtWiyO1tk .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tJtWiyO1tk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJtWiyO1tk .nav-link {
  position: relative;
}
.cid-tJtWiyO1tk .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tJtWiyO1tk .container {
    flex-wrap: nowrap;
  }
}
.cid-tJtWiyO1tk .dropdown-menu,
.cid-tJtWiyO1tk .navbar.opened {
  background: #ffffff !important;
}
.cid-tJtWiyO1tk .nav-item:focus,
.cid-tJtWiyO1tk .nav-link:focus {
  outline: none;
}
.cid-tJtWiyO1tk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJtWiyO1tk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJtWiyO1tk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJtWiyO1tk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJtWiyO1tk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJtWiyO1tk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJtWiyO1tk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tJtWiyO1tk .navbar.opened {
  transition: all 0.3s;
}
.cid-tJtWiyO1tk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJtWiyO1tk .navbar .navbar-logo img {
  width: auto;
}
.cid-tJtWiyO1tk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJtWiyO1tk .navbar.collapsed {
  justify-content: center;
}
.cid-tJtWiyO1tk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJtWiyO1tk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJtWiyO1tk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tJtWiyO1tk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJtWiyO1tk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJtWiyO1tk .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-tJtWiyO1tk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJtWiyO1tk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJtWiyO1tk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJtWiyO1tk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJtWiyO1tk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJtWiyO1tk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJtWiyO1tk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJtWiyO1tk .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-tJtWiyO1tk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJtWiyO1tk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJtWiyO1tk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJtWiyO1tk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJtWiyO1tk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJtWiyO1tk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tJtWiyO1tk .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJtWiyO1tk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJtWiyO1tk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJtWiyO1tk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tJtWiyO1tk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJtWiyO1tk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJtWiyO1tk .dropdown-item.active,
.cid-tJtWiyO1tk .dropdown-item:active {
  background-color: transparent;
}
.cid-tJtWiyO1tk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJtWiyO1tk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJtWiyO1tk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJtWiyO1tk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tJtWiyO1tk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJtWiyO1tk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJtWiyO1tk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJtWiyO1tk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJtWiyO1tk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJtWiyO1tk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tJtWiyO1tk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJtWiyO1tk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJtWiyO1tk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJtWiyO1tk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJtWiyO1tk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJtWiyO1tk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJtWiyO1tk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJtWiyO1tk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJtWiyO1tk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tJtWiyO1tk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tJtWiyO1tk .navbar {
    height: 70px;
  }
  .cid-tJtWiyO1tk .navbar.opened {
    height: auto;
  }
  .cid-tJtWiyO1tk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tJtWiyO1tk .navbar-caption-wrap,
.cid-tJtWiyO1tk .title-wrap {
  color: #272727;
}
.cid-tJtWiznCi8 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/adobestock-594896573987-2000x1333.webp");
}
.cid-tJtWiznCi8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtWiznCi8 .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-tJtWiznCi8 .container {
    padding: 0 30px;
  }
}
.cid-tJtWiznCi8 .row {
  justify-content: center;
}
.cid-tJtWiznCi8 .title-wrapper {
  margin: 0 12%;
}
@media (max-width: 992px) {
  .cid-tJtWiznCi8 .title-wrapper {
    margin: 0;
  }
}
.cid-tJtWiznCi8 .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tJtWiznCi8 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-tJtWiznCi8 .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tJtWiznCi8 .text-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tJtWiznCi8 .mbr-section-subtitle {
  color: #ffb82d;
  text-align: center;
}
.cid-tJtWiznCi8 .mbr-section-title {
  color: #f1f4e9;
  text-align: center;
}
.cid-tJtWiznCi8 .mbr-text {
  color: #f1f4e9;
}
.cid-tJtWiznCi8 .mbr-name {
  color: #f1f4e9;
  text-align: center;
}
.cid-tJtWizNZJU {
  padding-top: 30px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-tJtWizNZJU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtWizNZJU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtWizNZJU .mbr-text {
  text-align: left;
}
.cid-tJtWiAfV5V {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #101112;
}
.cid-tJtWiAfV5V .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tJtWiAfV5V .align-center {
    text-align: center;
  }
  .cid-tJtWiAfV5V .wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tJtWiAfV5V .block-btn {
  display: flex;
}
.cid-tJtWiAfV5V .mbr-section-subtitle {
  margin-bottom: 2rem;
}
.cid-tJtWiAfV5V h1 {
  margin-bottom: 0;
}
.cid-tJtWiAfV5V .wrapper {
  background-color: #101112;
  border-radius: 4px;
}
@media (min-width: 767px) {
  .cid-tJtWiAfV5V .container {
    padding: 0 3rem;
  }
  .cid-tJtWiAfV5V .wrapper {
    padding: 3.8rem 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tJtWiAfV5V .block-btn {
    justify-content: center;
  }
  .cid-tJtWiAfV5V .text-block {
    text-align: center;
  }
  .cid-tJtWiAfV5V .mbr-section-title {
    text-align: center;
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJtWiAfV5V .block-btn {
    justify-content: flex-end;
  }
  .cid-tJtWiAfV5V .btn {
    border-radius: 2px;
    margin-right: 0rem;
  }
}
.cid-tJtWiAfV5V .btn-white:hover {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.cid-tJtWiAfV5V .btn-white:hover::before {
  background-color: #000000 !important;
}
.cid-tJtWiAfV5V .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtWiAfV5V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtWiADPQr {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJtWiADPQr .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tJtWiADPQr .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tJtWiADPQr .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tJtWiADPQr .row {
    text-align: center;
  }
  .cid-tJtWiADPQr .row > div {
    margin: auto;
  }
  .cid-tJtWiADPQr .social-row {
    justify-content: center;
  }
}
.cid-tJtWiADPQr .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tJtWiADPQr .list {
  list-style: none;
  padding-left: 0;
  color: #18212f;
}
@media (max-width: 991px) {
  .cid-tJtWiADPQr .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJtWiADPQr .list {
    margin-bottom: 0rem;
  }
}
.cid-tJtWiADPQr .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tJtWiADPQr .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tJtWiADPQr div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tJtWiADPQr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtWiADPQr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
