body {
  font-family: Barlow;
}
.display-1 {
  font-family: 'Heebo', sans-serif;
  font-size: 4.8rem;
  letter-spacing: -1px;
}
.display-1 > .mbr-iconfont {
  font-size: 7.68rem;
}
.display-2 {
  font-family: 'Heebo', sans-serif;
  font-size: 3.4rem;
}
.display-2 > .mbr-iconfont {
  font-size: 5.44rem;
}
.display-4 {
  font-family: 'Heebo', sans-serif;
  font-size: 0.9rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-5 {
  font-family: 'Heebo', sans-serif;
  font-size: 2.6rem;
  letter-spacing: -1px;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 4.16rem;
}
.display-7 {
  font-family: 'Heebo', sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 1.76rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.84rem;
    font-size: calc( 2.33rem + (4.8 - 2.33) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.33rem + (4.8 - 2.33) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.72rem;
    font-size: calc( 1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #ffc60a !important;
}
.bg-success {
  background-color: #ffc60a !important;
}
.bg-info {
  background-color: #767676 !important;
}
.bg-warning {
  background-color: #767676 !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffc60a !important;
  border-color: #ffc60a !important;
  color: #0a0800 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #0a0800 !important;
  background-color: #ffd857 !important;
  border-color: #ffd857 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #0a0800 !important;
  background-color: #ffd857 !important;
  border-color: #ffd857 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #255eac !important;
  border-color: #255eac !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #4683d7 !important;
  border-color: #4683d7 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #4683d7 !important;
  border-color: #4683d7 !important;
}
.btn-info,
.btn-info:active {
  background-color: #767676 !important;
  border-color: #767676 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #9c9c9c !important;
  border-color: #9c9c9c !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #9c9c9c !important;
  border-color: #9c9c9c !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffc60a !important;
  border-color: #ffc60a !important;
  color: #0a0800 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #0a0800 !important;
  background-color: #ffd857 !important;
  border-color: #ffd857 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #0a0800 !important;
  background-color: #ffd857 !important;
  border-color: #ffd857 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #767676 !important;
  border-color: #767676 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #9c9c9c !important;
  border-color: #9c9c9c !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9c9c9c !important;
  border-color: #9c9c9c !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ccc3a5 !important;
  border-color: #ccc3a5 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ccc3a5 !important;
  border-color: #ccc3a5 !important;
}
.btn-white {
  color: #222222 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #222222 !important;
  border-color: #222222 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #484848 !important;
  border-color: #484848 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #484848 !important;
  border-color: #484848 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #a37d00;
  color: #a37d00;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0a0800;
  background-color: #ffc60a;
  border-color: #ffc60a;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #0a0800 !important;
  background-color: #ffc60a !important;
  border-color: #ffc60a !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #133058;
  color: #133058;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #255eac;
  border-color: #255eac;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #255eac !important;
  border-color: #255eac !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #434343;
  color: #434343;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #767676;
  border-color: #767676;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #767676 !important;
  border-color: #767676 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #a37d00;
  color: #a37d00;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #0a0800;
  background-color: #ffc60a;
  border-color: #ffc60a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #0a0800 !important;
  background-color: #ffc60a !important;
  border-color: #ffc60a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #434343;
  color: #434343;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #767676;
  border-color: #767676;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #767676 !important;
  border-color: #767676 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #222222;
  border-color: #222222;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #222222 !important;
  border-color: #222222 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ffc60a !important;
}
.text-secondary {
  color: #255eac !important;
}
.text-success {
  color: #ffc60a !important;
}
.text-info {
  color: #767676 !important;
}
.text-warning {
  color: #767676 !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #ffde70 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #5b92dc !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #ffde70 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #a9a9a9 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #a9a9a9 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #d6ceb5 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #000000 !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #767676;
}
.alert-warning {
  background-color: #767676;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffc60a;
  border-color: #ffc60a;
  color: #241b00;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffc60a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fff5d6;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fff5d6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #b6b6b6;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #b6b6b6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Heebo', sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
}
.form-control > .mbr-iconfont {
  font-size: 1.76rem;
}
blockquote {
  border-color: #ffc60a;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffc60a;
  color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ffc60a;
  border-bottom-color: #ffc60a;
}
.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: #ffc60a !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: #255eac !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%;
}
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='%23ffc60a' %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;
}
.cid-t7OB5unSEi {
  z-index: 1000;
  width: 100%;
}
.cid-t7OB5unSEi nav.navbar {
  position: fixed;
}
.cid-t7OB5unSEi .nav-link,
.cid-t7OB5unSEi .dropdown-item {
  font-weight: 400;
}
.cid-t7OB5unSEi .nav-link:hover,
.cid-t7OB5unSEi .dropdown-item:hover {
  color: #ffc60a !important;
}
.cid-t7OB5unSEi .navbar-short {
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
}
.cid-t7OB5unSEi .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-t7OB5unSEi .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t7OB5unSEi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t7OB5unSEi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t7OB5unSEi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t7OB5unSEi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t7OB5unSEi .nav-link {
  position: relative;
}
.cid-t7OB5unSEi .container {
  display: flex;
}
.cid-t7OB5unSEi .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t7OB5unSEi .dropdown-menu,
.cid-t7OB5unSEi .navbar.opened {
  background: #282124 !important;
}
.cid-t7OB5unSEi .nav-item:focus,
.cid-t7OB5unSEi .nav-link:focus {
  outline: none;
}
.cid-t7OB5unSEi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t7OB5unSEi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t7OB5unSEi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-t7OB5unSEi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t7OB5unSEi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t7OB5unSEi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t7OB5unSEi .navbar {
  min-height: 90px;
  transition: all .3s;
  background: rgba(40, 33, 36, 0);
}
.cid-t7OB5unSEi .navbar.opened {
  transition: all .3s;
}
.cid-t7OB5unSEi .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t7OB5unSEi .navbar .navbar-logo img {
  width: auto;
}
.cid-t7OB5unSEi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t7OB5unSEi .navbar.collapsed {
  justify-content: center;
}
.cid-t7OB5unSEi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t7OB5unSEi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t7OB5unSEi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t7OB5unSEi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t7OB5unSEi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t7OB5unSEi .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-t7OB5unSEi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t7OB5unSEi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t7OB5unSEi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t7OB5unSEi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t7OB5unSEi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t7OB5unSEi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t7OB5unSEi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t7OB5unSEi .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-t7OB5unSEi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t7OB5unSEi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t7OB5unSEi .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t7OB5unSEi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t7OB5unSEi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t7OB5unSEi .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t7OB5unSEi .navbar.navbar-short {
  min-height: 80px;
  background: #235fac;
}
.cid-t7OB5unSEi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t7OB5unSEi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t7OB5unSEi .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t7OB5unSEi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t7OB5unSEi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t7OB5unSEi .dropdown-item.active,
.cid-t7OB5unSEi .dropdown-item:active {
  background-color: transparent;
}
.cid-t7OB5unSEi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t7OB5unSEi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t7OB5unSEi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t7OB5unSEi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #282124;
}
.cid-t7OB5unSEi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t7OB5unSEi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t7OB5unSEi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t7OB5unSEi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t7OB5unSEi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t7OB5unSEi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t7OB5unSEi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t7OB5unSEi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t7OB5unSEi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t7OB5unSEi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t7OB5unSEi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t7OB5unSEi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t7OB5unSEi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t7OB5unSEi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t7OB5unSEi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t7OB5unSEi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t7OB5unSEi .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t7OB5unSEi .navbar {
    height: 70px;
  }
  .cid-t7OB5unSEi .navbar.opened {
    height: auto;
  }
  .cid-t7OB5unSEi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t7OqAH3FkV {
  padding-top: 150px;
  padding-bottom: 225px;
}
.cid-t7OqAH3FkV .row {
  position: relative;
}
.cid-t7OqAH3FkV .container {
  max-width: 1500px;
}
.cid-t7OqAH3FkV h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 0rem;
  bottom: 25%;
}
.cid-t7OqAH3FkV .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-t7OqAH3FkV .container {
    padding: 0 4rem;
  }
}
.cid-tUDWlPZ2JQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tUDWlPZ2JQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUDWlPZ2JQ .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-tUDWlPZ2JQ .container {
    padding: 0 25px;
  }
}
.cid-tUDWlPZ2JQ .row {
  justify-content: center;
}
.cid-tUDWlPZ2JQ .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-tUDWlPZ2JQ .item {
  margin-bottom: 30px;
}
.cid-tUDWlPZ2JQ .item a {
  display: block;
}
.cid-tUDWlPZ2JQ .item a:hover .item-wrapper .item-img img,
.cid-tUDWlPZ2JQ .item a:focus .item-wrapper .item-img img {
  transform: scale(1.05) translateX(2%);
}
.cid-tUDWlPZ2JQ .item a .item-wrapper {
  border-radius: 0 !important;
}
.cid-tUDWlPZ2JQ .item a .item-wrapper .item-img {
  overflow: hidden;
  margin-bottom: 25px;
}
.cid-tUDWlPZ2JQ .item a .item-wrapper .item-img img {
  height: 250px;
  object-fit: cover;
  transform: scale(1.05) translateX(0);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-tUDWlPZ2JQ .item a .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-tUDWlPZ2JQ .item a .item-wrapper .item-content .mbr-desc {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tUDWlPZ2JQ .item a .item-wrapper .item-content .mbr-desc:hover,
.cid-tUDWlPZ2JQ .item a .item-wrapper .item-content .mbr-desc:focus {
  opacity: .5;
}
.cid-tUDWlPZ2JQ .item a .item-wrapper .item-content .item-title {
  margin-bottom: 0;
}
.cid-tUDWlPZ2JQ .item-title {
  color: #000000;
}
.cid-tUDWlPZ2JQ .mbr-desc {
  color: #000000;
}
.cid-tUDPvcgG4h {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #efeeee;
}
.cid-tUDPvcgG4h .row {
  justify-content: space-between;
  padding: 0 1rem;
}
.cid-tUDPvcgG4h .container {
  max-width: 1500px;
}
.cid-tUDPvcgG4h .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-tUDPvcgG4h .container {
    padding: 0 4rem;
  }
}
.cid-tUDPvcgG4h .mbr-text,
.cid-tUDPvcgG4h .mbr-section-btn {
  color: #333333;
}
.cid-tUDPvcgG4h .btn {
  width: -webkit-fill-available;
  margin: 0.4rem !important;
}
.cid-tUDPvcgG4h .pt-5 {
  padding-top: 4rem !important;
}
@media (max-width: 922px) {
  .cid-tUDPvcgG4h .align-left {
    text-align: center;
  }
  .cid-tUDPvcgG4h .row {
    justify-content: center;
    padding: 0rem;
  }
}
.cid-tUDPvcgG4h .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUDPvcgG4h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUDPvcgG4h H1 {
  color: #255eac;
}
.cid-tUDVh6qdNw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tUDVh6qdNw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUDVh6qdNw .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-tUDVh6qdNw .container {
    padding: 0 25px;
  }
}
.cid-tUDVh6qdNw .row {
  justify-content: center;
}
.cid-tUDVh6qdNw .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-tUDVh6qdNw .item {
  margin-bottom: 30px;
}
.cid-tUDVh6qdNw .item a {
  display: block;
}
.cid-tUDVh6qdNw .item a:hover .item-wrapper .item-img img,
.cid-tUDVh6qdNw .item a:focus .item-wrapper .item-img img {
  transform: scale(1.05) translateX(2%);
}
.cid-tUDVh6qdNw .item a .item-wrapper {
  border-radius: 0 !important;
}
.cid-tUDVh6qdNw .item a .item-wrapper .item-img {
  overflow: hidden;
  margin-bottom: 25px;
}
.cid-tUDVh6qdNw .item a .item-wrapper .item-img img {
  height: 450px;
  object-fit: cover;
  transform: scale(1.05) translateX(0);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-tUDVh6qdNw .item a .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-tUDVh6qdNw .item a .item-wrapper .item-content .mbr-desc {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tUDVh6qdNw .item a .item-wrapper .item-content .mbr-desc:hover,
.cid-tUDVh6qdNw .item a .item-wrapper .item-content .mbr-desc:focus {
  opacity: .5;
}
.cid-tUDVh6qdNw .item a .item-wrapper .item-content .item-title {
  margin-bottom: 0;
}
.cid-tUDVh6qdNw .item-title {
  color: #000000;
}
.cid-tUDVh6qdNw .mbr-desc {
  color: #000000;
}
.cid-tUDYfnGSz4 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tUDYfnGSz4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUDYfnGSz4 .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-tUDYfnGSz4 .container {
    padding: 0 30px;
  }
}
.cid-tUDYfnGSz4 .row {
  justify-content: center;
}
.cid-tUDYfnGSz4 .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-tUDYfnGSz4 .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .cid-tUDYfnGSz4 .desc-wrapper {
    margin-bottom: 30px;
  }
}
.cid-tUDYfnGSz4 .desc-wrapper .desc-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tUDYfnGSz4 .desc-wrapper .desc-wrap {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-tUDYfnGSz4 .desc-wrapper .desc-wrap {
    margin-bottom: 30px;
  }
}
.cid-tUDYfnGSz4 .desc-wrapper .desc-wrap .number-wrap {
  display: inline-flex;
  margin-right: 30px;
  min-width: 85px;
}
.cid-tUDYfnGSz4 .desc-wrapper .desc-wrap .number-wrap .mbr-number {
  margin-bottom: 0;
}
.cid-tUDYfnGSz4 .desc-wrapper .desc-wrap .number-wrap .mbr-iconfont {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-top: 20px;
}
.cid-tUDYfnGSz4 .desc-wrapper .desc-wrap .mbr-desc {
  opacity: .6;
  margin-bottom: 0;
}
.cid-tUDYfnGSz4 .text-wrapper {
  width: 50%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-tUDYfnGSz4 .text-wrapper {
    width: 100%;
  }
}
.cid-tUDYfnGSz4 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tUDYfnGSz4 .mbr-section-title {
  color: #000000;
}
.cid-tUDYfnGSz4 .mbr-text {
  color: #000000;
}
.cid-tUDYfnGSz4 .mbr-number {
  color: #000000;
}
.cid-tUDYfnGSz4 .mbr-desc {
  color: #000000;
}
.cid-tUE0whPXo3 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tUE0whPXo3 .container {
  max-width: 1500px;
}
.cid-tUE0whPXo3 img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-tUE0whPXo3 img:hover {
  transform: scale(1.1);
}
.cid-tUE0whPXo3 .row {
  background: #ffffff;
}
.cid-tUE0whPXo3 .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-tUE0whPXo3 h2 {
  padding: 0;
  margin: 0;
}
.cid-tUE0whPXo3 .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUE0whPXo3 .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-tUE0whPXo3 .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-tUE0whPXo3 .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-tUE0whPXo3 .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-tUE0whPXo3 .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-tUE0whPXo3 .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-tUE0whPXo3 .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-tUE0whPXo3 .row {
    margin: 0rem;
  }
  .cid-tUE0whPXo3 .text-col {
    padding: 2rem 1rem;
  }
  .cid-tUE0whPXo3 .number {
    margin-right: 2rem;
  }
  .cid-tUE0whPXo3 .img-col {
    margin-bottom: 3rem;
  }
}
.cid-tUE0whPXo3 H2 {
  color: #333333;
}
.cid-tUE0whPXo3 .mbr-text {
  color: #767676;
}
.cid-tUE0whPXo3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUE0whPXo3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUE0NuKHHo {
  padding-top: 90px;
  padding-bottom: 180px;
  background-image: url("../../../assets/images/pexels-kelly-6595779-2000x1124.jpg");
}
.cid-tUE0NuKHHo .row {
  justify-content: flex-end;
}
.cid-tUE0NuKHHo .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 30%;
  background-color: #ffffff;
}
.cid-tUE0NuKHHo .block {
  background-color: #ffc60a;
}
.cid-tUE0NuKHHo img {
  width: 100%;
}
.cid-tUE0NuKHHo .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
}
.cid-tUE0NuKHHo .content {
  max-width: 600px;
}
.cid-tUE0NuKHHo h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 19rem;
  bottom: 35%;
}
@media (max-width: 1600px) {
  .cid-tUE0NuKHHo .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-tUE0NuKHHo h4 {
    right: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-tUE0NuKHHo .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-tUE0NuKHHo h4 {
    right: 2rem;
    bottom: 30%;
  }
}
.cid-tUE0NuKHHo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUE0NuKHHo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUE0NuKHHo H1 {
  color: #282124;
}
.cid-tUE0NuKHHo .mbr-text,
.cid-tUE0NuKHHo .mbr-section-btn {
  color: #282124;
}
.cid-t80y4ndfiZ {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-t80y4ndfiZ .row {
  justify-content: space-between;
  padding: 0 1rem;
}
.cid-t80y4ndfiZ .container {
  max-width: 1500px;
}
.cid-t80y4ndfiZ .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-t80y4ndfiZ .container {
    padding: 0 4rem;
  }
}
.cid-t80y4ndfiZ .mbr-text,
.cid-t80y4ndfiZ .mbr-section-btn {
  color: #282124;
}
.cid-t80y4ndfiZ .btn {
  width: -webkit-fill-available;
  margin: 0.4rem !important;
}
.cid-t80y4ndfiZ .pt-5 {
  padding-top: 4rem !important;
}
@media (max-width: 922px) {
  .cid-t80y4ndfiZ .align-left {
    text-align: center;
  }
  .cid-t80y4ndfiZ .row {
    justify-content: center;
    padding: 0rem;
  }
}
.cid-t80y4ndfiZ H1 {
  color: #255eac;
}
.cid-t80ynZ6h7s {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t80ynZ6h7s .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t80ynZ6h7s .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-t80ynZ6h7s .row {
    text-align: center;
  }
  .cid-t80ynZ6h7s .row > div {
    margin: auto;
  }
  .cid-t80ynZ6h7s .social-row {
    justify-content: center;
  }
}
.cid-t80ynZ6h7s .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-t80ynZ6h7s .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-t80ynZ6h7s .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t80ynZ6h7s .list {
    margin-bottom: 0rem;
  }
}
.cid-t80ynZ6h7s .mbr-text {
  color: #767676;
}
.cid-t80ynZ6h7s .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-t80ynZ6h7s .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-t80ynZ6h7s div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-t80ynZ6h7s .mbr-section-subtitle {
  color: #255eac;
}
.cid-tUEh9y5oY1 {
  z-index: 1000;
  width: 100%;
}
.cid-tUEh9y5oY1 nav.navbar {
  position: fixed;
}
.cid-tUEh9y5oY1 .nav-link,
.cid-tUEh9y5oY1 .dropdown-item {
  font-weight: 400;
}
.cid-tUEh9y5oY1 .nav-link:hover,
.cid-tUEh9y5oY1 .dropdown-item:hover {
  color: #ffc60a !important;
}
.cid-tUEh9y5oY1 .navbar-short {
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
}
.cid-tUEh9y5oY1 .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-tUEh9y5oY1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tUEh9y5oY1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tUEh9y5oY1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tUEh9y5oY1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tUEh9y5oY1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tUEh9y5oY1 .nav-link {
  position: relative;
}
.cid-tUEh9y5oY1 .container {
  display: flex;
}
.cid-tUEh9y5oY1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tUEh9y5oY1 .dropdown-menu,
.cid-tUEh9y5oY1 .navbar.opened {
  background: #282124 !important;
}
.cid-tUEh9y5oY1 .nav-item:focus,
.cid-tUEh9y5oY1 .nav-link:focus {
  outline: none;
}
.cid-tUEh9y5oY1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tUEh9y5oY1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tUEh9y5oY1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-tUEh9y5oY1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUEh9y5oY1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tUEh9y5oY1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tUEh9y5oY1 .navbar {
  min-height: 90px;
  transition: all .3s;
  background: rgba(40, 33, 36, 0);
}
.cid-tUEh9y5oY1 .navbar.opened {
  transition: all .3s;
}
.cid-tUEh9y5oY1 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tUEh9y5oY1 .navbar .navbar-logo img {
  width: auto;
}
.cid-tUEh9y5oY1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tUEh9y5oY1 .navbar.collapsed {
  justify-content: center;
}
.cid-tUEh9y5oY1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tUEh9y5oY1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tUEh9y5oY1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tUEh9y5oY1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tUEh9y5oY1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tUEh9y5oY1 .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-tUEh9y5oY1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tUEh9y5oY1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tUEh9y5oY1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tUEh9y5oY1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tUEh9y5oY1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tUEh9y5oY1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tUEh9y5oY1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tUEh9y5oY1 .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-tUEh9y5oY1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tUEh9y5oY1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tUEh9y5oY1 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tUEh9y5oY1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tUEh9y5oY1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tUEh9y5oY1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tUEh9y5oY1 .navbar.navbar-short {
  min-height: 80px;
  background: #235fac;
}
.cid-tUEh9y5oY1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tUEh9y5oY1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tUEh9y5oY1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tUEh9y5oY1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tUEh9y5oY1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tUEh9y5oY1 .dropdown-item.active,
.cid-tUEh9y5oY1 .dropdown-item:active {
  background-color: transparent;
}
.cid-tUEh9y5oY1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tUEh9y5oY1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tUEh9y5oY1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tUEh9y5oY1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #282124;
}
.cid-tUEh9y5oY1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tUEh9y5oY1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tUEh9y5oY1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tUEh9y5oY1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tUEh9y5oY1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tUEh9y5oY1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tUEh9y5oY1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tUEh9y5oY1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tUEh9y5oY1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tUEh9y5oY1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tUEh9y5oY1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tUEh9y5oY1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tUEh9y5oY1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tUEh9y5oY1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tUEh9y5oY1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tUEh9y5oY1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUEh9y5oY1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tUEh9y5oY1 .navbar {
    height: 70px;
  }
  .cid-tUEh9y5oY1 .navbar.opened {
    height: auto;
  }
  .cid-tUEh9y5oY1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tUEhocwAtI {
  padding-top: 150px;
  padding-bottom: 30px;
  background-color: #282124;
}
.cid-tUEhocwAtI .row {
  position: relative;
}
.cid-tUEhocwAtI .container {
  max-width: 1500px;
}
.cid-tUEhocwAtI h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 0rem;
  bottom: 25%;
}
.cid-tUEhocwAtI .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-tUEhocwAtI .container {
    padding: 0 4rem;
  }
}
.cid-tUEhocwAtI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUEhocwAtI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUEhocwAtI H3 {
  color: #333333;
}
.cid-tUEh1jBcDk {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tUEh1jBcDk .mbr-section-title,
.cid-tUEh1jBcDk .title__address,
.cid-tUEh1jBcDk .title__social {
  margin-bottom: 20px;
}
.cid-tUEh1jBcDk .info {
  margin-bottom: 20px;
}
.cid-tUEh1jBcDk .text__info,
.cid-tUEh1jBcDk .work__time,
.cid-tUEh1jBcDk .work__address {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-tUEh1jBcDk .info__wrap {
    padding: 0 30px;
  }
}
.cid-tUEh1jBcDk .divider {
  background-color: #191f23;
  width: 100%;
  height: 1px;
  margin: 75px 15px 85px;
  opacity: 0.6;
}
.cid-tUEh1jBcDk .dragArea .form-control {
  height: 49px;
  font-size: 16px;
  color: #232226;
  padding: 14px 15px;
  border: none !important;
  line-height: 1.3;
  border-radius: 4px;
  background-color: #f5f7fd !important;
}
.cid-tUEh1jBcDk .dragArea .form-control:hover,
.cid-tUEh1jBcDk .dragArea .form-control:focus {
  border: none !important;
}
.cid-tUEh1jBcDk .dragArea .jq-selectbox li:hover,
.cid-tUEh1jBcDk .dragArea .jq-selectbox li.selected {
  background-color: #767676;
  color: #ffffff;
}
.cid-tUEh1jBcDk .dragArea .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-color: #255eac !important;
}
.cid-tUEh1jBcDk .dragArea .jq-selectbox__select {
  padding: 14px 15px;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.cid-tUEh1jBcDk .dragArea .jq-selectbox__select-text {
  color: #232226;
  opacity: 0.8;
}
.cid-tUEh1jBcDk .dragArea .jq-selectbox__trigger-arrow {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 7px;
  height: 7px;
  top: 40%;
  right: 20px;
  border-color: #255eac;
}
.cid-tUEh1jBcDk .dragArea textarea {
  height: 160px !important;
}
.cid-tUEh1jBcDk .dragArea input::-webkit-input-placeholder {
  color: #232226;
  opacity: 0.8;
}
.cid-tUEh1jBcDk .dragArea input::-moz-placeholder {
  color: #232226;
  opacity: 0.8;
}
.cid-tUEh1jBcDk .dragArea textarea::-webkit-input-placeholder {
  color: #232226;
  opacity: 0.8;
}
.cid-tUEh1jBcDk .dragArea textarea::-moz-placeholder {
  color: #232226;
  opacity: 0.8;
}
.cid-tUEh1jBcDk .input-group-btn {
  padding: 0 10px;
}
.cid-tUEh1jBcDk .input-group-btn .btn {
  margin: 0;
  margin-top: 15px;
}
.cid-tUEh1jBcDk .form-group {
  padding: 10px;
  margin-bottom: 10px;
}
.cid-tUEh1jBcDk .form-control-label {
  margin-bottom: 8px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .cid-tUEh1jBcDk .divider {
    margin: 40px 15px 45px;
  }
}
@media (max-width: 767px) {
  .cid-tUEh1jBcDk .social,
  .cid-tUEh1jBcDk .address,
  .cid-tUEh1jBcDk .info__wrap {
    margin-bottom: 30px;
  }
  .cid-tUEh1jBcDk .form-group {
    padding: 10px 15px;
  }
  .cid-tUEh1jBcDk .input-group-btn {
    padding: 0 15px;
  }
}
.cid-tUEh1jBcDk LABEL {
  color: #000000;
}
.cid-t80ynZ6h7s {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t80ynZ6h7s .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t80ynZ6h7s .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-t80ynZ6h7s .row {
    text-align: center;
  }
  .cid-t80ynZ6h7s .row > div {
    margin: auto;
  }
  .cid-t80ynZ6h7s .social-row {
    justify-content: center;
  }
}
.cid-t80ynZ6h7s .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-t80ynZ6h7s .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-t80ynZ6h7s .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t80ynZ6h7s .list {
    margin-bottom: 0rem;
  }
}
.cid-t80ynZ6h7s .mbr-text {
  color: #767676;
}
.cid-t80ynZ6h7s .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-t80ynZ6h7s .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-t80ynZ6h7s div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-t80ynZ6h7s .mbr-section-subtitle {
  color: #255eac;
}
.cid-t7OB5unSEi {
  z-index: 1000;
  width: 100%;
}
.cid-t7OB5unSEi nav.navbar {
  position: fixed;
}
.cid-t7OB5unSEi .nav-link,
.cid-t7OB5unSEi .dropdown-item {
  font-weight: 400;
}
.cid-t7OB5unSEi .nav-link:hover,
.cid-t7OB5unSEi .dropdown-item:hover {
  color: #ffc60a !important;
}
.cid-t7OB5unSEi .navbar-short {
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
}
.cid-t7OB5unSEi .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-t7OB5unSEi .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t7OB5unSEi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t7OB5unSEi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t7OB5unSEi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t7OB5unSEi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t7OB5unSEi .nav-link {
  position: relative;
}
.cid-t7OB5unSEi .container {
  display: flex;
}
.cid-t7OB5unSEi .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t7OB5unSEi .dropdown-menu,
.cid-t7OB5unSEi .navbar.opened {
  background: #282124 !important;
}
.cid-t7OB5unSEi .nav-item:focus,
.cid-t7OB5unSEi .nav-link:focus {
  outline: none;
}
.cid-t7OB5unSEi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t7OB5unSEi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t7OB5unSEi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-t7OB5unSEi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t7OB5unSEi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t7OB5unSEi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t7OB5unSEi .navbar {
  min-height: 90px;
  transition: all .3s;
  background: rgba(40, 33, 36, 0);
}
.cid-t7OB5unSEi .navbar.opened {
  transition: all .3s;
}
.cid-t7OB5unSEi .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t7OB5unSEi .navbar .navbar-logo img {
  width: auto;
}
.cid-t7OB5unSEi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t7OB5unSEi .navbar.collapsed {
  justify-content: center;
}
.cid-t7OB5unSEi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t7OB5unSEi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t7OB5unSEi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t7OB5unSEi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t7OB5unSEi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t7OB5unSEi .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-t7OB5unSEi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t7OB5unSEi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t7OB5unSEi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t7OB5unSEi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t7OB5unSEi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t7OB5unSEi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t7OB5unSEi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t7OB5unSEi .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-t7OB5unSEi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t7OB5unSEi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t7OB5unSEi .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t7OB5unSEi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t7OB5unSEi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t7OB5unSEi .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t7OB5unSEi .navbar.navbar-short {
  min-height: 80px;
  background: #235fac;
}
.cid-t7OB5unSEi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t7OB5unSEi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t7OB5unSEi .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t7OB5unSEi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t7OB5unSEi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t7OB5unSEi .dropdown-item.active,
.cid-t7OB5unSEi .dropdown-item:active {
  background-color: transparent;
}
.cid-t7OB5unSEi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t7OB5unSEi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t7OB5unSEi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t7OB5unSEi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #282124;
}
.cid-t7OB5unSEi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t7OB5unSEi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t7OB5unSEi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t7OB5unSEi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t7OB5unSEi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t7OB5unSEi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t7OB5unSEi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t7OB5unSEi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t7OB5unSEi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t7OB5unSEi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t7OB5unSEi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t7OB5unSEi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t7OB5unSEi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t7OB5unSEi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t7OB5unSEi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t7OB5unSEi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t7OB5unSEi .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t7OB5unSEi .navbar {
    height: 70px;
  }
  .cid-t7OB5unSEi .navbar.opened {
    height: auto;
  }
  .cid-t7OB5unSEi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tUE2IWRkfU {
  padding-top: 120px;
  padding-bottom: 75px;
  background-color: #282124;
}
.cid-tUE2IWRkfU .row {
  position: relative;
}
.cid-tUE2IWRkfU .container {
  max-width: 1500px;
}
.cid-tUE2IWRkfU h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 0rem;
  bottom: 25%;
}
.cid-tUE2IWRkfU .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-tUE2IWRkfU .container {
    padding: 0 4rem;
  }
}
.cid-tUE2IWRkfU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUE2IWRkfU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUE2IWRkfU H1 {
  color: #ffc60a;
  text-align: left;
}
.cid-tUE2IWRkfU .mbr-text,
.cid-tUE2IWRkfU .mbr-section-btn {
  color: #cccccc;
}
.cid-tUE2IWRkfU H3 {
  color: #333333;
  text-align: left;
}
.cid-tUE2IWRkfU DIV {
  text-align: left;
}
.cid-tUE8lyRyUO {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tUE8lyRyUO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUE8lyRyUO .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-tUE8lyRyUO .container {
    padding: 0 30px;
  }
}
.cid-tUE8lyRyUO .row {
  justify-content: center;
}
.cid-tUE8lyRyUO .item {
  margin-bottom: 60px;
}
.cid-tUE8lyRyUO .item .item-wrapper .card-box {
  display: flex;
  align-items: flex-end;
}
.cid-tUE8lyRyUO .item .item-wrapper .card-box .card-number {
  min-width: 110px;
  line-height: .6;
  margin-bottom: 0;
}
.cid-tUE8lyRyUO .item .item-wrapper .card-box .desc-wrapper {
  margin-left: 20px;
}
.cid-tUE8lyRyUO .item .item-wrapper .card-box .desc-wrapper .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-flex;
}
.cid-tUE8lyRyUO .item .item-wrapper .card-box .desc-wrapper .card-desc {
  opacity: .6;
  margin-bottom: 0;
}
.cid-tUE8lyRyUO .item-menu-overlay .btn-wrapper {
  margin-top: -12%;
}
.cid-tUE8lyRyUO .card-number {
  color: #000000;
}
.cid-tUE8lyRyUO .card-desc {
  color: #000000;
}
.cid-tUE4WJW3GO {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tUE4WJW3GO .row {
  position: relative;
}
.cid-tUE4WJW3GO .container {
  max-width: 1500px;
}
.cid-tUE4WJW3GO h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 0rem;
  bottom: 25%;
}
.cid-tUE4WJW3GO .content-wrapper {
  max-width: 800px;
}
.cid-tUE4WJW3GO H1 {
  color: #333333;
}
.cid-tUE4WJW3GO .mbr-text,
.cid-tUE4WJW3GO .mbr-section-btn {
  color: #333333;
}
.cid-tUE4WJW3GO H3 {
  color: #333333;
}
@media (min-width: 767px) {
  .cid-tUE4WJW3GO .container {
    padding: 0 4rem;
  }
}
.cid-tUE4WJW3GO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUE4WJW3GO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUE4VCHrll {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffc60a;
}
.cid-tUE4VCHrll .content-block {
  max-width: 700px;
  padding: 4rem 3rem;
}
.cid-tUE4VCHrll .block2 {
  background: #f8f8f8;
  display: flex;
  justify-content: center;
}
.cid-tUE4VCHrll p {
  margin-left: 10rem;
  max-width: 450px;
}
.cid-tUE4VCHrll .img-content {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s;
  transition-delay: 0s;
  background-image: url("../../../assets/images/adobestock-205102959-2000x1499.jpg");
  background-position: center;
  background-size: cover;
  z-index: 1;
}
.cid-tUE4VCHrll .overlay {
  transition: all 0.3s;
  transition-delay: 0.3s;
  width: 0%;
  height: 100%;
  top: 0;
  right: 0;
  position: absolute;
  background: #255eac;
}
.cid-tUE4VCHrll .wrap {
  width: 100%;
  min-height: 400px;
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.cid-tUE4VCHrll .wrap:hover .overlay {
  width: 100%;
  transition-delay: 0s;
}
.cid-tUE4VCHrll .wrap:hover .img-content {
  opacity: 1;
  transition-delay: 0.3s;
}
.cid-tUE4VCHrll .wrap:hover .box-title2,
.cid-tUE4VCHrll .wrap:hover .box-text2 {
  color: #f8f8f8;
  transition-delay: 0.3s;
}
.cid-tUE4VCHrll .wrap:hover .box-content {
  transition-delay: 0.3s;
  background: transparent;
}
.cid-tUE4VCHrll .box-title2,
.cid-tUE4VCHrll .box-text2 {
  transition: all 0.3s;
  transition-delay: 0s;
}
.cid-tUE4VCHrll .box-content {
  transition: all 0.3s;
  background: #255eac;
  width: 50%;
}
.cid-tUE4VCHrll .content-box {
  padding: 4rem 3rem;
  z-index: 2;
  position: relative;
}
@media (max-width: 767px) {
  .cid-tUE4VCHrll .img-content {
    opacity: 1;
  }
  .cid-tUE4VCHrll .box-content {
    width: 100%;
    background: transparent;
  }
  .cid-tUE4VCHrll .box-title2,
  .cid-tUE4VCHrll .box-text2 {
    color: #f8f8f8 !important;
  }
  .cid-tUE4VCHrll p {
    margin-left: 0;
  }
  .cid-tUE4VCHrll .content-block,
  .cid-tUE4VCHrll .content1 {
    padding: 3rem 1rem;
  }
  .cid-tUE4VCHrll .wrap {
    min-height: 300px;
  }
}
.cid-tUE4VCHrll .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUE4VCHrll .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUE4VCHrll .mbr-text,
.cid-tUE4VCHrll .mbr-section-btn {
  color: #282124;
}
.cid-tUE4VCHrll .mbr-section-title {
  color: #282124;
}
.cid-tUE6avGZLI {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-tUE6avGZLI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUE6avGZLI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUE6avGZLI .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-tUE6avGZLI .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-tUE6avGZLI .container {
    padding: 0 25px;
  }
}
.cid-tUE6avGZLI .row {
  justify-content: center;
}
.cid-tUE6avGZLI .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-tUE6avGZLI .item {
  margin-bottom: 30px;
}
.cid-tUE6avGZLI .item a {
  display: block;
}
.cid-tUE6avGZLI .item a:hover .item-wrapper .item-img img,
.cid-tUE6avGZLI .item a:focus .item-wrapper .item-img img {
  transform: scale(1.05) translateX(2%);
}
.cid-tUE6avGZLI .item a .item-wrapper {
  border-radius: 0 !important;
}
.cid-tUE6avGZLI .item a .item-wrapper .item-img {
  overflow: hidden;
  margin-bottom: 25px;
}
.cid-tUE6avGZLI .item a .item-wrapper .item-img img {
  height: 250px;
  object-fit: cover;
  transform: scale(1.05) translateX(0);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-tUE6avGZLI .item a .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-tUE6avGZLI .item a .item-wrapper .item-content .mbr-desc {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tUE6avGZLI .item a .item-wrapper .item-content .mbr-desc:hover,
.cid-tUE6avGZLI .item a .item-wrapper .item-content .mbr-desc:focus {
  opacity: .5;
}
.cid-tUE6avGZLI .item a .item-wrapper .item-content .item-title {
  margin-bottom: 0;
}
.cid-tUE6avGZLI .item-title {
  color: #000000;
}
.cid-tUE6avGZLI .mbr-desc {
  color: #000000;
}
.cid-tUE6mfsYbV {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #282124;
}
.cid-tUE6mfsYbV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUE6mfsYbV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tUE6mfsYbV .container {
    max-width: 1400px;
  }
}
.cid-tUE6mfsYbV .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #ffc60a;
  margin-bottom: 2rem;
}
.cid-tUE6mfsYbV .row {
  justify-content: center;
}
.cid-tUE6mfsYbV .mbr-section-title {
  text-align: left;
}
.cid-tUE6mfsYbV .card-text {
  color: #cccccc;
}
.cid-tUE6mfsYbV .card-title,
.cid-tUE6mfsYbV .iconfont-wrapper {
  color: #ffffff;
}
.cid-tUE9mPHVFl {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tUE9mPHVFl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUE9mPHVFl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUE9mPHVFl .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tUE9mPHVFl .container-fluid {
    padding: 0 20px;
  }
}
.cid-tUE9mPHVFl .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tUE9mPHVFl .container {
    padding: 0 20px;
  }
}
.cid-tUE9mPHVFl .row {
  justify-content: center;
}
.cid-tUE9mPHVFl .title-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-tUE9mPHVFl .title-wrapper .mbr-section-subtitle {
    margin-bottom: 10px;
  }
}
.cid-tUE9mPHVFl .title-wrapper .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 45px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .cid-tUE9mPHVFl .title-wrapper .title-wrap {
    display: block;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}
.cid-tUE9mPHVFl .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-tUE9mPHVFl .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 10px;
  }
}
.cid-tUE9mPHVFl .title-wrapper .title-wrap .mbr-section-btn .btn {
  border: none;
  padding: 0;
  min-width: 92px;
}
.cid-tUE9mPHVFl .title-wrapper .title-wrap .mbr-section-btn .btn:hover,
.cid-tUE9mPHVFl .title-wrapper .title-wrap .mbr-section-btn .btn:focus {
  background-color: transparent !important;
  color: #000000 !important;
  opacity: .5;
}
.cid-tUE9mPHVFl .title-wrapper .title-wrap .mbr-section-btn .btn .mbr-iconfont {
  margin-left: 18px;
}
.cid-tUE9mPHVFl .item {
  margin-bottom: 32px;
}
.cid-tUE9mPHVFl .item a:hover .item-wrapper .item-img img {
  transform: scale(1.05);
}
.cid-tUE9mPHVFl .item a:hover .item-wrapper .item-img .item-content .subtitle-wrap .item-subtitle {
  background-color: #161616;
}
.cid-tUE9mPHVFl .item a:hover .item-wrapper .item-img .item-content .title-wrap {
  transform: translateY(0);
}
.cid-tUE9mPHVFl .item a:hover .item-wrapper .item-img .item-content .title-wrap .link-wrap .item-link {
  opacity: 1;
}
.cid-tUE9mPHVFl .item a .item-wrapper {
  overflow: hidden;
}
.cid-tUE9mPHVFl .item a .item-wrapper .item-img {
  position: relative;
  height: 460px;
}
.cid-tUE9mPHVFl .item a .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease-out;
  pointer-events: visible;
}
.cid-tUE9mPHVFl .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(180deg, transparent, #000000);
  opacity: .8;
  pointer-events: none;
  z-index: 1;
}
.cid-tUE9mPHVFl .item a .item-wrapper .item-img .item-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 768px) {
  .cid-tUE9mPHVFl .item a .item-wrapper .item-img .item-content {
    padding: 25px;
  }
}
.cid-tUE9mPHVFl .item a .item-wrapper .item-img .item-content .subtitle-wrap {
  pointer-events: visible;
}
.cid-tUE9mPHVFl .item a .item-wrapper .item-img .item-content .subtitle-wrap .item-subtitle {
  display: inline-flex;
  padding: 4px 18px;
  margin-bottom: 6px;
  background-color: #b29fe9;
  transition: all 0.3s ease-out;
}
.cid-tUE9mPHVFl .item a .item-wrapper .item-img .item-content .title-wrap {
  transform: translateY(40px);
  transition: all 0.3s ease-out;
  pointer-events: visible;
  transform: none;
}
.cid-tUE9mPHVFl .item a .item-wrapper .item-img .item-content .title-wrap .item-title {
  margin-bottom: 16px;
}
.cid-tUE9mPHVFl .item a .item-wrapper .item-img .item-content .title-wrap .desc-wrapper .desc-wrap {
  display: inline-flex;
}
.cid-tUE9mPHVFl .item a .item-wrapper .item-img .item-content .title-wrap .desc-wrapper .desc-wrap .mbr-iconfont {
  margin-right: 14px;
  color: #c8d814;
}
.cid-tUE9mPHVFl .item a .item-wrapper .item-img .item-content .title-wrap .desc-wrapper .desc-wrap .item-desc {
  margin-bottom: 0;
}
.cid-tUE9mPHVFl .item a .item-wrapper .item-img .item-content .title-wrap .link-wrap .item-link {
  display: inline-flex;
  opacity: 0;
  margin: 16px 0 0 0;
  transition: all 0.3s ease-out;
}
.cid-tUE9mPHVFl .item a .item-wrapper .item-img .item-content .title-wrap .link-wrap .item-link .mbr-iconfont {
  margin-left: 6px;
}
.cid-tUE9mPHVFl .mbr-section-title {
  color: #000000;
}
.cid-tUE9mPHVFl .mbr-section-subtitle {
  color: #000000;
}
.cid-tUE9mPHVFl .item-title {
  color: #ffffff;
}
.cid-tUE9mPHVFl .item-subtitle {
  color: #ffffff;
}
.cid-tUE9mPHVFl .item-desc {
  color: #D2D3D5;
}
.cid-tUE9mPHVFl .item-link {
  color: #ffffff;
}
.cid-tUEb10WtrH {
  padding-top: 0rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tUEb10WtrH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUEb10WtrH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUEb10WtrH .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tUEb10WtrH .container-fluid {
    padding: 0 20px;
  }
}
.cid-tUEb10WtrH .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tUEb10WtrH .container {
    padding: 0 20px;
  }
}
.cid-tUEb10WtrH .row {
  justify-content: center;
}
.cid-tUEb10WtrH .title-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-tUEb10WtrH .title-wrapper .mbr-section-subtitle {
    margin-bottom: 10px;
  }
}
.cid-tUEb10WtrH .title-wrapper .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 45px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .cid-tUEb10WtrH .title-wrapper .title-wrap {
    display: block;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}
.cid-tUEb10WtrH .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-tUEb10WtrH .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 10px;
  }
}
.cid-tUEb10WtrH .title-wrapper .title-wrap .mbr-section-btn .btn {
  border: none;
  padding: 0;
  min-width: 92px;
}
.cid-tUEb10WtrH .title-wrapper .title-wrap .mbr-section-btn .btn:hover,
.cid-tUEb10WtrH .title-wrapper .title-wrap .mbr-section-btn .btn:focus {
  background-color: transparent !important;
  color: #000000 !important;
  opacity: .5;
}
.cid-tUEb10WtrH .title-wrapper .title-wrap .mbr-section-btn .btn .mbr-iconfont {
  margin-left: 18px;
}
.cid-tUEb10WtrH .item {
  margin-bottom: 32px;
}
.cid-tUEb10WtrH .item a:hover .item-wrapper .item-img img {
  transform: scale(1.05);
}
.cid-tUEb10WtrH .item a:hover .item-wrapper .item-img .item-content .subtitle-wrap .item-subtitle {
  background-color: #161616;
}
.cid-tUEb10WtrH .item a:hover .item-wrapper .item-img .item-content .title-wrap {
  transform: translateY(0);
}
.cid-tUEb10WtrH .item a:hover .item-wrapper .item-img .item-content .title-wrap .link-wrap .item-link {
  opacity: 1;
}
.cid-tUEb10WtrH .item a .item-wrapper {
  overflow: hidden;
}
.cid-tUEb10WtrH .item a .item-wrapper .item-img {
  position: relative;
  height: 460px;
}
.cid-tUEb10WtrH .item a .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease-out;
  pointer-events: visible;
}
.cid-tUEb10WtrH .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(180deg, transparent, #000000);
  opacity: .8;
  pointer-events: none;
  z-index: 1;
}
.cid-tUEb10WtrH .item a .item-wrapper .item-img .item-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 768px) {
  .cid-tUEb10WtrH .item a .item-wrapper .item-img .item-content {
    padding: 25px;
  }
}
.cid-tUEb10WtrH .item a .item-wrapper .item-img .item-content .subtitle-wrap {
  pointer-events: visible;
}
.cid-tUEb10WtrH .item a .item-wrapper .item-img .item-content .subtitle-wrap .item-subtitle {
  display: inline-flex;
  padding: 4px 18px;
  margin-bottom: 6px;
  background-color: #b29fe9;
  transition: all 0.3s ease-out;
}
.cid-tUEb10WtrH .item a .item-wrapper .item-img .item-content .title-wrap {
  transform: translateY(40px);
  transition: all 0.3s ease-out;
  pointer-events: visible;
  transform: none;
}
.cid-tUEb10WtrH .item a .item-wrapper .item-img .item-content .title-wrap .item-title {
  margin-bottom: 16px;
}
.cid-tUEb10WtrH .item a .item-wrapper .item-img .item-content .title-wrap .desc-wrapper .desc-wrap {
  display: inline-flex;
}
.cid-tUEb10WtrH .item a .item-wrapper .item-img .item-content .title-wrap .desc-wrapper .desc-wrap .mbr-iconfont {
  margin-right: 14px;
  color: #c8d814;
}
.cid-tUEb10WtrH .item a .item-wrapper .item-img .item-content .title-wrap .desc-wrapper .desc-wrap .item-desc {
  margin-bottom: 0;
}
.cid-tUEb10WtrH .item a .item-wrapper .item-img .item-content .title-wrap .link-wrap .item-link {
  display: inline-flex;
  opacity: 0;
  margin: 16px 0 0 0;
  transition: all 0.3s ease-out;
}
.cid-tUEb10WtrH .item a .item-wrapper .item-img .item-content .title-wrap .link-wrap .item-link .mbr-iconfont {
  margin-left: 6px;
}
.cid-tUEb10WtrH .mbr-section-title {
  color: #000000;
}
.cid-tUEb10WtrH .mbr-section-subtitle {
  color: #000000;
}
.cid-tUEb10WtrH .item-title {
  color: #ffffff;
}
.cid-tUEb10WtrH .item-subtitle {
  color: #ffffff;
}
.cid-tUEb10WtrH .item-desc {
  color: #D2D3D5;
}
.cid-tUEb10WtrH .item-link {
  color: #ffffff;
}
.cid-tUEcbGAcuV {
  padding-top: 90px;
  padding-bottom: 180px;
  background-image: url("../../../assets/images/grey-warehouse-building-with-two-industrial-red-door-2000x1126.png");
}
.cid-tUEcbGAcuV .row {
  justify-content: flex-end;
}
.cid-tUEcbGAcuV .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 30%;
  background-color: #ffffff;
}
.cid-tUEcbGAcuV .block {
  background-color: #ffc60a;
}
.cid-tUEcbGAcuV img {
  width: 100%;
}
.cid-tUEcbGAcuV .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
}
.cid-tUEcbGAcuV .content {
  max-width: 600px;
}
.cid-tUEcbGAcuV h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 19rem;
  bottom: 35%;
}
@media (max-width: 1600px) {
  .cid-tUEcbGAcuV .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-tUEcbGAcuV h4 {
    right: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-tUEcbGAcuV .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-tUEcbGAcuV h4 {
    right: 2rem;
    bottom: 30%;
  }
}
.cid-tUEcbGAcuV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUEcbGAcuV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUEcbGAcuV H1 {
  color: #282124;
}
.cid-tUEc5imujT {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-tUEc5imujT .row {
  justify-content: space-between;
  padding: 0 1rem;
}
.cid-tUEc5imujT .container {
  max-width: 1500px;
}
.cid-tUEc5imujT .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-tUEc5imujT .container {
    padding: 0 4rem;
  }
}
.cid-tUEc5imujT .mbr-text,
.cid-tUEc5imujT .mbr-section-btn {
  color: #282124;
}
.cid-tUEc5imujT .btn {
  width: -webkit-fill-available;
  margin: 0.4rem !important;
}
.cid-tUEc5imujT .pt-5 {
  padding-top: 4rem !important;
}
@media (max-width: 922px) {
  .cid-tUEc5imujT .align-left {
    text-align: center;
  }
  .cid-tUEc5imujT .row {
    justify-content: center;
    padding: 0rem;
  }
}
.cid-tUEc5imujT H1 {
  color: #255eac;
}
.cid-t80ynZ6h7s {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t80ynZ6h7s .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t80ynZ6h7s .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-t80ynZ6h7s .row {
    text-align: center;
  }
  .cid-t80ynZ6h7s .row > div {
    margin: auto;
  }
  .cid-t80ynZ6h7s .social-row {
    justify-content: center;
  }
}
.cid-t80ynZ6h7s .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-t80ynZ6h7s .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-t80ynZ6h7s .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t80ynZ6h7s .list {
    margin-bottom: 0rem;
  }
}
.cid-t80ynZ6h7s .mbr-text {
  color: #767676;
}
.cid-t80ynZ6h7s .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-t80ynZ6h7s .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-t80ynZ6h7s div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-t80ynZ6h7s .mbr-section-subtitle {
  color: #255eac;
}
