body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Rubik', sans-serif;
  font-size: 4.25rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 6.8rem;
}
.display-2 {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.5rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- 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.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((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.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((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: #b1a374 !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #b1a374 !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #e4d295 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-info,
.btn-info:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #e4d295 !important;
  border-color: #e4d295 !important;
  color: #615119 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #615119 !important;
  background-color: #d4b858 !important;
  border-color: #d4b858 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #615119 !important;
  background-color: #d4b858 !important;
  border-color: #d4b858 !important;
}
.btn-white {
  color: #333333 !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: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cc0033;
  color: #cc0033;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ff3366;
  border-color: #ff3366;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #cfaf44;
  color: #cfaf44;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #615119;
  background-color: #e4d295;
  border-color: #e4d295;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #615119 !important;
  background-color: #e4d295 !important;
  border-color: #e4d295 !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: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.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: #b1a374 !important;
}
.text-secondary {
  color: #ff3366 !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #b1a374 !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #e4d295 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #7a6e45 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cc0033 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #7a6e45 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #cfaf44 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #b1a374;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #e4d295;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #b1a374;
  border-color: #b1a374;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #b1a374;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #dfd9c6;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #dfd9c6;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #b1a374;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #b1a374;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #b1a374;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #b1a374;
  color: #ffffff;
}
.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: #b1a374;
  border-bottom-color: #b1a374;
}
.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: #b1a374 !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: #ff3366 !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: 100px;
  height: 100px;
  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='%23b1a374' %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.3;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-tEKdJlUa1c {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tIjvW0egfp {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tIjvW0egfp .image-block {
  margin: auto;
}
.cid-tIjvW0egfp figcaption {
  position: relative;
}
.cid-tIjvW0egfp figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tIjvW0egfp .image-block {
    width: 100% !important;
  }
}
.cid-urR3TghJFN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-urR3TghJFN img {
  width: 180px;
  margin: auto;
}
.cid-urR3TghJFN .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
.cid-urR3TghJFN .card:hover {
  transform: scale(0.9);
}
@media (min-width: 992px) {
  .cid-urR3TghJFN .card {
    max-width: 20%;
  }
}
.cid-urR3TghJFN .mbr-section-title {
  color: #4e423d;
}
.cid-tEKdL5q2m4 {
  background-image: url("../../../assets/images/pexels-quark-studio-3201921-2000x1126.jpg");
}
.cid-tEKdL5q2m4 H1 {
  color: #ffffff;
}
.cid-tEKdL5q2m4 .mbr-text,
.cid-tEKdL5q2m4 .mbr-section-btn {
  color: #ffffff;
}
.cid-tZLqUcRCyE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-tEKe6WqAdu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tEKe6WqAdu .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-tEKe6WqAdu .text-block {
  position: relative;
  z-index: 0;
}
.cid-tEKe6WqAdu .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-tEKe6WqAdu .box {
  left: 20%;
}
.cid-tEKe6WqAdu .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-tEKe6WqAdu .mbr-section-text,
.cid-tEKe6WqAdu .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-tEKe6WqAdu .text-box {
    display: none;
  }
  .cid-tEKe6WqAdu .mbr-section-title,
  .cid-tEKe6WqAdu .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tEKe6WqAdu .box {
    display: none;
  }
  .cid-tEKe6WqAdu .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tEKe6WqAdu .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tEKe6WqAdu .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tEKe6WqAdu .mbr-section-text {
  color: #c1c1c1;
}
.cid-tEKe6WqAdu .mbr-section-title {
  text-align: right;
  color: #efefef;
}
.cid-tEKe8ORZOw {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-tEKe8ORZOw P {
  color: #767676;
}
.cid-tEKe8ORZOw .mbr-text,
.cid-tEKe8ORZOw .mbr-section-btn {
  color: #232323;
}
.cid-tEKeamYasP {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tEKeamYasP .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tEKeamYasP .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tEKeamYasP .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tEKeamYasP .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tEKeamYasP .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tEKeamYasP .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tEKeamYasP .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tEKeamYasP .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tEKeamYasP .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tEKf3kEcQh {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-tEKf3kEcQh .mbr-section-text {
  color: #ffffff;
}
.cid-tEKf3kEcQh .mbr-section-subtitle {
  color: #dfc979;
}
.cid-tEKf3kEcQh .tabcont {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tEKf3kEcQh .mbr-iconfont {
  font-size: 48px;
}
.cid-tEKf3kEcQh .card-img {
  margin-bottom: 1.5rem;
}
.cid-tEKf3kEcQh .tab-content-row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tEKf3kEcQh .tab-content {
  margin-top: 3rem;
  width: 100%;
}
.cid-tEKf3kEcQh .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-tEKf3kEcQh .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #ffffff;
  font-style: normal;
  font-weight: 500;
  border-radius: 3px;
  padding: 1rem 3rem;
  margin: 0.4rem .8rem !important;
  transition: color .3s;
  border: 2px solid #ffffff;
}
.cid-tEKf3kEcQh .nav-tabs .nav-link:hover {
  background: #dfc979;
}
.cid-tEKf3kEcQh .nav-tabs .nav-link.active {
  color: #000000;
  font-style: normal;
  border: 2px solid #dfc979;
  background: #dfc979;
}
.cid-tEKf3kEcQh .nav-tabs .nav-link.active:hover {
  border: 2px solid #dfc979;
}
.cid-tEKf3kEcQh H2 {
  color: #ffffff;
}
.cid-tEKf3kEcQh H4 {
  color: #ffffff;
}
.cid-tEKeiDcjzm {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #dfc979;
}
.cid-tEKeiDcjzm P {
  color: #767676;
}
.cid-tEKeiDcjzm .mbr-text,
.cid-tEKeiDcjzm .mbr-section-btn {
  color: #232323;
}
.cid-tEKfdznXEt {
  padding-top: 135px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tEKfdznXEt h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tEKfdznXEt p {
  color: #767676;
  text-align: left;
}
.cid-tEKfdznXEt .card-box {
  padding-top: 2rem;
}
.cid-tEKfdznXEt .card-wrapper {
  height: 100%;
}
.cid-tEKfdznXEt img {
  border-radius: 100%;
  height: 250px;
  width: 250px;
  object-fit: cover;
}
.cid-tEKfdznXEt P {
  text-align: center;
}
.cid-tEKfdznXEt .card-title {
  text-align: center;
}
.cid-tEKfdznXEt .card-img {
  position: relative;
}
.cid-tEKfdznXEt .card-icon {
  position: absolute;
  background: #ffffff;
  height: 70px;
  width: 70px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.22);
  border-radius: 100%;
  padding: 1rem;
  left: 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
  top: 1rem;
}
.cid-tEKfdznXEt .card-icon .mbr-iconfont {
  font-size: 2rem;
  color: #b1a374;
}
.cid-tEKfeqPMPM {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-tEKfeqPMPM .mbr-text {
  margin: 0;
}
.cid-tEKfeqPMPM .text-element {
  padding: 2rem;
  background-color: #000000;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
}
.cid-tEKfeqPMPM .row-element,
.cid-tEKfeqPMPM .image-element {
  padding: 0;
}
.cid-tEKfeqPMPM .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tEKfeqPMPM .image-element .img-wrap {
  width: 100% !important;
}
.cid-tEKfeqPMPM .image-element .img-wrap img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tEKfeqPMPM .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tEKfeqPMPM .carousel-item.active,
.cid-tEKfeqPMPM .carousel-item-next,
.cid-tEKfeqPMPM .carousel-item-prev {
  display: flex;
}
.cid-tEKfeqPMPM .carousel-indicators {
  left: 50%;
  margin: 20px auto 0;
  align-items: center;
}
.cid-tEKfeqPMPM .carousel-indicators .active {
  opacity: 1;
  border: 0;
  background-color: #b1a374;
}
.cid-tEKfeqPMPM .carousel-indicators li {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  transition: opacity .5s;
  background-color: #000000;
  font-size: 2rem;
  opacity: .5;
  border-width: 0px;
}
.cid-tEKfeqPMPM .carousel-indicators li:hover {
  opacity: 1;
}
.cid-tEKfeqPMPM .carousel-controls {
  display: none;
}
@media (max-width: 991px) {
  .cid-tEKfeqPMPM .carousel-controls {
    display: block;
  }
  .cid-tEKfeqPMPM .carousel-controls a {
    transition: opacity .5s;
    font-size: 2rem;
  }
  .cid-tEKfeqPMPM .carousel-controls a span {
    padding: 10px;
    border-radius: 50%;
    color: #ffffff;
    background: #444444;
    opacity: .9;
  }
  .cid-tEKfeqPMPM .carousel-controls a:hover span {
    opacity: 1;
  }
  .cid-tEKfeqPMPM .carousel-indicators {
    display: none;
  }
}
@media (max-width: 540px) {
  .cid-tEKfeqPMPM .text-element {
    padding: 1rem;
  }
  .cid-tEKfeqPMPM .carousel-controls {
    display: none;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tEKfeqPMPM .image-element {
    min-width: 50%;
  }
  .cid-tEKfeqPMPM .media-container-row {
    width: 100%;
  }
}
.cid-tEKfeqPMPM .mbr-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tEKfeqPMPM .mbr-text,
.cid-tEKfeqPMPM .link {
  color: #ffffff;
}
.cid-tEKfeqPMPM .mbr-title,
.cid-tEKfeqPMPM .ornament {
  color: #dfc979;
}
.cid-upp30ob6NE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-upp30ob6NE h2 {
  text-align: left;
}
.cid-upp30ob6NE h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upp30ob6NE p {
  color: #767676;
  text-align: left;
}
.cid-upp30ob6NE .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upp30ob6NE .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upp30ob6NE .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upp30ob6NE .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upp30ob6NE .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upp30ob6NE .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upp30ob6NE .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-upp30ob6NE .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-upp30ob6NE .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-upp30ob6NE .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-upp30ob6NE .card-img span {
    font-size: 40px !important;
  }
}
.cid-tEKfiBLfiy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/selective-focus-photography-of-child-hand-1250452low-1-704x469.jpg");
}
.cid-tu3r4fovel {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tu3r4fovel h2 {
  text-align: left;
}
.cid-tu3r4fovel h4 {
  text-align: left;
  font-weight: 500;
}
.cid-tu3r4fovel p {
  color: #767676;
  text-align: left;
}
.cid-tu3r4fovel .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tu3r4fovel .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-tu3r4fovel .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tu3r4fovel .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tu3r4fovel .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-tu3r4fovel .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tu3r4fovel .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tu3r4fovel .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-tu3r4fovel .card-img span {
    font-size: 40px !important;
  }
}
.cid-tu3r4fovel .mbr-text {
  color: #232323;
}
.cid-tEKfxrsSA0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tEKfxrsSA0 .mbr-section-subtitle {
  color: #cccccc;
  font-weight: 300;
}
.cid-tEKfxrsSA0 .mbr-content-text {
  color: #cccccc;
}
.cid-tEKfxrsSA0 .card {
  word-wrap: break-word;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-tEKfxrsSA0 .cards-container {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  word-break: break-word;
}
@media (max-width: 767px) {
  .cid-tEKfxrsSA0 .card:not(.last-child) {
    padding-bottom: 1.5rem;
  }
}
.cid-tEKfxrsSA0 .img-text {
  color: #dfc979;
}
.cid-tEKfxrsSA0 .mbr-section-title {
  color: #dfc979;
}
.cid-tEKfxrsSA0 H4 {
  color: #ffffff;
}
.cid-tEKfyBYhjo {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #dfc979;
}
.cid-tEKfyBYhjo P {
  color: #767676;
}
.cid-tEKfyBYhjo .mbr-text,
.cid-tEKfyBYhjo .mbr-section-btn {
  color: #232323;
}
.cid-u57VKtLpUG {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u57VKtLpUG h2 {
  margin-bottom: 0;
}
.cid-u57VKtLpUG h4 {
  font-weight: 500;
  margin-bottom: 0;
  width: 80%;
}
.cid-u57VKtLpUG p {
  color: #767676;
  margin-bottom: 0;
}
.cid-u57VKtLpUG .card-wrapper {
  border-top: 1px solid #efefef;
  background-color: #ffffff;
  position: relative;
  justify-content: unset;
}
.cid-u57VKtLpUG .card-wrapper .card-box {
  padding: 2rem 1rem;
  width: 100%;
}
.cid-u57VKtLpUG .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-u57VKtLpUG .card-wrapper .card-box .bottom-line {
  width: 70%;
}
@media (max-width: 767px) {
  .cid-u57VKtLpUG .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-u57VKtLpUG .card-wrapper .card-box .bottom-line p {
    text-align: center;
    margin: 1rem 0 0 0;
  }
}
.cid-u57VNvSBaj {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #dfc979;
}
.cid-u57VNvSBaj P {
  color: #767676;
}
.cid-u57VNvSBaj .mbr-text,
.cid-u57VNvSBaj .mbr-section-btn {
  color: #232323;
}
.cid-tEKfzNAj2Z {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tEKfzNAj2Z h2 {
  text-align: left;
}
.cid-tEKfzNAj2Z h4 {
  text-align: left;
  font-weight: 500;
}
.cid-tEKfzNAj2Z p {
  color: #767676;
  text-align: left;
}
.cid-tEKfzNAj2Z .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tEKfzNAj2Z .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-tEKfzNAj2Z .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tEKfzNAj2Z .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tEKfzNAj2Z .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-tEKfzNAj2Z .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tEKfzNAj2Z .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-tEKfzNAj2Z .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-tEKfzNAj2Z .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-tEKfzNAj2Z .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-tEKfzNAj2Z .card-img span {
    font-size: 40px !important;
  }
}
.cid-tEKfzNAj2Z H4 {
  color: #fa8706;
  text-align: left;
}
.cid-tEKfzNAj2Z P {
  color: #000000;
}
.cid-tEKfzNAj2Z H2 {
  color: #000000;
  text-align: center;
}
.cid-uu1Xd5YK21 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uu1Xd5YK21 h2 {
  text-align: left;
}
.cid-uu1Xd5YK21 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uu1Xd5YK21 p {
  color: #767676;
  text-align: left;
}
.cid-uu1Xd5YK21 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uu1Xd5YK21 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uu1Xd5YK21 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uu1Xd5YK21 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uu1Xd5YK21 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uu1Xd5YK21 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uu1Xd5YK21 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uu1Xd5YK21 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uu1Xd5YK21 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uu1Xd5YK21 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uu1Xd5YK21 P {
  color: #ffffff;
  text-align: left;
}
.cid-uu1Xd5YK21 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-ua9IMhvnBk {
  background-color: #000000;
}
.cid-ua9IMhvnBk .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-ua9IMhvnBk .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ua9IMhvnBk .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-ua9IMhvnBk .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ua9IMhvnBk .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 1200px) {
  .cid-ua9IMhvnBk .image-element {
    padding-right: 0;
  }
}
.cid-ua9IMhvnBk .text-element {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 2rem;
}
.cid-ua9IMhvnBk .mbr-text {
  color: #cccccc;
  line-height: 27px;
}
.cid-ua9IMhvnBk .brown {
  color: #b1a374;
}
.cid-ua9IMhvnBk .paragraphs-wrapper {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ua9IMhvnBk .paragraphs-wrapper .first-paragraph,
.cid-ua9IMhvnBk .paragraphs-wrapper .second-paragraph {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-ua9IMhvnBk .image-element {
    padding-bottom: 1rem;
  }
  .cid-ua9IMhvnBk .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ua9IMhvnBk .paragraphs-wrapper {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-ua9IMhvnBk .paragraphs-wrapper .first-paragraph,
  .cid-ua9IMhvnBk .paragraphs-wrapper .second-paragraph {
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .cid-ua9IMhvnBk .first-paragraph,
  .cid-ua9IMhvnBk .second-paragraph {
    width: 50%;
  }
  .cid-ua9IMhvnBk .first-paragraph {
    padding-right: .5rem;
  }
  .cid-ua9IMhvnBk .second-paragraph {
    padding-left: .5rem;
  }
  .cid-ua9IMhvnBk .text-element {
    padding: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-ua9IMhvnBk .mbr-section-title,
  .cid-ua9IMhvnBk .mbr-section-btn {
    text-align: left;
  }
}
.cid-ua9IMhvnBk .mbr-text,
.cid-ua9IMhvnBk .mbr-section-btn {
  color: #ffffff;
}
.cid-ua9IMhvnBk .title,
.cid-ua9IMhvnBk .brown {
  color: #e4d295;
}
.cid-tNFFAPaoxU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tNFFAPaoxU h2 {
  text-align: left;
}
.cid-tNFFAPaoxU h4 {
  text-align: left;
  font-weight: 500;
}
.cid-tNFFAPaoxU p {
  color: #767676;
  text-align: left;
}
.cid-tNFFAPaoxU .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tNFFAPaoxU .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-tNFFAPaoxU .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tNFFAPaoxU .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tNFFAPaoxU .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-tNFFAPaoxU .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tNFFAPaoxU .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-tNFFAPaoxU .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-tNFFAPaoxU .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-tNFFAPaoxU .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-tNFFAPaoxU .card-img span {
    font-size: 40px !important;
  }
}
.cid-tNFFAPaoxU H4 {
  color: #fa8706;
  text-align: left;
}
.cid-tNFFAPaoxU P {
  color: #ffffff;
  text-align: left;
}
.cid-tNFFAPaoxU H2 {
  color: #ffffff;
  text-align: center;
}
.cid-tRKjhYlNac {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tRKjhYlNac h2 {
  text-align: left;
}
.cid-tRKjhYlNac h4 {
  text-align: left;
  font-weight: 500;
}
.cid-tRKjhYlNac p {
  color: #767676;
  text-align: left;
}
.cid-tRKjhYlNac .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tRKjhYlNac .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-tRKjhYlNac .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tRKjhYlNac .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tRKjhYlNac .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-tRKjhYlNac .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tRKjhYlNac .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tRKjhYlNac .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-tRKjhYlNac .card-img span {
    font-size: 40px !important;
  }
}
.cid-tRKjhYlNac H4 {
  color: #fa8706;
  text-align: left;
}
.cid-tRKjhYlNac P {
  color: #ffffff;
  text-align: left;
}
.cid-tRKjhYlNac H2 {
  color: #ffffff;
  text-align: center;
}
.cid-tEKfAHX4cp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tEKfAHX4cp h2 {
  text-align: left;
}
.cid-tEKfAHX4cp h4 {
  text-align: left;
  font-weight: 500;
}
.cid-tEKfAHX4cp p {
  color: #767676;
  text-align: left;
}
.cid-tEKfAHX4cp .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tEKfAHX4cp .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-tEKfAHX4cp .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tEKfAHX4cp .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tEKfAHX4cp .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-tEKfAHX4cp .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tEKfAHX4cp .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tEKfAHX4cp .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-tEKfAHX4cp .card-img span {
    font-size: 40px !important;
  }
}
.cid-tEKfAHX4cp H4 {
  color: #fa8706;
  text-align: left;
}
.cid-tEKfAHX4cp P {
  color: #ffffff;
  text-align: left;
}
.cid-tEKfAHX4cp H2 {
  color: #ffffff;
  text-align: center;
}
.cid-tEKfBXezhZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tEKfBXezhZ .card-wrapper {
  z-index: 3;
}
.cid-tEKfBXezhZ .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-tEKfBXezhZ:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-tEKfBXezhZ .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tEKfBXezhZ .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tEKfDlIu1Z {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-tEKfDlIu1Z h2 {
  text-align: left;
}
.cid-tEKfDlIu1Z h4 {
  text-align: left;
  font-weight: 500;
}
.cid-tEKfDlIu1Z p {
  color: #767676;
  text-align: left;
}
.cid-tEKfDlIu1Z .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tEKfDlIu1Z .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-tEKfDlIu1Z .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tEKfDlIu1Z .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tEKfDlIu1Z .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-tEKfDlIu1Z .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tEKfDlIu1Z .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-tEKfDlIu1Z .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-tEKfDlIu1Z .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-tEKfDlIu1Z .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-tEKfDlIu1Z .card-img span {
    font-size: 40px !important;
  }
}
.cid-tEKfDlIu1Z H4 {
  color: #e106fa;
  text-align: left;
}
.cid-tEKfDlIu1Z P {
  color: #ffffff;
  text-align: left;
}
.cid-tEKfDlIu1Z H2 {
  color: #ffffff;
  text-align: center;
}
.cid-tQHw6vOgE3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tQHw6vOgE3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQHw6vOgE3 .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-tQHw6vOgE3 .container {
    padding: 0 16px;
  }
}
.cid-tQHw6vOgE3 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tQHw6vOgE3 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tQHw6vOgE3 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-tQHw6vOgE3 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tQHw6vOgE3 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-tQHw6vOgE3 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-tQHw6vOgE3 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-tQHw6vOgE3 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-tQHw6vOgE3 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-tQHw6vOgE3 .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-tQHw6vOgE3 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-tQHw6vOgE3 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-tQHw6vOgE3 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-tQHw6vOgE3 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-tQHw6vOgE3 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-tQHw6vOgE3 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-tQHw6vOgE3 .dragArea.row .form-group .form-control:hover,
.cid-tQHw6vOgE3 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-tQHw6vOgE3 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-tQHw6vOgE3 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-tQHw6vOgE3 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-tQHw6vOgE3 .mbr-title {
  color: #ffffff;
}
.cid-tQHw6vOgE3 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-tQHw6vOgE3 .mbr-section-subtitle {
  color: #08323C;
}
.cid-tQHw6vOgE3 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tQHw6vOgE3 .list {
  color: #08323C;
}
.cid-tQHw6vOgE3 label {
  color: #08323C;
}
.cid-tQHw6vOgE3 H3 {
  color: #000000;
}
.cid-tQHw6vOgE3 P {
  text-align: right;
}
.cid-tN0KJNzvLS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tN0KJNzvLS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tN0KJNzvLS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tN0KJNzvLS .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-tN0KJNzvLS .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-tN0KJNzvLS .container {
    padding: 0 26px;
  }
}
.cid-tN0KJNzvLS .row {
  justify-content: center;
}
.cid-tN0KJNzvLS .item {
  margin-bottom: 32px;
}
.cid-tN0KJNzvLS .item a {
  display: block;
}
.cid-tN0KJNzvLS .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-tN0KJNzvLS .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-tN0KJNzvLS .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-tN0KJNzvLS .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tN0KJNzvLS .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-tN0KJNzvLS .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-tN0KJNzvLS .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-tN0KJNzvLS .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-tN0KJNzvLS .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-tN0KJNzvLS .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-tN0KJNzvLS .item-title {
  color: #ffffff;
}
.cid-tN0KJNzvLS .mbr-date {
  color: #cacaca;
}
.cid-tN0KJNzvLS .mbr-desc {
  color: #cacaca;
}
.cid-tLZQQ8UDYu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upoYbAtFZN {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upoYbAtFZN H1 {
  text-align: center;
}
.cid-upp2dd7VFO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxdROYwS7o {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxdROYwS7o .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxdROYwS7o .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxdROYwS7o .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxdROYwS7o .box {
  left: 20%;
}
.cid-uxdROYwS7o .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxdROYwS7o .mbr-section-text,
.cid-uxdROYwS7o .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxdROYwS7o .text-box {
    display: none;
  }
  .cid-uxdROYwS7o .mbr-section-title,
  .cid-uxdROYwS7o .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxdROYwS7o .box {
    display: none;
  }
  .cid-uxdROYwS7o .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxdROYwS7o .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxdROYwS7o .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxdROYwS7o .mbr-section-text {
  color: #ffffff;
}
.cid-uxdROYwS7o .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxdROYwS7o .mbr-section-text DIV {
  text-align: left;
}
.cid-uxdRT5juPl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxdRT5juPl h2 {
  text-align: left;
}
.cid-uxdRT5juPl h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxdRT5juPl p {
  color: #767676;
  text-align: left;
}
.cid-uxdRT5juPl .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxdRT5juPl .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxdRT5juPl .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxdRT5juPl .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxdRT5juPl .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxdRT5juPl .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxdRT5juPl .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxdRT5juPl .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxdRT5juPl .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxdRT5juPl H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxdRT5juPl P {
  color: #ffffff;
}
.cid-uxdRT5juPl H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uppdArpJVN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uppdArpJVN H1 {
  color: #000000;
}
.cid-upp6CdPR1d {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upp6CdPR1d .mbr-fallback-image.disabled {
  display: none;
}
.cid-upp6CdPR1d .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-upp6CdPR1d .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-upp6CdPR1d .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-upp6CdPR1d .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-upp6CdPR1d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upp6CdPR1d .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-upp6CdPR1d .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-upp6CdPR1d .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-upp6CdPR1d .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-upp6CdPR1d .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-upp6CdPR1d .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upp6CdPR1d .image-wrapper {
    padding: 1rem;
  }
}
.cid-upp6CdPR1d .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-upp6CdPR1d .mbr-text,
.cid-upp6CdPR1d .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upw2MHSAJq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upw2MHSAJq .mbr-fallback-image.disabled {
  display: none;
}
.cid-upw2MHSAJq .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-upw2MHSAJq .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-upw2MHSAJq .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-upw2MHSAJq .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-upw2MHSAJq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upw2MHSAJq .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-upw2MHSAJq .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-upw2MHSAJq .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-upw2MHSAJq .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-upw2MHSAJq .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-upw2MHSAJq .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upw2MHSAJq .image-wrapper {
    padding: 1rem;
  }
}
.cid-upw2MHSAJq .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-upw2MHSAJq .mbr-text,
.cid-upw2MHSAJq .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uppifJrPsU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uppifJrPsU H1 {
  color: #000000;
}
.cid-uxdS5N1wG4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxdS5N1wG4 h2 {
  text-align: left;
}
.cid-uxdS5N1wG4 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxdS5N1wG4 p {
  color: #767676;
  text-align: left;
}
.cid-uxdS5N1wG4 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxdS5N1wG4 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxdS5N1wG4 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxdS5N1wG4 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxdS5N1wG4 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxdS5N1wG4 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxdS5N1wG4 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxdS5N1wG4 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxdS5N1wG4 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxdS5N1wG4 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxdS5N1wG4 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upoYbD7pxj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upoYbDkjEh {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upoYbDkjEh h2 {
  text-align: left;
}
.cid-upoYbDkjEh h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upoYbDkjEh p {
  color: #767676;
  text-align: left;
}
.cid-upoYbDkjEh .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upoYbDkjEh .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upoYbDkjEh .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upoYbDkjEh .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upoYbDkjEh .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upoYbDkjEh .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upoYbDkjEh .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upoYbDkjEh .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upoYbDkjEh .card-img span {
    font-size: 40px !important;
  }
}
.cid-upoYbDkjEh .mbr-text {
  color: #232323;
}
.cid-uxe4sXFHoj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxe4sXFHoj H1 {
  color: #000000;
}
.cid-upoYbEJceF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upoYbEJceF .mbr-fallback-image.disabled {
  display: none;
}
.cid-upoYbEJceF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upoYbEJceF .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upoYbEJceF .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upoYbEJceF .container {
    padding: 0 26px;
  }
}
.cid-upoYbEJceF .row {
  justify-content: center;
}
.cid-upoYbEJceF .item {
  margin-bottom: 32px;
}
.cid-upoYbEJceF .item a {
  display: block;
}
.cid-upoYbEJceF .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upoYbEJceF .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upoYbEJceF .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upoYbEJceF .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-upoYbEJceF .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upoYbEJceF .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upoYbEJceF .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-upoYbEJceF .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upoYbEJceF .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upoYbEJceF .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upoYbEJceF .item-title {
  color: #ffffff;
}
.cid-upoYbEJceF .mbr-date {
  color: #cacaca;
}
.cid-upoYbEJceF .mbr-desc {
  color: #cacaca;
}
.cid-uxdSe5NhSH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxdSe5NhSH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxdSe5NhSH .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-uxdSe5NhSH .container {
    padding: 0 16px;
  }
}
.cid-uxdSe5NhSH .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxdSe5NhSH .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxdSe5NhSH .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxdSe5NhSH .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxdSe5NhSH .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxdSe5NhSH .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxdSe5NhSH .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxdSe5NhSH .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxdSe5NhSH .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxdSe5NhSH .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxdSe5NhSH .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxdSe5NhSH .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxdSe5NhSH .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxdSe5NhSH .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxdSe5NhSH .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxdSe5NhSH .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxdSe5NhSH .dragArea.row .form-group .form-control:hover,
.cid-uxdSe5NhSH .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxdSe5NhSH .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxdSe5NhSH .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxdSe5NhSH .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxdSe5NhSH .mbr-title {
  color: #ffffff;
}
.cid-uxdSe5NhSH .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxdSe5NhSH .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxdSe5NhSH .mbr-text {
  color: #08323C;
}
.cid-uxdSe5NhSH .list {
  color: #08323C;
}
.cid-uxdSe5NhSH label {
  color: #08323C;
}
.cid-uxdSe5NhSH H3 {
  color: #000000;
}
.cid-uxdSe5NhSH P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxe56OtuTO {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxe56OtuTO H1 {
  text-align: center;
}
.cid-upuwua251A {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxe5YFejbM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxe5YFejbM .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxe5YFejbM .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxe5YFejbM .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxe5YFejbM .box {
  left: 20%;
}
.cid-uxe5YFejbM .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxe5YFejbM .mbr-section-text,
.cid-uxe5YFejbM .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxe5YFejbM .text-box {
    display: none;
  }
  .cid-uxe5YFejbM .mbr-section-title,
  .cid-uxe5YFejbM .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxe5YFejbM .box {
    display: none;
  }
  .cid-uxe5YFejbM .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxe5YFejbM .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxe5YFejbM .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxe5YFejbM .mbr-section-text {
  color: #ffffff;
}
.cid-uxe5YFejbM .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxe5YFejbM .mbr-section-text DIV {
  text-align: left;
}
.cid-uxe5ZpWtPW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxe5ZpWtPW h2 {
  text-align: left;
}
.cid-uxe5ZpWtPW h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxe5ZpWtPW p {
  color: #767676;
  text-align: left;
}
.cid-uxe5ZpWtPW .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxe5ZpWtPW .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxe5ZpWtPW .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxe5ZpWtPW .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxe5ZpWtPW .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxe5ZpWtPW .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxe5ZpWtPW .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxe5ZpWtPW .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxe5ZpWtPW .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxe5ZpWtPW H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxe5ZpWtPW P {
  color: #ffffff;
}
.cid-uxe5ZpWtPW H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upuBRYSWTu {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upuBRYSWTu H1 {
  text-align: center;
}
.cid-ux8HexwPVF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux8HexwPVF H1 {
  color: #000000;
}
.cid-ux8HdwyHbb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ux8HdwyHbb .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux8HdwyHbb .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-ux8HdwyHbb .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-ux8HdwyHbb .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-ux8HdwyHbb .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-ux8HdwyHbb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux8HdwyHbb .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-ux8HdwyHbb .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-ux8HdwyHbb .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-ux8HdwyHbb .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-ux8HdwyHbb .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-ux8HdwyHbb .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ux8HdwyHbb .image-wrapper {
    padding: 1rem;
  }
}
.cid-ux8HdwyHbb .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-ux8HdwyHbb .mbr-text,
.cid-ux8HdwyHbb .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxe6UEMg0U {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxe6UEMg0U H1 {
  color: #000000;
}
.cid-uxqimWtfpb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxqimWtfpb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqimWtfpb .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxqimWtfpb .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxqimWtfpb .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxqimWtfpb .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxqimWtfpb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqimWtfpb .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxqimWtfpb .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxqimWtfpb .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxqimWtfpb .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxqimWtfpb .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxqimWtfpb .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqimWtfpb .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxqimWtfpb .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxqimWtfpb .mbr-text,
.cid-uxqimWtfpb .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxqinAjv3K {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxqinAjv3K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqinAjv3K .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxqinAjv3K .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxqinAjv3K .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxqinAjv3K .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxqinAjv3K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqinAjv3K .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxqinAjv3K .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxqinAjv3K .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxqinAjv3K .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxqinAjv3K .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxqinAjv3K .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqinAjv3K .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxqinAjv3K .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxqinAjv3K .mbr-text,
.cid-uxqinAjv3K .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxe70nfzwt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxe70nfzwt H1 {
  color: #000000;
}
.cid-ux8BLOvm94 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ux8BLOvm94 h2 {
  text-align: left;
}
.cid-ux8BLOvm94 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8BLOvm94 p {
  color: #767676;
  text-align: left;
}
.cid-ux8BLOvm94 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8BLOvm94 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8BLOvm94 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8BLOvm94 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8BLOvm94 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8BLOvm94 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8BLOvm94 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-ux8BLOvm94 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-ux8BLOvm94 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-ux8BLOvm94 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-ux8BLOvm94 .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8BMnuYQT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8BMnuYQT H1 {
  color: #000000;
}
.cid-upuwuc9TSx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upuwucoX8i {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upuwucoX8i h2 {
  text-align: left;
}
.cid-upuwucoX8i h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upuwucoX8i p {
  color: #767676;
  text-align: left;
}
.cid-upuwucoX8i .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upuwucoX8i .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upuwucoX8i .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upuwucoX8i .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upuwucoX8i .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upuwucoX8i .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upuwucoX8i .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upuwucoX8i .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upuwucoX8i .card-img span {
    font-size: 40px !important;
  }
}
.cid-upuwucoX8i .mbr-text {
  color: #232323;
}
.cid-ux8Ce2RoWw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8Ce2RoWw H1 {
  color: #000000;
}
.cid-upuwucLbga {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upuwucLbga .mbr-fallback-image.disabled {
  display: none;
}
.cid-upuwucLbga .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upuwucLbga .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upuwucLbga .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upuwucLbga .container {
    padding: 0 26px;
  }
}
.cid-upuwucLbga .row {
  justify-content: center;
}
.cid-upuwucLbga .item {
  margin-bottom: 32px;
}
.cid-upuwucLbga .item a {
  display: block;
}
.cid-upuwucLbga .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upuwucLbga .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upuwucLbga .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upuwucLbga .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-upuwucLbga .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upuwucLbga .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upuwucLbga .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-upuwucLbga .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upuwucLbga .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upuwucLbga .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upuwucLbga .item-title {
  color: #ffffff;
}
.cid-upuwucLbga .mbr-date {
  color: #cacaca;
}
.cid-upuwucLbga .mbr-desc {
  color: #cacaca;
}
.cid-uxe79kbW6C {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxe79kbW6C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxe79kbW6C .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-uxe79kbW6C .container {
    padding: 0 16px;
  }
}
.cid-uxe79kbW6C .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxe79kbW6C .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxe79kbW6C .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxe79kbW6C .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxe79kbW6C .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxe79kbW6C .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxe79kbW6C .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxe79kbW6C .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxe79kbW6C .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxe79kbW6C .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxe79kbW6C .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxe79kbW6C .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxe79kbW6C .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxe79kbW6C .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxe79kbW6C .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxe79kbW6C .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxe79kbW6C .dragArea.row .form-group .form-control:hover,
.cid-uxe79kbW6C .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxe79kbW6C .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxe79kbW6C .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxe79kbW6C .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxe79kbW6C .mbr-title {
  color: #ffffff;
}
.cid-uxe79kbW6C .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxe79kbW6C .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxe79kbW6C .mbr-text {
  color: #08323C;
}
.cid-uxe79kbW6C .list {
  color: #08323C;
}
.cid-uxe79kbW6C label {
  color: #08323C;
}
.cid-uxe79kbW6C H3 {
  color: #000000;
}
.cid-uxe79kbW6C P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxeemda39b {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxeemda39b H1 {
  text-align: center;
}
.cid-uxeemdugPr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxeemdF3S0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxeemdF3S0 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxeemdF3S0 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxeemdF3S0 .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxeemdF3S0 .box {
  left: 20%;
}
.cid-uxeemdF3S0 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxeemdF3S0 .mbr-section-text,
.cid-uxeemdF3S0 .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxeemdF3S0 .text-box {
    display: none;
  }
  .cid-uxeemdF3S0 .mbr-section-title,
  .cid-uxeemdF3S0 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxeemdF3S0 .box {
    display: none;
  }
  .cid-uxeemdF3S0 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxeemdF3S0 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxeemdF3S0 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxeemdF3S0 .mbr-section-text {
  color: #ffffff;
}
.cid-uxeemdF3S0 .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxeemdF3S0 .mbr-section-text DIV {
  text-align: left;
}
.cid-uxeemdU3xB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxeemdU3xB h2 {
  text-align: left;
}
.cid-uxeemdU3xB h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxeemdU3xB p {
  color: #767676;
  text-align: left;
}
.cid-uxeemdU3xB .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxeemdU3xB .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxeemdU3xB .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxeemdU3xB .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxeemdU3xB .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxeemdU3xB .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxeemdU3xB .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxeemdU3xB .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxeemdU3xB .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxeemdU3xB H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxeemdU3xB P {
  color: #ffffff;
}
.cid-uxeemdU3xB H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxeemebsys {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxeemebsys H1 {
  text-align: center;
}
.cid-uxqiKNiXXK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxqiKNiXXK H1 {
  color: #000000;
}
.cid-uxqiMjfwXp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxqiMjfwXp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqiMjfwXp .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxqiMjfwXp .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxqiMjfwXp .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxqiMjfwXp .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxqiMjfwXp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqiMjfwXp .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxqiMjfwXp .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxqiMjfwXp .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxqiMjfwXp .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxqiMjfwXp .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxqiMjfwXp .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqiMjfwXp .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxqiMjfwXp .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxqiMjfwXp .mbr-text,
.cid-uxqiMjfwXp .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxeemeVDdf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxeemeVDdf H1 {
  color: #000000;
}
.cid-uxqiMWRtNe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxqiMWRtNe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqiMWRtNe .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxqiMWRtNe .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxqiMWRtNe .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxqiMWRtNe .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxqiMWRtNe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqiMWRtNe .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxqiMWRtNe .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxqiMWRtNe .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxqiMWRtNe .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxqiMWRtNe .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxqiMWRtNe .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqiMWRtNe .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxqiMWRtNe .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxqiMWRtNe .mbr-text,
.cid-uxqiMWRtNe .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxqiNz0sPm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxqiNz0sPm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqiNz0sPm .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxqiNz0sPm .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxqiNz0sPm .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxqiNz0sPm .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxqiNz0sPm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqiNz0sPm .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxqiNz0sPm .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxqiNz0sPm .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxqiNz0sPm .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxqiNz0sPm .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxqiNz0sPm .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqiNz0sPm .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxqiNz0sPm .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxqiNz0sPm .mbr-text,
.cid-uxqiNz0sPm .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxeemfQsYr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxeemfQsYr H1 {
  color: #000000;
}
.cid-uxeemg2CtP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxeemg2CtP h2 {
  text-align: left;
}
.cid-uxeemg2CtP h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxeemg2CtP p {
  color: #767676;
  text-align: left;
}
.cid-uxeemg2CtP .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxeemg2CtP .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxeemg2CtP .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxeemg2CtP .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxeemg2CtP .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxeemg2CtP .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxeemg2CtP .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxeemg2CtP .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxeemg2CtP .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxeemg2CtP .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxeemg2CtP .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxeemgker0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxeemgker0 H1 {
  color: #000000;
}
.cid-uxeemgxHjc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxeemgKy9M {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxeemgKy9M h2 {
  text-align: left;
}
.cid-uxeemgKy9M h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxeemgKy9M p {
  color: #767676;
  text-align: left;
}
.cid-uxeemgKy9M .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxeemgKy9M .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxeemgKy9M .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxeemgKy9M .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxeemgKy9M .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxeemgKy9M .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxeemgKy9M .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxeemgKy9M .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxeemgKy9M .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxeemgKy9M .mbr-text {
  color: #232323;
}
.cid-uxeemh49UA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxeemh49UA H1 {
  color: #000000;
}
.cid-uxeemhkF7b {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxeemhkF7b .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxeemhkF7b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxeemhkF7b .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxeemhkF7b .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxeemhkF7b .container {
    padding: 0 26px;
  }
}
.cid-uxeemhkF7b .row {
  justify-content: center;
}
.cid-uxeemhkF7b .item {
  margin-bottom: 32px;
}
.cid-uxeemhkF7b .item a {
  display: block;
}
.cid-uxeemhkF7b .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxeemhkF7b .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxeemhkF7b .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxeemhkF7b .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxeemhkF7b .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxeemhkF7b .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxeemhkF7b .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxeemhkF7b .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxeemhkF7b .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxeemhkF7b .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxeemhkF7b .item-title {
  color: #ffffff;
}
.cid-uxeemhkF7b .mbr-date {
  color: #cacaca;
}
.cid-uxeemhkF7b .mbr-desc {
  color: #cacaca;
}
.cid-uxeemhAOXj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxeemhAOXj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxeemhAOXj .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-uxeemhAOXj .container {
    padding: 0 16px;
  }
}
.cid-uxeemhAOXj .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxeemhAOXj .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxeemhAOXj .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxeemhAOXj .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxeemhAOXj .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxeemhAOXj .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxeemhAOXj .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxeemhAOXj .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxeemhAOXj .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxeemhAOXj .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxeemhAOXj .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxeemhAOXj .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxeemhAOXj .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxeemhAOXj .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxeemhAOXj .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxeemhAOXj .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxeemhAOXj .dragArea.row .form-group .form-control:hover,
.cid-uxeemhAOXj .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxeemhAOXj .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxeemhAOXj .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxeemhAOXj .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxeemhAOXj .mbr-title {
  color: #ffffff;
}
.cid-uxeemhAOXj .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxeemhAOXj .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxeemhAOXj .mbr-text {
  color: #08323C;
}
.cid-uxeemhAOXj .list {
  color: #08323C;
}
.cid-uxeemhAOXj label {
  color: #08323C;
}
.cid-uxeemhAOXj H3 {
  color: #000000;
}
.cid-uxeemhAOXj P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxeeUDwGD7 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxeeUDwGD7 H1 {
  text-align: center;
}
.cid-uxeeUDWLZY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxeeUEe3Vb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxeeUEe3Vb .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxeeUEe3Vb .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxeeUEe3Vb .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxeeUEe3Vb .box {
  left: 20%;
}
.cid-uxeeUEe3Vb .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxeeUEe3Vb .mbr-section-text,
.cid-uxeeUEe3Vb .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxeeUEe3Vb .text-box {
    display: none;
  }
  .cid-uxeeUEe3Vb .mbr-section-title,
  .cid-uxeeUEe3Vb .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxeeUEe3Vb .box {
    display: none;
  }
  .cid-uxeeUEe3Vb .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxeeUEe3Vb .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxeeUEe3Vb .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxeeUEe3Vb .mbr-section-text {
  color: #ffffff;
}
.cid-uxeeUEe3Vb .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxeeUEe3Vb .mbr-section-text DIV {
  text-align: left;
}
.cid-uxeeUEreBg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxeeUEreBg h2 {
  text-align: left;
}
.cid-uxeeUEreBg h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxeeUEreBg p {
  color: #767676;
  text-align: left;
}
.cid-uxeeUEreBg .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxeeUEreBg .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxeeUEreBg .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxeeUEreBg .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxeeUEreBg .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxeeUEreBg .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxeeUEreBg .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxeeUEreBg .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxeeUEreBg .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxeeUEreBg H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxeeUEreBg P {
  color: #ffffff;
}
.cid-uxeeUEreBg H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxeeUEM7GB {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxeeUEM7GB H1 {
  text-align: center;
}
.cid-uxqiVXUfZv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxqiVXUfZv H1 {
  color: #000000;
}
.cid-uxqiWM2euc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxqiWM2euc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqiWM2euc .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxqiWM2euc .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxqiWM2euc .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxqiWM2euc .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxqiWM2euc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqiWM2euc .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxqiWM2euc .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxqiWM2euc .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxqiWM2euc .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxqiWM2euc .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxqiWM2euc .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqiWM2euc .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxqiWM2euc .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxqiWM2euc .mbr-text,
.cid-uxqiWM2euc .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxeeUFzk70 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxeeUFzk70 H1 {
  color: #000000;
}
.cid-uxqiXpwojl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxqiXpwojl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqiXpwojl .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxqiXpwojl .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxqiXpwojl .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxqiXpwojl .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxqiXpwojl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqiXpwojl .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxqiXpwojl .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxqiXpwojl .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxqiXpwojl .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxqiXpwojl .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxqiXpwojl .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqiXpwojl .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxqiXpwojl .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxqiXpwojl .mbr-text,
.cid-uxqiXpwojl .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxqiY3D4oC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxqiY3D4oC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqiY3D4oC .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxqiY3D4oC .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxqiY3D4oC .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxqiY3D4oC .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxqiY3D4oC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqiY3D4oC .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxqiY3D4oC .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxqiY3D4oC .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxqiY3D4oC .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxqiY3D4oC .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxqiY3D4oC .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqiY3D4oC .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxqiY3D4oC .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxqiY3D4oC .mbr-text,
.cid-uxqiY3D4oC .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxeeUGGpRJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxeeUGGpRJ H1 {
  color: #000000;
}
.cid-uxeeUGVyIj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxeeUGVyIj h2 {
  text-align: left;
}
.cid-uxeeUGVyIj h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxeeUGVyIj p {
  color: #767676;
  text-align: left;
}
.cid-uxeeUGVyIj .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxeeUGVyIj .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxeeUGVyIj .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxeeUGVyIj .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxeeUGVyIj .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxeeUGVyIj .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxeeUGVyIj .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxeeUGVyIj .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxeeUGVyIj .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxeeUGVyIj .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxeeUGVyIj .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxeeUHcufw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxeeUHcufw H1 {
  color: #000000;
}
.cid-uxeeUHttiZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxeeUHKque {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxeeUHKque h2 {
  text-align: left;
}
.cid-uxeeUHKque h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxeeUHKque p {
  color: #767676;
  text-align: left;
}
.cid-uxeeUHKque .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxeeUHKque .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxeeUHKque .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxeeUHKque .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxeeUHKque .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxeeUHKque .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxeeUHKque .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxeeUHKque .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxeeUHKque .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxeeUHKque .mbr-text {
  color: #232323;
}
.cid-uxeeUI1Wu9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxeeUI1Wu9 H1 {
  color: #000000;
}
.cid-uxeeUIimLS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxeeUIimLS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxeeUIimLS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxeeUIimLS .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxeeUIimLS .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxeeUIimLS .container {
    padding: 0 26px;
  }
}
.cid-uxeeUIimLS .row {
  justify-content: center;
}
.cid-uxeeUIimLS .item {
  margin-bottom: 32px;
}
.cid-uxeeUIimLS .item a {
  display: block;
}
.cid-uxeeUIimLS .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxeeUIimLS .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxeeUIimLS .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxeeUIimLS .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxeeUIimLS .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxeeUIimLS .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxeeUIimLS .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxeeUIimLS .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxeeUIimLS .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxeeUIimLS .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxeeUIimLS .item-title {
  color: #ffffff;
}
.cid-uxeeUIimLS .mbr-date {
  color: #cacaca;
}
.cid-uxeeUIimLS .mbr-desc {
  color: #cacaca;
}
.cid-uxeeUIz9pJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxeeUIz9pJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxeeUIz9pJ .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-uxeeUIz9pJ .container {
    padding: 0 16px;
  }
}
.cid-uxeeUIz9pJ .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxeeUIz9pJ .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxeeUIz9pJ .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxeeUIz9pJ .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxeeUIz9pJ .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxeeUIz9pJ .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxeeUIz9pJ .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxeeUIz9pJ .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxeeUIz9pJ .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxeeUIz9pJ .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxeeUIz9pJ .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxeeUIz9pJ .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxeeUIz9pJ .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxeeUIz9pJ .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxeeUIz9pJ .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxeeUIz9pJ .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxeeUIz9pJ .dragArea.row .form-group .form-control:hover,
.cid-uxeeUIz9pJ .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxeeUIz9pJ .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxeeUIz9pJ .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxeeUIz9pJ .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxeeUIz9pJ .mbr-title {
  color: #ffffff;
}
.cid-uxeeUIz9pJ .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxeeUIz9pJ .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxeeUIz9pJ .mbr-text {
  color: #08323C;
}
.cid-uxeeUIz9pJ .list {
  color: #08323C;
}
.cid-uxeeUIz9pJ label {
  color: #08323C;
}
.cid-uxeeUIz9pJ H3 {
  color: #000000;
}
.cid-uxeeUIz9pJ P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxef9O1sMY {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxef9O1sMY H1 {
  text-align: center;
}
.cid-uxef9Ol9Dt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxef9Oz8DI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxef9Oz8DI .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxef9Oz8DI .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxef9Oz8DI .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxef9Oz8DI .box {
  left: 20%;
}
.cid-uxef9Oz8DI .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxef9Oz8DI .mbr-section-text,
.cid-uxef9Oz8DI .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxef9Oz8DI .text-box {
    display: none;
  }
  .cid-uxef9Oz8DI .mbr-section-title,
  .cid-uxef9Oz8DI .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxef9Oz8DI .box {
    display: none;
  }
  .cid-uxef9Oz8DI .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxef9Oz8DI .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxef9Oz8DI .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxef9Oz8DI .mbr-section-text {
  color: #ffffff;
}
.cid-uxef9Oz8DI .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxef9Oz8DI .mbr-section-text DIV {
  text-align: left;
}
.cid-uxef9OM2Kn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxef9OM2Kn h2 {
  text-align: left;
}
.cid-uxef9OM2Kn h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxef9OM2Kn p {
  color: #767676;
  text-align: left;
}
.cid-uxef9OM2Kn .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxef9OM2Kn .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxef9OM2Kn .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxef9OM2Kn .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxef9OM2Kn .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxef9OM2Kn .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxef9OM2Kn .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxef9OM2Kn .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxef9OM2Kn .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxef9OM2Kn H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxef9OM2Kn P {
  color: #ffffff;
}
.cid-uxef9OM2Kn H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxef9P7Sjw {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxef9P7Sjw H1 {
  text-align: center;
}
.cid-uxqjifdvAS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxqjifdvAS H1 {
  color: #000000;
}
.cid-uxqjj93usX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxqjj93usX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqjj93usX .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxqjj93usX .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxqjj93usX .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxqjj93usX .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxqjj93usX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqjj93usX .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxqjj93usX .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxqjj93usX .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxqjj93usX .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxqjj93usX .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxqjj93usX .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqjj93usX .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxqjj93usX .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxqjj93usX .mbr-text,
.cid-uxqjj93usX .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxef9Q7ynh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxef9Q7ynh H1 {
  color: #000000;
}
.cid-uxqjk0hTaL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxqjk0hTaL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqjk0hTaL .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxqjk0hTaL .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxqjk0hTaL .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxqjk0hTaL .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxqjk0hTaL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqjk0hTaL .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxqjk0hTaL .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxqjk0hTaL .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxqjk0hTaL .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxqjk0hTaL .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxqjk0hTaL .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqjk0hTaL .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxqjk0hTaL .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxqjk0hTaL .mbr-text,
.cid-uxqjk0hTaL .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxqjkDNIFK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxqjkDNIFK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqjkDNIFK .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxqjkDNIFK .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxqjkDNIFK .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxqjkDNIFK .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxqjkDNIFK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqjkDNIFK .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxqjkDNIFK .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxqjkDNIFK .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxqjkDNIFK .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxqjkDNIFK .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxqjkDNIFK .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqjkDNIFK .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxqjkDNIFK .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxqjkDNIFK .mbr-text,
.cid-uxqjkDNIFK .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxef9ReVJR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxef9ReVJR H1 {
  color: #000000;
}
.cid-uxef9Rt4US {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxef9Rt4US h2 {
  text-align: left;
}
.cid-uxef9Rt4US h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxef9Rt4US p {
  color: #767676;
  text-align: left;
}
.cid-uxef9Rt4US .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxef9Rt4US .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxef9Rt4US .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxef9Rt4US .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxef9Rt4US .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxef9Rt4US .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxef9Rt4US .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxef9Rt4US .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxef9Rt4US .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxef9Rt4US .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxef9Rt4US .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxef9RKDOp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxef9RKDOp H1 {
  color: #000000;
}
.cid-uxef9S1LQr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxef9Sh9VA {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxef9Sh9VA h2 {
  text-align: left;
}
.cid-uxef9Sh9VA h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxef9Sh9VA p {
  color: #767676;
  text-align: left;
}
.cid-uxef9Sh9VA .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxef9Sh9VA .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxef9Sh9VA .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxef9Sh9VA .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxef9Sh9VA .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxef9Sh9VA .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxef9Sh9VA .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxef9Sh9VA .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxef9Sh9VA .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxef9Sh9VA .mbr-text {
  color: #232323;
}
.cid-uxef9SzBIz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxef9SzBIz H1 {
  color: #000000;
}
.cid-uxef9SPWo1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxef9SPWo1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxef9SPWo1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxef9SPWo1 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxef9SPWo1 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxef9SPWo1 .container {
    padding: 0 26px;
  }
}
.cid-uxef9SPWo1 .row {
  justify-content: center;
}
.cid-uxef9SPWo1 .item {
  margin-bottom: 32px;
}
.cid-uxef9SPWo1 .item a {
  display: block;
}
.cid-uxef9SPWo1 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxef9SPWo1 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxef9SPWo1 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxef9SPWo1 .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxef9SPWo1 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxef9SPWo1 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxef9SPWo1 .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxef9SPWo1 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxef9SPWo1 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxef9SPWo1 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxef9SPWo1 .item-title {
  color: #ffffff;
}
.cid-uxef9SPWo1 .mbr-date {
  color: #cacaca;
}
.cid-uxef9SPWo1 .mbr-desc {
  color: #cacaca;
}
.cid-uxef9TbmUz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxef9TbmUz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxef9TbmUz .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-uxef9TbmUz .container {
    padding: 0 16px;
  }
}
.cid-uxef9TbmUz .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxef9TbmUz .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxef9TbmUz .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxef9TbmUz .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxef9TbmUz .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxef9TbmUz .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxef9TbmUz .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxef9TbmUz .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxef9TbmUz .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxef9TbmUz .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxef9TbmUz .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxef9TbmUz .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxef9TbmUz .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxef9TbmUz .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxef9TbmUz .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxef9TbmUz .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxef9TbmUz .dragArea.row .form-group .form-control:hover,
.cid-uxef9TbmUz .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxef9TbmUz .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxef9TbmUz .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxef9TbmUz .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxef9TbmUz .mbr-title {
  color: #ffffff;
}
.cid-uxef9TbmUz .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxef9TbmUz .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxef9TbmUz .mbr-text {
  color: #08323C;
}
.cid-uxef9TbmUz .list {
  color: #08323C;
}
.cid-uxef9TbmUz label {
  color: #08323C;
}
.cid-uxef9TbmUz H3 {
  color: #000000;
}
.cid-uxef9TbmUz P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxefqyW0eY {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxefqyW0eY H1 {
  text-align: center;
}
.cid-uxefqzhw8C {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxefqzuLn8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxefqzuLn8 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxefqzuLn8 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxefqzuLn8 .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxefqzuLn8 .box {
  left: 20%;
}
.cid-uxefqzuLn8 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxefqzuLn8 .mbr-section-text,
.cid-uxefqzuLn8 .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxefqzuLn8 .text-box {
    display: none;
  }
  .cid-uxefqzuLn8 .mbr-section-title,
  .cid-uxefqzuLn8 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxefqzuLn8 .box {
    display: none;
  }
  .cid-uxefqzuLn8 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxefqzuLn8 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxefqzuLn8 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxefqzuLn8 .mbr-section-text {
  color: #ffffff;
}
.cid-uxefqzuLn8 .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxefqzuLn8 .mbr-section-text DIV {
  text-align: left;
}
.cid-uxefqzHOpp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxefqzHOpp h2 {
  text-align: left;
}
.cid-uxefqzHOpp h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxefqzHOpp p {
  color: #767676;
  text-align: left;
}
.cid-uxefqzHOpp .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxefqzHOpp .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxefqzHOpp .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxefqzHOpp .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxefqzHOpp .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxefqzHOpp .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxefqzHOpp .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxefqzHOpp .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxefqzHOpp .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxefqzHOpp H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxefqzHOpp P {
  color: #ffffff;
}
.cid-uxefqzHOpp H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxefqA00oS {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxefqA00oS H1 {
  text-align: center;
}
.cid-uxqjqzFRns {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxqjqzFRns H1 {
  color: #000000;
}
.cid-uxqjrpZ6Mm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxqjrpZ6Mm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqjrpZ6Mm .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxqjrpZ6Mm .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxqjrpZ6Mm .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxqjrpZ6Mm .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxqjrpZ6Mm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqjrpZ6Mm .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxqjrpZ6Mm .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxqjrpZ6Mm .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxqjrpZ6Mm .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxqjrpZ6Mm .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxqjrpZ6Mm .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqjrpZ6Mm .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxqjrpZ6Mm .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxqjrpZ6Mm .mbr-text,
.cid-uxqjrpZ6Mm .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxefqANuNV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxefqANuNV H1 {
  color: #000000;
}
.cid-uxqjs9mY6s {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxqjs9mY6s .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqjs9mY6s .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxqjs9mY6s .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxqjs9mY6s .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxqjs9mY6s .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxqjs9mY6s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqjs9mY6s .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxqjs9mY6s .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxqjs9mY6s .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxqjs9mY6s .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxqjs9mY6s .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxqjs9mY6s .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqjs9mY6s .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxqjs9mY6s .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxqjs9mY6s .mbr-text,
.cid-uxqjs9mY6s .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxqjsP5GuE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxqjsP5GuE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqjsP5GuE .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxqjsP5GuE .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxqjsP5GuE .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxqjsP5GuE .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxqjsP5GuE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqjsP5GuE .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxqjsP5GuE .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxqjsP5GuE .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxqjsP5GuE .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxqjsP5GuE .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxqjsP5GuE .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqjsP5GuE .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxqjsP5GuE .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxqjsP5GuE .mbr-text,
.cid-uxqjsP5GuE .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxefqBWitX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxefqBWitX H1 {
  color: #000000;
}
.cid-uxefqCfdFQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxefqCfdFQ h2 {
  text-align: left;
}
.cid-uxefqCfdFQ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxefqCfdFQ p {
  color: #767676;
  text-align: left;
}
.cid-uxefqCfdFQ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxefqCfdFQ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxefqCfdFQ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxefqCfdFQ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxefqCfdFQ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxefqCfdFQ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxefqCfdFQ .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxefqCfdFQ .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxefqCfdFQ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxefqCfdFQ .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxefqCfdFQ .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxefqCvsGg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxefqCvsGg H1 {
  color: #000000;
}
.cid-uxefqCJWuM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxefqCZNin {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxefqCZNin h2 {
  text-align: left;
}
.cid-uxefqCZNin h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxefqCZNin p {
  color: #767676;
  text-align: left;
}
.cid-uxefqCZNin .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxefqCZNin .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxefqCZNin .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxefqCZNin .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxefqCZNin .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxefqCZNin .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxefqCZNin .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxefqCZNin .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxefqCZNin .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxefqCZNin .mbr-text {
  color: #232323;
}
.cid-uxefqDgUh3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxefqDgUh3 H1 {
  color: #000000;
}
.cid-uxefqDu55q {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxefqDu55q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxefqDu55q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxefqDu55q .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxefqDu55q .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxefqDu55q .container {
    padding: 0 26px;
  }
}
.cid-uxefqDu55q .row {
  justify-content: center;
}
.cid-uxefqDu55q .item {
  margin-bottom: 32px;
}
.cid-uxefqDu55q .item a {
  display: block;
}
.cid-uxefqDu55q .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxefqDu55q .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxefqDu55q .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxefqDu55q .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxefqDu55q .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxefqDu55q .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxefqDu55q .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxefqDu55q .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxefqDu55q .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxefqDu55q .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxefqDu55q .item-title {
  color: #ffffff;
}
.cid-uxefqDu55q .mbr-date {
  color: #cacaca;
}
.cid-uxefqDu55q .mbr-desc {
  color: #cacaca;
}
.cid-uxefqDMIDC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxefqDMIDC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxefqDMIDC .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-uxefqDMIDC .container {
    padding: 0 16px;
  }
}
.cid-uxefqDMIDC .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxefqDMIDC .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxefqDMIDC .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxefqDMIDC .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxefqDMIDC .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxefqDMIDC .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxefqDMIDC .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxefqDMIDC .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxefqDMIDC .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxefqDMIDC .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxefqDMIDC .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxefqDMIDC .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxefqDMIDC .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxefqDMIDC .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxefqDMIDC .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxefqDMIDC .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxefqDMIDC .dragArea.row .form-group .form-control:hover,
.cid-uxefqDMIDC .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxefqDMIDC .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxefqDMIDC .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxefqDMIDC .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxefqDMIDC .mbr-title {
  color: #ffffff;
}
.cid-uxefqDMIDC .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxefqDMIDC .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxefqDMIDC .mbr-text {
  color: #08323C;
}
.cid-uxefqDMIDC .list {
  color: #08323C;
}
.cid-uxefqDMIDC label {
  color: #08323C;
}
.cid-uxefqDMIDC H3 {
  color: #000000;
}
.cid-uxefqDMIDC P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxepfCfeDR {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxepfCfeDR H1 {
  text-align: center;
}
.cid-uxepfCzEHT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxepfCMnTh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxepfCMnTh .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxepfCMnTh .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxepfCMnTh .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxepfCMnTh .box {
  left: 20%;
}
.cid-uxepfCMnTh .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxepfCMnTh .mbr-section-text,
.cid-uxepfCMnTh .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxepfCMnTh .text-box {
    display: none;
  }
  .cid-uxepfCMnTh .mbr-section-title,
  .cid-uxepfCMnTh .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxepfCMnTh .box {
    display: none;
  }
  .cid-uxepfCMnTh .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxepfCMnTh .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxepfCMnTh .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxepfCMnTh .mbr-section-text {
  color: #ffffff;
}
.cid-uxepfCMnTh .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxepfCMnTh .mbr-section-text DIV {
  text-align: left;
}
.cid-uxepfD5bsh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxepfD5bsh h2 {
  text-align: left;
}
.cid-uxepfD5bsh h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxepfD5bsh p {
  color: #767676;
  text-align: left;
}
.cid-uxepfD5bsh .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxepfD5bsh .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxepfD5bsh .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxepfD5bsh .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxepfD5bsh .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxepfD5bsh .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxepfD5bsh .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxepfD5bsh .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxepfD5bsh .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxepfD5bsh H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxepfD5bsh P {
  color: #ffffff;
}
.cid-uxepfD5bsh H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxepfDpt1T {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxepfDpt1T H1 {
  text-align: center;
}
.cid-uxeqjcXQ7O {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxeqjcXQ7O H1 {
  color: #000000;
}
.cid-uxeqAseNpI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxeqAseNpI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxeqAseNpI .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxeqAseNpI .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxeqAseNpI .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxeqAseNpI .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxeqAseNpI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxeqAseNpI .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxeqAseNpI .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxeqAseNpI .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxeqAseNpI .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxeqAseNpI .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxeqAseNpI .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxeqAseNpI .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxeqAseNpI .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxeqAseNpI .mbr-text,
.cid-uxeqAseNpI .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxepfEok6V {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxepfEok6V H1 {
  color: #000000;
}
.cid-uxqjyLXgLq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxqjyLXgLq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqjyLXgLq .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxqjyLXgLq .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxqjyLXgLq .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxqjyLXgLq .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxqjyLXgLq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqjyLXgLq .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxqjyLXgLq .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxqjyLXgLq .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxqjyLXgLq .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxqjyLXgLq .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxqjyLXgLq .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqjyLXgLq .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxqjyLXgLq .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxqjyLXgLq .mbr-text,
.cid-uxqjyLXgLq .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxqjzoBuGV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxqjzoBuGV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqjzoBuGV .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxqjzoBuGV .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxqjzoBuGV .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxqjzoBuGV .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxqjzoBuGV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqjzoBuGV .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxqjzoBuGV .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxqjzoBuGV .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxqjzoBuGV .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxqjzoBuGV .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxqjzoBuGV .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqjzoBuGV .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxqjzoBuGV .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxqjzoBuGV .mbr-text,
.cid-uxqjzoBuGV .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxepfFC7RW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxepfFC7RW H1 {
  color: #000000;
}
.cid-uxepfFXWuX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxepfFXWuX h2 {
  text-align: left;
}
.cid-uxepfFXWuX h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxepfFXWuX p {
  color: #767676;
  text-align: left;
}
.cid-uxepfFXWuX .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxepfFXWuX .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxepfFXWuX .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxepfFXWuX .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxepfFXWuX .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxepfFXWuX .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxepfFXWuX .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxepfFXWuX .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxepfFXWuX .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxepfFXWuX .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxepfFXWuX .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxepfGhdI1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxepfGhdI1 H1 {
  color: #000000;
}
.cid-uxepfGwP8K {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxepfGLH5o {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxepfGLH5o h2 {
  text-align: left;
}
.cid-uxepfGLH5o h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxepfGLH5o p {
  color: #767676;
  text-align: left;
}
.cid-uxepfGLH5o .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxepfGLH5o .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxepfGLH5o .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxepfGLH5o .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxepfGLH5o .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxepfGLH5o .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxepfGLH5o .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxepfGLH5o .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxepfGLH5o .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxepfGLH5o .mbr-text {
  color: #232323;
}
.cid-uxepfH5UAa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxepfH5UAa H1 {
  color: #000000;
}
.cid-uxepfHlFaF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxepfHlFaF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxepfHlFaF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxepfHlFaF .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxepfHlFaF .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxepfHlFaF .container {
    padding: 0 26px;
  }
}
.cid-uxepfHlFaF .row {
  justify-content: center;
}
.cid-uxepfHlFaF .item {
  margin-bottom: 32px;
}
.cid-uxepfHlFaF .item a {
  display: block;
}
.cid-uxepfHlFaF .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxepfHlFaF .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxepfHlFaF .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxepfHlFaF .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxepfHlFaF .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxepfHlFaF .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxepfHlFaF .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxepfHlFaF .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxepfHlFaF .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxepfHlFaF .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxepfHlFaF .item-title {
  color: #ffffff;
}
.cid-uxepfHlFaF .mbr-date {
  color: #cacaca;
}
.cid-uxepfHlFaF .mbr-desc {
  color: #cacaca;
}
.cid-uxepfHEWkR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxepfHEWkR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxepfHEWkR .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-uxepfHEWkR .container {
    padding: 0 16px;
  }
}
.cid-uxepfHEWkR .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxepfHEWkR .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxepfHEWkR .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxepfHEWkR .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxepfHEWkR .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxepfHEWkR .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxepfHEWkR .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxepfHEWkR .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxepfHEWkR .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxepfHEWkR .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxepfHEWkR .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxepfHEWkR .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxepfHEWkR .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxepfHEWkR .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxepfHEWkR .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxepfHEWkR .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxepfHEWkR .dragArea.row .form-group .form-control:hover,
.cid-uxepfHEWkR .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxepfHEWkR .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxepfHEWkR .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxepfHEWkR .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxepfHEWkR .mbr-title {
  color: #ffffff;
}
.cid-uxepfHEWkR .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxepfHEWkR .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxepfHEWkR .mbr-text {
  color: #08323C;
}
.cid-uxepfHEWkR .list {
  color: #08323C;
}
.cid-uxepfHEWkR label {
  color: #08323C;
}
.cid-uxepfHEWkR H3 {
  color: #000000;
}
.cid-uxepfHEWkR P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxesq65CZX {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxesq65CZX H1 {
  text-align: center;
}
.cid-uxesq6oAOk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxesq6CC9H {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxesq6CC9H .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxesq6CC9H .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxesq6CC9H .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxesq6CC9H .box {
  left: 20%;
}
.cid-uxesq6CC9H .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxesq6CC9H .mbr-section-text,
.cid-uxesq6CC9H .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxesq6CC9H .text-box {
    display: none;
  }
  .cid-uxesq6CC9H .mbr-section-title,
  .cid-uxesq6CC9H .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxesq6CC9H .box {
    display: none;
  }
  .cid-uxesq6CC9H .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxesq6CC9H .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxesq6CC9H .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxesq6CC9H .mbr-section-text {
  color: #ffffff;
}
.cid-uxesq6CC9H .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxesq6CC9H .mbr-section-text DIV {
  text-align: left;
}
.cid-uxesq6PRzY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxesq6PRzY h2 {
  text-align: left;
}
.cid-uxesq6PRzY h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxesq6PRzY p {
  color: #767676;
  text-align: left;
}
.cid-uxesq6PRzY .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxesq6PRzY .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxesq6PRzY .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxesq6PRzY .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxesq6PRzY .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxesq6PRzY .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxesq6PRzY .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxesq6PRzY .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxesq6PRzY .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxesq6PRzY H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxesq6PRzY P {
  color: #ffffff;
}
.cid-uxesq6PRzY H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxesq7bZre {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxesq7bZre H1 {
  text-align: center;
}
.cid-uxetfHEcWn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxetfHEcWn H1 {
  color: #000000;
}
.cid-uxete24T4h {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxete24T4h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxete24T4h .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxete24T4h .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxete24T4h .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxete24T4h .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxete24T4h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxete24T4h .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxete24T4h .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxete24T4h .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxete24T4h .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxete24T4h .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxete24T4h .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxete24T4h .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxete24T4h .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxete24T4h .mbr-text,
.cid-uxete24T4h .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxesq84cy2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxesq84cy2 H1 {
  color: #000000;
}
.cid-uxqjH4Ca2B {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxqjH4Ca2B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqjH4Ca2B .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxqjH4Ca2B .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxqjH4Ca2B .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxqjH4Ca2B .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxqjH4Ca2B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqjH4Ca2B .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxqjH4Ca2B .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxqjH4Ca2B .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxqjH4Ca2B .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxqjH4Ca2B .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxqjH4Ca2B .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqjH4Ca2B .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxqjH4Ca2B .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxqjH4Ca2B .mbr-text,
.cid-uxqjH4Ca2B .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxqjHJHY2Z {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxqjHJHY2Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqjHJHY2Z .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxqjHJHY2Z .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxqjHJHY2Z .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxqjHJHY2Z .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxqjHJHY2Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqjHJHY2Z .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxqjHJHY2Z .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxqjHJHY2Z .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxqjHJHY2Z .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxqjHJHY2Z .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxqjHJHY2Z .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqjHJHY2Z .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxqjHJHY2Z .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxqjHJHY2Z .mbr-text,
.cid-uxqjHJHY2Z .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxesq99Jmg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxesq99Jmg H1 {
  color: #000000;
}
.cid-uxesq9pINm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxesq9pINm h2 {
  text-align: left;
}
.cid-uxesq9pINm h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxesq9pINm p {
  color: #767676;
  text-align: left;
}
.cid-uxesq9pINm .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxesq9pINm .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxesq9pINm .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxesq9pINm .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxesq9pINm .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxesq9pINm .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxesq9pINm .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxesq9pINm .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxesq9pINm .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxesq9pINm .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxesq9pINm .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxesq9KH5z {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxesq9KH5z H1 {
  color: #000000;
}
.cid-uxesqa1tEX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxesqagXcM {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxesqagXcM h2 {
  text-align: left;
}
.cid-uxesqagXcM h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxesqagXcM p {
  color: #767676;
  text-align: left;
}
.cid-uxesqagXcM .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxesqagXcM .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxesqagXcM .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxesqagXcM .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxesqagXcM .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxesqagXcM .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxesqagXcM .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxesqagXcM .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxesqagXcM .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxesqagXcM .mbr-text {
  color: #232323;
}
.cid-uxesqaAPhD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxesqaAPhD H1 {
  color: #000000;
}
.cid-uxesqaS4HC {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxesqaS4HC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxesqaS4HC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxesqaS4HC .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxesqaS4HC .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxesqaS4HC .container {
    padding: 0 26px;
  }
}
.cid-uxesqaS4HC .row {
  justify-content: center;
}
.cid-uxesqaS4HC .item {
  margin-bottom: 32px;
}
.cid-uxesqaS4HC .item a {
  display: block;
}
.cid-uxesqaS4HC .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxesqaS4HC .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxesqaS4HC .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxesqaS4HC .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxesqaS4HC .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxesqaS4HC .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxesqaS4HC .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxesqaS4HC .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxesqaS4HC .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxesqaS4HC .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxesqaS4HC .item-title {
  color: #ffffff;
}
.cid-uxesqaS4HC .mbr-date {
  color: #cacaca;
}
.cid-uxesqaS4HC .mbr-desc {
  color: #cacaca;
}
.cid-uxesqbaa58 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxesqbaa58 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxesqbaa58 .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-uxesqbaa58 .container {
    padding: 0 16px;
  }
}
.cid-uxesqbaa58 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxesqbaa58 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxesqbaa58 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxesqbaa58 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxesqbaa58 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxesqbaa58 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxesqbaa58 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxesqbaa58 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxesqbaa58 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxesqbaa58 .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxesqbaa58 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxesqbaa58 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxesqbaa58 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxesqbaa58 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxesqbaa58 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxesqbaa58 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxesqbaa58 .dragArea.row .form-group .form-control:hover,
.cid-uxesqbaa58 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxesqbaa58 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxesqbaa58 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxesqbaa58 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxesqbaa58 .mbr-title {
  color: #ffffff;
}
.cid-uxesqbaa58 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxesqbaa58 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxesqbaa58 .mbr-text {
  color: #08323C;
}
.cid-uxesqbaa58 .list {
  color: #08323C;
}
.cid-uxesqbaa58 label {
  color: #08323C;
}
.cid-uxesqbaa58 H3 {
  color: #000000;
}
.cid-uxesqbaa58 P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxezjLZ7RR {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxezjLZ7RR H1 {
  text-align: center;
}
.cid-uxezjMngO3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxezjMF5Mu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxezjMF5Mu .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxezjMF5Mu .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxezjMF5Mu .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxezjMF5Mu .box {
  left: 20%;
}
.cid-uxezjMF5Mu .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxezjMF5Mu .mbr-section-text,
.cid-uxezjMF5Mu .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxezjMF5Mu .text-box {
    display: none;
  }
  .cid-uxezjMF5Mu .mbr-section-title,
  .cid-uxezjMF5Mu .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxezjMF5Mu .box {
    display: none;
  }
  .cid-uxezjMF5Mu .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxezjMF5Mu .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxezjMF5Mu .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxezjMF5Mu .mbr-section-text {
  color: #ffffff;
}
.cid-uxezjMF5Mu .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxezjMF5Mu .mbr-section-text DIV {
  text-align: left;
}
.cid-uxezjMQ71l {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxezjMQ71l h2 {
  text-align: left;
}
.cid-uxezjMQ71l h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxezjMQ71l p {
  color: #767676;
  text-align: left;
}
.cid-uxezjMQ71l .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxezjMQ71l .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxezjMQ71l .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxezjMQ71l .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxezjMQ71l .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxezjMQ71l .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxezjMQ71l .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxezjMQ71l .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxezjMQ71l .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxezjMQ71l H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxezjMQ71l P {
  color: #ffffff;
}
.cid-uxezjMQ71l H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxezjN5gRh {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxezjN5gRh H1 {
  text-align: center;
}
.cid-uxezjNkEQA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxezjNkEQA H1 {
  color: #000000;
}
.cid-uxqlSI7cUm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxqlSI7cUm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqlSI7cUm .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxqlSI7cUm .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxqlSI7cUm .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxqlSI7cUm .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxqlSI7cUm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqlSI7cUm .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxqlSI7cUm .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxqlSI7cUm .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxqlSI7cUm .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxqlSI7cUm .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxqlSI7cUm .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqlSI7cUm .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxqlSI7cUm .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxqlSI7cUm .mbr-text,
.cid-uxqlSI7cUm .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxezjNMdBE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxezjNMdBE H1 {
  color: #000000;
}
.cid-uxCZdMvFaV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxCZdMvFaV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxCZdMvFaV .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxCZdMvFaV .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxCZdMvFaV .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxCZdMvFaV .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxCZdMvFaV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxCZdMvFaV .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxCZdMvFaV .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxCZdMvFaV .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxCZdMvFaV .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxCZdMvFaV .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxCZdMvFaV .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxCZdMvFaV .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxCZdMvFaV .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxCZdMvFaV .mbr-text,
.cid-uxCZdMvFaV .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxCZefLdsu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxCZefLdsu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxCZefLdsu .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxCZefLdsu .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxCZefLdsu .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxCZefLdsu .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxCZefLdsu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxCZefLdsu .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxCZefLdsu .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxCZefLdsu .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxCZefLdsu .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxCZefLdsu .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxCZefLdsu .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxCZefLdsu .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxCZefLdsu .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxCZefLdsu .mbr-text,
.cid-uxCZefLdsu .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxezjOFZl3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxezjOFZl3 H1 {
  color: #000000;
}
.cid-uxezjOTcDe {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxezjOTcDe h2 {
  text-align: left;
}
.cid-uxezjOTcDe h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxezjOTcDe p {
  color: #767676;
  text-align: left;
}
.cid-uxezjOTcDe .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxezjOTcDe .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxezjOTcDe .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxezjOTcDe .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxezjOTcDe .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxezjOTcDe .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxezjOTcDe .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxezjOTcDe .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxezjOTcDe .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxezjOTcDe .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxezjOTcDe .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxezjP8tD2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxezjP8tD2 H1 {
  color: #000000;
}
.cid-uxezjPkQzR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxezjPwDMR {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxezjPwDMR h2 {
  text-align: left;
}
.cid-uxezjPwDMR h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxezjPwDMR p {
  color: #767676;
  text-align: left;
}
.cid-uxezjPwDMR .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxezjPwDMR .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxezjPwDMR .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxezjPwDMR .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxezjPwDMR .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxezjPwDMR .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxezjPwDMR .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxezjPwDMR .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxezjPwDMR .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxezjPwDMR .mbr-text {
  color: #232323;
}
.cid-uxezjPO9bO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxezjPO9bO H1 {
  color: #000000;
}
.cid-uxezjQ0tH0 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxezjQ0tH0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxezjQ0tH0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxezjQ0tH0 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxezjQ0tH0 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxezjQ0tH0 .container {
    padding: 0 26px;
  }
}
.cid-uxezjQ0tH0 .row {
  justify-content: center;
}
.cid-uxezjQ0tH0 .item {
  margin-bottom: 32px;
}
.cid-uxezjQ0tH0 .item a {
  display: block;
}
.cid-uxezjQ0tH0 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxezjQ0tH0 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxezjQ0tH0 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxezjQ0tH0 .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxezjQ0tH0 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxezjQ0tH0 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxezjQ0tH0 .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxezjQ0tH0 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxezjQ0tH0 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxezjQ0tH0 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxezjQ0tH0 .item-title {
  color: #ffffff;
}
.cid-uxezjQ0tH0 .mbr-date {
  color: #cacaca;
}
.cid-uxezjQ0tH0 .mbr-desc {
  color: #cacaca;
}
.cid-uxezjQfyEK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxezjQfyEK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxezjQfyEK .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-uxezjQfyEK .container {
    padding: 0 16px;
  }
}
.cid-uxezjQfyEK .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxezjQfyEK .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxezjQfyEK .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxezjQfyEK .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxezjQfyEK .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxezjQfyEK .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxezjQfyEK .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxezjQfyEK .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxezjQfyEK .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxezjQfyEK .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxezjQfyEK .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxezjQfyEK .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxezjQfyEK .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxezjQfyEK .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxezjQfyEK .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxezjQfyEK .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxezjQfyEK .dragArea.row .form-group .form-control:hover,
.cid-uxezjQfyEK .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxezjQfyEK .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxezjQfyEK .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxezjQfyEK .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxezjQfyEK .mbr-title {
  color: #ffffff;
}
.cid-uxezjQfyEK .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxezjQfyEK .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxezjQfyEK .mbr-text {
  color: #08323C;
}
.cid-uxezjQfyEK .list {
  color: #08323C;
}
.cid-uxezjQfyEK label {
  color: #08323C;
}
.cid-uxezjQfyEK H3 {
  color: #000000;
}
.cid-uxezjQfyEK P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxqpyeGVA8 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxqpyeGVA8 H1 {
  text-align: center;
}
.cid-uxqpyfEQQa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxqpyfS5da {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxqpyfS5da .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxqpyfS5da .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxqpyfS5da .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxqpyfS5da .box {
  left: 20%;
}
.cid-uxqpyfS5da .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxqpyfS5da .mbr-section-text,
.cid-uxqpyfS5da .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxqpyfS5da .text-box {
    display: none;
  }
  .cid-uxqpyfS5da .mbr-section-title,
  .cid-uxqpyfS5da .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxqpyfS5da .box {
    display: none;
  }
  .cid-uxqpyfS5da .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxqpyfS5da .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxqpyfS5da .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxqpyfS5da .mbr-section-text {
  color: #ffffff;
}
.cid-uxqpyfS5da .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxqpyfS5da .mbr-section-text DIV {
  text-align: left;
}
.cid-uxqpyg6ck6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxqpyg6ck6 h2 {
  text-align: left;
}
.cid-uxqpyg6ck6 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxqpyg6ck6 p {
  color: #767676;
  text-align: left;
}
.cid-uxqpyg6ck6 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxqpyg6ck6 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxqpyg6ck6 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxqpyg6ck6 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxqpyg6ck6 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxqpyg6ck6 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxqpyg6ck6 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqpyg6ck6 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxqpyg6ck6 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxqpyg6ck6 H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxqpyg6ck6 P {
  color: #ffffff;
}
.cid-uxqpyg6ck6 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxqpyglNPQ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxqpyglNPQ H1 {
  text-align: center;
}
.cid-uxqpyguPKa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxqpyguPKa H1 {
  color: #000000;
}
.cid-uxqqoA0k8B {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxqqoA0k8B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqqoA0k8B .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxqqoA0k8B .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxqqoA0k8B .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxqqoA0k8B .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxqqoA0k8B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqqoA0k8B .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxqqoA0k8B .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxqqoA0k8B .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxqqoA0k8B .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxqqoA0k8B .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxqqoA0k8B .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqqoA0k8B .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxqqoA0k8B .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxqqoA0k8B .mbr-text,
.cid-uxqqoA0k8B .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxqpygWRaB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxqpygWRaB H1 {
  color: #000000;
}
.cid-uxCZj4aNKg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxCZj4aNKg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxCZj4aNKg .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxCZj4aNKg .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxCZj4aNKg .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxCZj4aNKg .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxCZj4aNKg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxCZj4aNKg .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxCZj4aNKg .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxCZj4aNKg .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxCZj4aNKg .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxCZj4aNKg .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxCZj4aNKg .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxCZj4aNKg .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxCZj4aNKg .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxCZj4aNKg .mbr-text,
.cid-uxCZj4aNKg .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxCZjw19YU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxCZjw19YU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxCZjw19YU .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxCZjw19YU .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxCZjw19YU .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxCZjw19YU .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxCZjw19YU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxCZjw19YU .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxCZjw19YU .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxCZjw19YU .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxCZjw19YU .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxCZjw19YU .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxCZjw19YU .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxCZjw19YU .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxCZjw19YU .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxCZjw19YU .mbr-text,
.cid-uxCZjw19YU .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxqpyhLFes {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxqpyhLFes H1 {
  color: #000000;
}
.cid-uxqpyhXf1k {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxqpyhXf1k h2 {
  text-align: left;
}
.cid-uxqpyhXf1k h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxqpyhXf1k p {
  color: #767676;
  text-align: left;
}
.cid-uxqpyhXf1k .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxqpyhXf1k .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxqpyhXf1k .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxqpyhXf1k .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxqpyhXf1k .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxqpyhXf1k .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxqpyhXf1k .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxqpyhXf1k .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxqpyhXf1k .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxqpyhXf1k .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxqpyhXf1k .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxqpyicnB3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxqpyicnB3 H1 {
  color: #000000;
}
.cid-uxqpyipr43 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxqpyiy4wI {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxqpyiy4wI h2 {
  text-align: left;
}
.cid-uxqpyiy4wI h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxqpyiy4wI p {
  color: #767676;
  text-align: left;
}
.cid-uxqpyiy4wI .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxqpyiy4wI .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxqpyiy4wI .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxqpyiy4wI .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxqpyiy4wI .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxqpyiy4wI .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxqpyiy4wI .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqpyiy4wI .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxqpyiy4wI .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxqpyiy4wI .mbr-text {
  color: #232323;
}
.cid-uxqpyiLMIh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxqpyiLMIh H1 {
  color: #000000;
}
.cid-uxqpyiX0XI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxqpyiX0XI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqpyiX0XI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqpyiX0XI .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxqpyiX0XI .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxqpyiX0XI .container {
    padding: 0 26px;
  }
}
.cid-uxqpyiX0XI .row {
  justify-content: center;
}
.cid-uxqpyiX0XI .item {
  margin-bottom: 32px;
}
.cid-uxqpyiX0XI .item a {
  display: block;
}
.cid-uxqpyiX0XI .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxqpyiX0XI .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxqpyiX0XI .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxqpyiX0XI .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxqpyiX0XI .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxqpyiX0XI .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxqpyiX0XI .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxqpyiX0XI .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxqpyiX0XI .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxqpyiX0XI .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxqpyiX0XI .item-title {
  color: #ffffff;
}
.cid-uxqpyiX0XI .mbr-date {
  color: #cacaca;
}
.cid-uxqpyiX0XI .mbr-desc {
  color: #cacaca;
}
.cid-uxqpyjaDmc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxqpyjaDmc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqpyjaDmc .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-uxqpyjaDmc .container {
    padding: 0 16px;
  }
}
.cid-uxqpyjaDmc .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxqpyjaDmc .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxqpyjaDmc .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxqpyjaDmc .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxqpyjaDmc .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxqpyjaDmc .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxqpyjaDmc .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxqpyjaDmc .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxqpyjaDmc .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxqpyjaDmc .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxqpyjaDmc .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxqpyjaDmc .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxqpyjaDmc .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxqpyjaDmc .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxqpyjaDmc .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxqpyjaDmc .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxqpyjaDmc .dragArea.row .form-group .form-control:hover,
.cid-uxqpyjaDmc .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxqpyjaDmc .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxqpyjaDmc .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxqpyjaDmc .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxqpyjaDmc .mbr-title {
  color: #ffffff;
}
.cid-uxqpyjaDmc .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxqpyjaDmc .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxqpyjaDmc .mbr-text {
  color: #08323C;
}
.cid-uxqpyjaDmc .list {
  color: #08323C;
}
.cid-uxqpyjaDmc label {
  color: #08323C;
}
.cid-uxqpyjaDmc H3 {
  color: #000000;
}
.cid-uxqpyjaDmc P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxqrSu1rf8 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxqrSu1rf8 H1 {
  text-align: center;
}
.cid-uxqrSuSk0h {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxqrSv1qKE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxqrSv1qKE .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxqrSv1qKE .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxqrSv1qKE .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxqrSv1qKE .box {
  left: 20%;
}
.cid-uxqrSv1qKE .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxqrSv1qKE .mbr-section-text,
.cid-uxqrSv1qKE .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxqrSv1qKE .text-box {
    display: none;
  }
  .cid-uxqrSv1qKE .mbr-section-title,
  .cid-uxqrSv1qKE .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxqrSv1qKE .box {
    display: none;
  }
  .cid-uxqrSv1qKE .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxqrSv1qKE .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxqrSv1qKE .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxqrSv1qKE .mbr-section-text {
  color: #ffffff;
}
.cid-uxqrSv1qKE .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxqrSv1qKE .mbr-section-text DIV {
  text-align: left;
}
.cid-uxqrSveX22 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxqrSveX22 h2 {
  text-align: left;
}
.cid-uxqrSveX22 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxqrSveX22 p {
  color: #767676;
  text-align: left;
}
.cid-uxqrSveX22 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxqrSveX22 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxqrSveX22 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxqrSveX22 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxqrSveX22 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxqrSveX22 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxqrSveX22 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqrSveX22 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxqrSveX22 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxqrSveX22 H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxqrSveX22 P {
  color: #ffffff;
}
.cid-uxqrSveX22 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxqrSvtB5w {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxqrSvtB5w H1 {
  text-align: center;
}
.cid-uxqrSvDKLD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxqrSvDKLD H1 {
  color: #000000;
}
.cid-uxqv3DuW7d {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxqv3DuW7d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqv3DuW7d .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxqv3DuW7d .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxqv3DuW7d .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxqv3DuW7d .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxqv3DuW7d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqv3DuW7d .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxqv3DuW7d .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxqv3DuW7d .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxqv3DuW7d .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxqv3DuW7d .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxqv3DuW7d .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqv3DuW7d .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxqv3DuW7d .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxqv3DuW7d .mbr-text,
.cid-uxqv3DuW7d .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxqrSw7n0m {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxqrSw7n0m H1 {
  color: #000000;
}
.cid-uxDHfIOWst {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxDHfIOWst .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxDHfIOWst .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxDHfIOWst .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxDHfIOWst .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxDHfIOWst .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxDHfIOWst .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxDHfIOWst .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxDHfIOWst .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxDHfIOWst .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxDHfIOWst .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxDHfIOWst .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxDHfIOWst .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxDHfIOWst .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxDHfIOWst .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxDHfIOWst .mbr-text,
.cid-uxDHfIOWst .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxDHgaKczW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxDHgaKczW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxDHgaKczW .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxDHgaKczW .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxDHgaKczW .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxDHgaKczW .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxDHgaKczW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxDHgaKczW .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxDHgaKczW .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxDHgaKczW .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxDHgaKczW .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxDHgaKczW .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxDHgaKczW .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxDHgaKczW .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxDHgaKczW .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxDHgaKczW .mbr-text,
.cid-uxDHgaKczW .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxqrSwZY5q {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxqrSwZY5q H1 {
  color: #000000;
}
.cid-uxqrSxbhN9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxqrSxbhN9 h2 {
  text-align: left;
}
.cid-uxqrSxbhN9 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxqrSxbhN9 p {
  color: #767676;
  text-align: left;
}
.cid-uxqrSxbhN9 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxqrSxbhN9 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxqrSxbhN9 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxqrSxbhN9 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxqrSxbhN9 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxqrSxbhN9 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxqrSxbhN9 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxqrSxbhN9 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxqrSxbhN9 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxqrSxbhN9 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxqrSxbhN9 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxqrSxrSG2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxqrSxrSG2 H1 {
  color: #000000;
}
.cid-uxqrSxBSlt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxqrSxLLHQ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxqrSxLLHQ h2 {
  text-align: left;
}
.cid-uxqrSxLLHQ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxqrSxLLHQ p {
  color: #767676;
  text-align: left;
}
.cid-uxqrSxLLHQ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxqrSxLLHQ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxqrSxLLHQ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxqrSxLLHQ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxqrSxLLHQ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxqrSxLLHQ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxqrSxLLHQ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqrSxLLHQ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxqrSxLLHQ .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxqrSxLLHQ .mbr-text {
  color: #232323;
}
.cid-uxqrSxYSYF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxqrSxYSYF H1 {
  color: #000000;
}
.cid-uxqrSydXJU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxqrSydXJU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqrSydXJU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqrSydXJU .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxqrSydXJU .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxqrSydXJU .container {
    padding: 0 26px;
  }
}
.cid-uxqrSydXJU .row {
  justify-content: center;
}
.cid-uxqrSydXJU .item {
  margin-bottom: 32px;
}
.cid-uxqrSydXJU .item a {
  display: block;
}
.cid-uxqrSydXJU .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxqrSydXJU .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxqrSydXJU .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxqrSydXJU .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxqrSydXJU .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxqrSydXJU .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxqrSydXJU .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxqrSydXJU .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxqrSydXJU .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxqrSydXJU .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxqrSydXJU .item-title {
  color: #ffffff;
}
.cid-uxqrSydXJU .mbr-date {
  color: #cacaca;
}
.cid-uxqrSydXJU .mbr-desc {
  color: #cacaca;
}
.cid-uxqrSytMqn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxqrSytMqn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqrSytMqn .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-uxqrSytMqn .container {
    padding: 0 16px;
  }
}
.cid-uxqrSytMqn .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxqrSytMqn .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxqrSytMqn .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxqrSytMqn .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxqrSytMqn .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxqrSytMqn .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxqrSytMqn .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxqrSytMqn .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxqrSytMqn .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxqrSytMqn .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxqrSytMqn .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxqrSytMqn .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxqrSytMqn .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxqrSytMqn .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxqrSytMqn .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxqrSytMqn .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxqrSytMqn .dragArea.row .form-group .form-control:hover,
.cid-uxqrSytMqn .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxqrSytMqn .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxqrSytMqn .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxqrSytMqn .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxqrSytMqn .mbr-title {
  color: #ffffff;
}
.cid-uxqrSytMqn .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxqrSytMqn .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxqrSytMqn .mbr-text {
  color: #08323C;
}
.cid-uxqrSytMqn .list {
  color: #08323C;
}
.cid-uxqrSytMqn label {
  color: #08323C;
}
.cid-uxqrSytMqn H3 {
  color: #000000;
}
.cid-uxqrSytMqn P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxqw7roDww {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxqw7roDww H1 {
  text-align: center;
}
.cid-uxqw7sgDsy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxqw7ssGyz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxqw7ssGyz .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxqw7ssGyz .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxqw7ssGyz .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxqw7ssGyz .box {
  left: 20%;
}
.cid-uxqw7ssGyz .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxqw7ssGyz .mbr-section-text,
.cid-uxqw7ssGyz .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxqw7ssGyz .text-box {
    display: none;
  }
  .cid-uxqw7ssGyz .mbr-section-title,
  .cid-uxqw7ssGyz .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxqw7ssGyz .box {
    display: none;
  }
  .cid-uxqw7ssGyz .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxqw7ssGyz .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxqw7ssGyz .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxqw7ssGyz .mbr-section-text {
  color: #ffffff;
}
.cid-uxqw7ssGyz .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxqw7ssGyz .mbr-section-text DIV {
  text-align: left;
}
.cid-uxqw7sGSND {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxqw7sGSND h2 {
  text-align: left;
}
.cid-uxqw7sGSND h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxqw7sGSND p {
  color: #767676;
  text-align: left;
}
.cid-uxqw7sGSND .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxqw7sGSND .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxqw7sGSND .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxqw7sGSND .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxqw7sGSND .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxqw7sGSND .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxqw7sGSND .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqw7sGSND .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxqw7sGSND .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxqw7sGSND H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxqw7sGSND P {
  color: #ffffff;
}
.cid-uxqw7sGSND H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxqw7sXM5I {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxqw7sXM5I H1 {
  text-align: center;
}
.cid-uxqw7t79pm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxqw7t79pm H1 {
  color: #000000;
}
.cid-uxqxi8sV7Q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxqxi8sV7Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqxi8sV7Q .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxqxi8sV7Q .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxqxi8sV7Q .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxqxi8sV7Q .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxqxi8sV7Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqxi8sV7Q .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxqxi8sV7Q .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxqxi8sV7Q .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxqxi8sV7Q .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxqxi8sV7Q .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxqxi8sV7Q .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqxi8sV7Q .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxqxi8sV7Q .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxqxi8sV7Q .mbr-text,
.cid-uxqxi8sV7Q .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxqw7tCKIo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxqw7tCKIo H1 {
  color: #000000;
}
.cid-uxCZGfNKjq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxCZGfNKjq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxCZGfNKjq .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxCZGfNKjq .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxCZGfNKjq .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxCZGfNKjq .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxCZGfNKjq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxCZGfNKjq .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxCZGfNKjq .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxCZGfNKjq .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxCZGfNKjq .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxCZGfNKjq .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxCZGfNKjq .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxCZGfNKjq .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxCZGfNKjq .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxCZGfNKjq .mbr-text,
.cid-uxCZGfNKjq .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxCZGMmZuw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxCZGMmZuw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxCZGMmZuw .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxCZGMmZuw .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxCZGMmZuw .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxCZGMmZuw .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxCZGMmZuw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxCZGMmZuw .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxCZGMmZuw .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxCZGMmZuw .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxCZGMmZuw .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxCZGMmZuw .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxCZGMmZuw .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxCZGMmZuw .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxCZGMmZuw .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxCZGMmZuw .mbr-text,
.cid-uxCZGMmZuw .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxqw7uxwW5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxqw7uxwW5 H1 {
  color: #000000;
}
.cid-uxqw7uKLRD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxqw7uKLRD h2 {
  text-align: left;
}
.cid-uxqw7uKLRD h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxqw7uKLRD p {
  color: #767676;
  text-align: left;
}
.cid-uxqw7uKLRD .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxqw7uKLRD .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxqw7uKLRD .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxqw7uKLRD .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxqw7uKLRD .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxqw7uKLRD .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxqw7uKLRD .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxqw7uKLRD .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxqw7uKLRD .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxqw7uKLRD .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxqw7uKLRD .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxqw7uYUi5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxqw7uYUi5 H1 {
  color: #000000;
}
.cid-uxqw7v8nu0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxqw7vjOps {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxqw7vjOps h2 {
  text-align: left;
}
.cid-uxqw7vjOps h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxqw7vjOps p {
  color: #767676;
  text-align: left;
}
.cid-uxqw7vjOps .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxqw7vjOps .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxqw7vjOps .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxqw7vjOps .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxqw7vjOps .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxqw7vjOps .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxqw7vjOps .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqw7vjOps .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxqw7vjOps .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxqw7vjOps .mbr-text {
  color: #232323;
}
.cid-uxqw7vz7NZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxqw7vz7NZ H1 {
  color: #000000;
}
.cid-uxqw7vK9CG {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxqw7vK9CG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqw7vK9CG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqw7vK9CG .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxqw7vK9CG .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxqw7vK9CG .container {
    padding: 0 26px;
  }
}
.cid-uxqw7vK9CG .row {
  justify-content: center;
}
.cid-uxqw7vK9CG .item {
  margin-bottom: 32px;
}
.cid-uxqw7vK9CG .item a {
  display: block;
}
.cid-uxqw7vK9CG .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxqw7vK9CG .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxqw7vK9CG .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxqw7vK9CG .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxqw7vK9CG .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxqw7vK9CG .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxqw7vK9CG .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxqw7vK9CG .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxqw7vK9CG .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxqw7vK9CG .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxqw7vK9CG .item-title {
  color: #ffffff;
}
.cid-uxqw7vK9CG .mbr-date {
  color: #cacaca;
}
.cid-uxqw7vK9CG .mbr-desc {
  color: #cacaca;
}
.cid-uxqw7vXUQI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxqw7vXUQI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqw7vXUQI .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-uxqw7vXUQI .container {
    padding: 0 16px;
  }
}
.cid-uxqw7vXUQI .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxqw7vXUQI .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxqw7vXUQI .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxqw7vXUQI .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxqw7vXUQI .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxqw7vXUQI .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxqw7vXUQI .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxqw7vXUQI .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxqw7vXUQI .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxqw7vXUQI .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxqw7vXUQI .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxqw7vXUQI .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxqw7vXUQI .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxqw7vXUQI .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxqw7vXUQI .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxqw7vXUQI .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxqw7vXUQI .dragArea.row .form-group .form-control:hover,
.cid-uxqw7vXUQI .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxqw7vXUQI .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxqw7vXUQI .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxqw7vXUQI .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxqw7vXUQI .mbr-title {
  color: #ffffff;
}
.cid-uxqw7vXUQI .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxqw7vXUQI .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxqw7vXUQI .mbr-text {
  color: #08323C;
}
.cid-uxqw7vXUQI .list {
  color: #08323C;
}
.cid-uxqw7vXUQI label {
  color: #08323C;
}
.cid-uxqw7vXUQI H3 {
  color: #000000;
}
.cid-uxqw7vXUQI P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxqLX7kw3x {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxqLX7kw3x H1 {
  text-align: center;
}
.cid-uxqLX8b6GL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxqLX8nHJT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxqLX8nHJT .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxqLX8nHJT .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxqLX8nHJT .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxqLX8nHJT .box {
  left: 20%;
}
.cid-uxqLX8nHJT .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxqLX8nHJT .mbr-section-text,
.cid-uxqLX8nHJT .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxqLX8nHJT .text-box {
    display: none;
  }
  .cid-uxqLX8nHJT .mbr-section-title,
  .cid-uxqLX8nHJT .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxqLX8nHJT .box {
    display: none;
  }
  .cid-uxqLX8nHJT .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxqLX8nHJT .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxqLX8nHJT .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxqLX8nHJT .mbr-section-text {
  color: #ffffff;
}
.cid-uxqLX8nHJT .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxqLX8nHJT .mbr-section-text DIV {
  text-align: left;
}
.cid-uxqLX8CkUr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxqLX8CkUr h2 {
  text-align: left;
}
.cid-uxqLX8CkUr h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxqLX8CkUr p {
  color: #767676;
  text-align: left;
}
.cid-uxqLX8CkUr .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxqLX8CkUr .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxqLX8CkUr .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxqLX8CkUr .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxqLX8CkUr .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxqLX8CkUr .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxqLX8CkUr .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqLX8CkUr .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxqLX8CkUr .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxqLX8CkUr H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxqLX8CkUr P {
  color: #ffffff;
}
.cid-uxqLX8CkUr H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxqLX8UD93 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxqLX8UD93 H1 {
  text-align: center;
}
.cid-uxqLX98uh2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxqLX98uh2 H1 {
  color: #000000;
}
.cid-uxqNFsiUFZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxqNFsiUFZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqNFsiUFZ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxqNFsiUFZ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxqNFsiUFZ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxqNFsiUFZ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxqNFsiUFZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqNFsiUFZ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxqNFsiUFZ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxqNFsiUFZ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxqNFsiUFZ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxqNFsiUFZ .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxqNFsiUFZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqNFsiUFZ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxqNFsiUFZ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxqNFsiUFZ .mbr-text,
.cid-uxqNFsiUFZ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxqLX9I1dR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxqLX9I1dR H1 {
  color: #000000;
}
.cid-uxCZN2dmqI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxCZN2dmqI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxCZN2dmqI .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxCZN2dmqI .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxCZN2dmqI .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxCZN2dmqI .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxCZN2dmqI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxCZN2dmqI .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxCZN2dmqI .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxCZN2dmqI .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxCZN2dmqI .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxCZN2dmqI .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxCZN2dmqI .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxCZN2dmqI .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxCZN2dmqI .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxCZN2dmqI .mbr-text,
.cid-uxCZN2dmqI .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxCZNAUYEG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxCZNAUYEG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxCZNAUYEG .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxCZNAUYEG .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxCZNAUYEG .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxCZNAUYEG .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxCZNAUYEG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxCZNAUYEG .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxCZNAUYEG .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxCZNAUYEG .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxCZNAUYEG .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxCZNAUYEG .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxCZNAUYEG .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxCZNAUYEG .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxCZNAUYEG .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxCZNAUYEG .mbr-text,
.cid-uxCZNAUYEG .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxqLXaJlyS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxqLXaJlyS H1 {
  color: #000000;
}
.cid-uxqLXaYcTV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxqLXaYcTV h2 {
  text-align: left;
}
.cid-uxqLXaYcTV h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxqLXaYcTV p {
  color: #767676;
  text-align: left;
}
.cid-uxqLXaYcTV .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxqLXaYcTV .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxqLXaYcTV .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxqLXaYcTV .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxqLXaYcTV .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxqLXaYcTV .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxqLXaYcTV .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxqLXaYcTV .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxqLXaYcTV .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxqLXaYcTV .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxqLXaYcTV .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxqLXbcDBR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxqLXbcDBR H1 {
  color: #000000;
}
.cid-uxqLXbsIKK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxqLXbDMq8 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxqLXbDMq8 h2 {
  text-align: left;
}
.cid-uxqLXbDMq8 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxqLXbDMq8 p {
  color: #767676;
  text-align: left;
}
.cid-uxqLXbDMq8 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxqLXbDMq8 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxqLXbDMq8 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxqLXbDMq8 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxqLXbDMq8 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxqLXbDMq8 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxqLXbDMq8 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqLXbDMq8 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxqLXbDMq8 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxqLXbDMq8 .mbr-text {
  color: #232323;
}
.cid-uxqLXbU9RN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxqLXbU9RN H1 {
  color: #000000;
}
.cid-uxqLXcaWC4 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxqLXcaWC4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqLXcaWC4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqLXcaWC4 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxqLXcaWC4 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxqLXcaWC4 .container {
    padding: 0 26px;
  }
}
.cid-uxqLXcaWC4 .row {
  justify-content: center;
}
.cid-uxqLXcaWC4 .item {
  margin-bottom: 32px;
}
.cid-uxqLXcaWC4 .item a {
  display: block;
}
.cid-uxqLXcaWC4 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxqLXcaWC4 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxqLXcaWC4 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxqLXcaWC4 .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxqLXcaWC4 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxqLXcaWC4 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxqLXcaWC4 .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxqLXcaWC4 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxqLXcaWC4 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxqLXcaWC4 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxqLXcaWC4 .item-title {
  color: #ffffff;
}
.cid-uxqLXcaWC4 .mbr-date {
  color: #cacaca;
}
.cid-uxqLXcaWC4 .mbr-desc {
  color: #cacaca;
}
.cid-uxqLXcoUwh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxqLXcoUwh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqLXcoUwh .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-uxqLXcoUwh .container {
    padding: 0 16px;
  }
}
.cid-uxqLXcoUwh .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxqLXcoUwh .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxqLXcoUwh .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxqLXcoUwh .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxqLXcoUwh .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxqLXcoUwh .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxqLXcoUwh .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxqLXcoUwh .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxqLXcoUwh .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxqLXcoUwh .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxqLXcoUwh .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxqLXcoUwh .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxqLXcoUwh .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxqLXcoUwh .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxqLXcoUwh .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxqLXcoUwh .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxqLXcoUwh .dragArea.row .form-group .form-control:hover,
.cid-uxqLXcoUwh .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxqLXcoUwh .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxqLXcoUwh .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxqLXcoUwh .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxqLXcoUwh .mbr-title {
  color: #ffffff;
}
.cid-uxqLXcoUwh .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxqLXcoUwh .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxqLXcoUwh .mbr-text {
  color: #08323C;
}
.cid-uxqLXcoUwh .list {
  color: #08323C;
}
.cid-uxqLXcoUwh label {
  color: #08323C;
}
.cid-uxqLXcoUwh H3 {
  color: #000000;
}
.cid-uxqLXcoUwh P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxqPpFnKWU {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxqPpFnKWU H1 {
  text-align: center;
}
.cid-uxqPpGtiN8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxqPpGEK1e {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxqPpGEK1e .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxqPpGEK1e .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxqPpGEK1e .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxqPpGEK1e .box {
  left: 20%;
}
.cid-uxqPpGEK1e .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxqPpGEK1e .mbr-section-text,
.cid-uxqPpGEK1e .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxqPpGEK1e .text-box {
    display: none;
  }
  .cid-uxqPpGEK1e .mbr-section-title,
  .cid-uxqPpGEK1e .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxqPpGEK1e .box {
    display: none;
  }
  .cid-uxqPpGEK1e .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxqPpGEK1e .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxqPpGEK1e .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxqPpGEK1e .mbr-section-text {
  color: #ffffff;
}
.cid-uxqPpGEK1e .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxqPpGEK1e .mbr-section-text DIV {
  text-align: left;
}
.cid-uxqPpGUYFR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxqPpGUYFR h2 {
  text-align: left;
}
.cid-uxqPpGUYFR h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxqPpGUYFR p {
  color: #767676;
  text-align: left;
}
.cid-uxqPpGUYFR .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxqPpGUYFR .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxqPpGUYFR .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxqPpGUYFR .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxqPpGUYFR .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxqPpGUYFR .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxqPpGUYFR .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqPpGUYFR .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxqPpGUYFR .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxqPpGUYFR H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxqPpGUYFR P {
  color: #ffffff;
}
.cid-uxqPpGUYFR H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxqPpHbmCz {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxqPpHbmCz H1 {
  text-align: center;
}
.cid-uxqPpHpKMy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxqPpHpKMy H1 {
  color: #000000;
}
.cid-uxqUHfMyGY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxqUHfMyGY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqUHfMyGY .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxqUHfMyGY .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxqUHfMyGY .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxqUHfMyGY .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxqUHfMyGY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqUHfMyGY .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxqUHfMyGY .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxqUHfMyGY .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxqUHfMyGY .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxqUHfMyGY .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxqUHfMyGY .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqUHfMyGY .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxqUHfMyGY .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxqUHfMyGY .mbr-text,
.cid-uxqUHfMyGY .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxqPpHSco4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxqPpHSco4 H1 {
  color: #000000;
}
.cid-uxCZSj9O0J {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxCZSj9O0J .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxCZSj9O0J .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxCZSj9O0J .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxCZSj9O0J .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxCZSj9O0J .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxCZSj9O0J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxCZSj9O0J .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxCZSj9O0J .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxCZSj9O0J .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxCZSj9O0J .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxCZSj9O0J .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxCZSj9O0J .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxCZSj9O0J .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxCZSj9O0J .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxCZSj9O0J .mbr-text,
.cid-uxCZSj9O0J .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxCZT2Otk2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxCZT2Otk2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxCZT2Otk2 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxCZT2Otk2 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxCZT2Otk2 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxCZT2Otk2 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxCZT2Otk2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxCZT2Otk2 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxCZT2Otk2 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxCZT2Otk2 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxCZT2Otk2 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxCZT2Otk2 .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxCZT2Otk2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxCZT2Otk2 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxCZT2Otk2 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxCZT2Otk2 .mbr-text,
.cid-uxCZT2Otk2 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxqPpIWNdT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxqPpIWNdT H1 {
  color: #000000;
}
.cid-uxqPpJ8fPj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxqPpJ8fPj h2 {
  text-align: left;
}
.cid-uxqPpJ8fPj h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxqPpJ8fPj p {
  color: #767676;
  text-align: left;
}
.cid-uxqPpJ8fPj .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxqPpJ8fPj .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxqPpJ8fPj .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxqPpJ8fPj .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxqPpJ8fPj .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxqPpJ8fPj .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxqPpJ8fPj .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxqPpJ8fPj .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxqPpJ8fPj .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxqPpJ8fPj .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxqPpJ8fPj .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxqPpJmJeq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxqPpJmJeq H1 {
  color: #000000;
}
.cid-uxqPpJxoC0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxqPpJLsX2 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxqPpJLsX2 h2 {
  text-align: left;
}
.cid-uxqPpJLsX2 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxqPpJLsX2 p {
  color: #767676;
  text-align: left;
}
.cid-uxqPpJLsX2 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxqPpJLsX2 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxqPpJLsX2 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxqPpJLsX2 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxqPpJLsX2 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxqPpJLsX2 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxqPpJLsX2 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqPpJLsX2 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxqPpJLsX2 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxqPpJLsX2 .mbr-text {
  color: #232323;
}
.cid-uxqPpJZEjg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxqPpJZEjg H1 {
  color: #000000;
}
.cid-uxqPpKbn7q {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxqPpKbn7q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqPpKbn7q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqPpKbn7q .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxqPpKbn7q .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxqPpKbn7q .container {
    padding: 0 26px;
  }
}
.cid-uxqPpKbn7q .row {
  justify-content: center;
}
.cid-uxqPpKbn7q .item {
  margin-bottom: 32px;
}
.cid-uxqPpKbn7q .item a {
  display: block;
}
.cid-uxqPpKbn7q .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxqPpKbn7q .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxqPpKbn7q .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxqPpKbn7q .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxqPpKbn7q .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxqPpKbn7q .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxqPpKbn7q .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxqPpKbn7q .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxqPpKbn7q .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxqPpKbn7q .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxqPpKbn7q .item-title {
  color: #ffffff;
}
.cid-uxqPpKbn7q .mbr-date {
  color: #cacaca;
}
.cid-uxqPpKbn7q .mbr-desc {
  color: #cacaca;
}
.cid-uxqPpKpQyG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxqPpKpQyG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqPpKpQyG .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-uxqPpKpQyG .container {
    padding: 0 16px;
  }
}
.cid-uxqPpKpQyG .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxqPpKpQyG .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxqPpKpQyG .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxqPpKpQyG .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxqPpKpQyG .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxqPpKpQyG .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxqPpKpQyG .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxqPpKpQyG .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxqPpKpQyG .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxqPpKpQyG .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxqPpKpQyG .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxqPpKpQyG .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxqPpKpQyG .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxqPpKpQyG .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxqPpKpQyG .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxqPpKpQyG .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxqPpKpQyG .dragArea.row .form-group .form-control:hover,
.cid-uxqPpKpQyG .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxqPpKpQyG .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxqPpKpQyG .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxqPpKpQyG .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxqPpKpQyG .mbr-title {
  color: #ffffff;
}
.cid-uxqPpKpQyG .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxqPpKpQyG .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxqPpKpQyG .mbr-text {
  color: #08323C;
}
.cid-uxqPpKpQyG .list {
  color: #08323C;
}
.cid-uxqPpKpQyG label {
  color: #08323C;
}
.cid-uxqPpKpQyG H3 {
  color: #000000;
}
.cid-uxqPpKpQyG P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxqXDs8M3J {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxqXDs8M3J H1 {
  text-align: center;
}
.cid-uxqXDt1lhJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxqXDtfCUa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxqXDtfCUa .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxqXDtfCUa .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxqXDtfCUa .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxqXDtfCUa .box {
  left: 20%;
}
.cid-uxqXDtfCUa .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxqXDtfCUa .mbr-section-text,
.cid-uxqXDtfCUa .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxqXDtfCUa .text-box {
    display: none;
  }
  .cid-uxqXDtfCUa .mbr-section-title,
  .cid-uxqXDtfCUa .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxqXDtfCUa .box {
    display: none;
  }
  .cid-uxqXDtfCUa .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxqXDtfCUa .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxqXDtfCUa .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxqXDtfCUa .mbr-section-text {
  color: #ffffff;
}
.cid-uxqXDtfCUa .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxqXDtfCUa .mbr-section-text DIV {
  text-align: left;
}
.cid-uxqXDtAsyi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxqXDtAsyi h2 {
  text-align: left;
}
.cid-uxqXDtAsyi h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxqXDtAsyi p {
  color: #767676;
  text-align: left;
}
.cid-uxqXDtAsyi .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxqXDtAsyi .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxqXDtAsyi .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxqXDtAsyi .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxqXDtAsyi .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxqXDtAsyi .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxqXDtAsyi .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqXDtAsyi .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxqXDtAsyi .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxqXDtAsyi H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxqXDtAsyi P {
  color: #ffffff;
}
.cid-uxqXDtAsyi H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxqXDtTOEK {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxqXDtTOEK H1 {
  text-align: center;
}
.cid-uxqXDu4kZt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxqXDu4kZt H1 {
  color: #000000;
}
.cid-uxqZlUH0o2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxqZlUH0o2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqZlUH0o2 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxqZlUH0o2 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxqZlUH0o2 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxqZlUH0o2 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxqZlUH0o2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqZlUH0o2 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxqZlUH0o2 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxqZlUH0o2 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxqZlUH0o2 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxqZlUH0o2 .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxqZlUH0o2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqZlUH0o2 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxqZlUH0o2 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxqZlUH0o2 .mbr-text,
.cid-uxqZlUH0o2 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxqXDuJdyz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxqXDuJdyz H1 {
  color: #000000;
}
.cid-uxD01SJoXC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD01SJoXC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD01SJoXC .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD01SJoXC .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD01SJoXC .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD01SJoXC .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD01SJoXC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD01SJoXC .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD01SJoXC .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD01SJoXC .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD01SJoXC .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD01SJoXC .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD01SJoXC .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD01SJoXC .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD01SJoXC .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD01SJoXC .mbr-text,
.cid-uxD01SJoXC .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxD05epTVt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD05epTVt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD05epTVt .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD05epTVt .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD05epTVt .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD05epTVt .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD05epTVt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD05epTVt .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD05epTVt .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD05epTVt .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD05epTVt .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD05epTVt .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD05epTVt .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD05epTVt .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD05epTVt .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD05epTVt .mbr-text,
.cid-uxD05epTVt .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxqXDvXvZZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxqXDvXvZZ H1 {
  color: #000000;
}
.cid-uxqXDwbaPU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxqXDwbaPU h2 {
  text-align: left;
}
.cid-uxqXDwbaPU h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxqXDwbaPU p {
  color: #767676;
  text-align: left;
}
.cid-uxqXDwbaPU .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxqXDwbaPU .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxqXDwbaPU .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxqXDwbaPU .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxqXDwbaPU .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxqXDwbaPU .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxqXDwbaPU .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxqXDwbaPU .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxqXDwbaPU .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxqXDwbaPU .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxqXDwbaPU .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxqXDwrRPA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxqXDwrRPA H1 {
  color: #000000;
}
.cid-uxqXDwLCsh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxqXDx092M {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxqXDx092M h2 {
  text-align: left;
}
.cid-uxqXDx092M h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxqXDx092M p {
  color: #767676;
  text-align: left;
}
.cid-uxqXDx092M .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxqXDx092M .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxqXDx092M .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxqXDx092M .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxqXDx092M .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxqXDx092M .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxqXDx092M .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxqXDx092M .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxqXDx092M .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxqXDx092M .mbr-text {
  color: #232323;
}
.cid-uxqXDxio3U {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxqXDxio3U H1 {
  color: #000000;
}
.cid-uxqXDxuiKh {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxqXDxuiKh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqXDxuiKh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqXDxuiKh .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxqXDxuiKh .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxqXDxuiKh .container {
    padding: 0 26px;
  }
}
.cid-uxqXDxuiKh .row {
  justify-content: center;
}
.cid-uxqXDxuiKh .item {
  margin-bottom: 32px;
}
.cid-uxqXDxuiKh .item a {
  display: block;
}
.cid-uxqXDxuiKh .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxqXDxuiKh .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxqXDxuiKh .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxqXDxuiKh .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxqXDxuiKh .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxqXDxuiKh .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxqXDxuiKh .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxqXDxuiKh .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxqXDxuiKh .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxqXDxuiKh .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxqXDxuiKh .item-title {
  color: #ffffff;
}
.cid-uxqXDxuiKh .mbr-date {
  color: #cacaca;
}
.cid-uxqXDxuiKh .mbr-desc {
  color: #cacaca;
}
.cid-uxqXDxL7tm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxqXDxL7tm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqXDxL7tm .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-uxqXDxL7tm .container {
    padding: 0 16px;
  }
}
.cid-uxqXDxL7tm .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxqXDxL7tm .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxqXDxL7tm .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxqXDxL7tm .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxqXDxL7tm .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxqXDxL7tm .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxqXDxL7tm .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxqXDxL7tm .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxqXDxL7tm .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxqXDxL7tm .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxqXDxL7tm .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxqXDxL7tm .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxqXDxL7tm .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxqXDxL7tm .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxqXDxL7tm .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxqXDxL7tm .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxqXDxL7tm .dragArea.row .form-group .form-control:hover,
.cid-uxqXDxL7tm .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxqXDxL7tm .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxqXDxL7tm .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxqXDxL7tm .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxqXDxL7tm .mbr-title {
  color: #ffffff;
}
.cid-uxqXDxL7tm .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxqXDxL7tm .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxqXDxL7tm .mbr-text {
  color: #08323C;
}
.cid-uxqXDxL7tm .list {
  color: #08323C;
}
.cid-uxqXDxL7tm label {
  color: #08323C;
}
.cid-uxqXDxL7tm H3 {
  color: #000000;
}
.cid-uxqXDxL7tm P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxr2PXL95T {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxr2PXL95T H1 {
  text-align: center;
}
.cid-uxr2PYGW3S {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxr2PYVDUU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxr2PYVDUU .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxr2PYVDUU .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxr2PYVDUU .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxr2PYVDUU .box {
  left: 20%;
}
.cid-uxr2PYVDUU .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxr2PYVDUU .mbr-section-text,
.cid-uxr2PYVDUU .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxr2PYVDUU .text-box {
    display: none;
  }
  .cid-uxr2PYVDUU .mbr-section-title,
  .cid-uxr2PYVDUU .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxr2PYVDUU .box {
    display: none;
  }
  .cid-uxr2PYVDUU .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxr2PYVDUU .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxr2PYVDUU .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxr2PYVDUU .mbr-section-text {
  color: #ffffff;
}
.cid-uxr2PYVDUU .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxr2PYVDUU .mbr-section-text DIV {
  text-align: left;
}
.cid-uxr2PZ98Nl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxr2PZ98Nl h2 {
  text-align: left;
}
.cid-uxr2PZ98Nl h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxr2PZ98Nl p {
  color: #767676;
  text-align: left;
}
.cid-uxr2PZ98Nl .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxr2PZ98Nl .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxr2PZ98Nl .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxr2PZ98Nl .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxr2PZ98Nl .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxr2PZ98Nl .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxr2PZ98Nl .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxr2PZ98Nl .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxr2PZ98Nl .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxr2PZ98Nl H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxr2PZ98Nl P {
  color: #ffffff;
}
.cid-uxr2PZ98Nl H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxr2PZrkmN {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxr2PZrkmN H1 {
  text-align: center;
}
.cid-uxr366yzok {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxr366yzok H1 {
  color: #000000;
}
.cid-uxr36ZLE2i {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxr36ZLE2i .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxr36ZLE2i .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxr36ZLE2i .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxr36ZLE2i .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxr36ZLE2i .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxr36ZLE2i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxr36ZLE2i .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxr36ZLE2i .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxr36ZLE2i .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxr36ZLE2i .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxr36ZLE2i .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxr36ZLE2i .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxr36ZLE2i .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxr36ZLE2i .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxr36ZLE2i .mbr-text,
.cid-uxr36ZLE2i .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxr2PZGbo4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxr2PZGbo4 H1 {
  color: #000000;
}
.cid-uxr2PZQJGK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxr2PZQJGK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxr2PZQJGK .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxr2PZQJGK .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxr2PZQJGK .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxr2PZQJGK .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxr2PZQJGK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxr2PZQJGK .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxr2PZQJGK .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxr2PZQJGK .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxr2PZQJGK .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxr2PZQJGK .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxr2PZQJGK .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxr2PZQJGK .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxr2PZQJGK .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxr2PZQJGK .mbr-text,
.cid-uxr2PZQJGK .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxr2Q0g1ao {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxr2Q0g1ao H1 {
  color: #000000;
}
.cid-uxD0dnCWGu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD0dnCWGu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD0dnCWGu .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD0dnCWGu .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD0dnCWGu .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD0dnCWGu .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD0dnCWGu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD0dnCWGu .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD0dnCWGu .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD0dnCWGu .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD0dnCWGu .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD0dnCWGu .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD0dnCWGu .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD0dnCWGu .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD0dnCWGu .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD0dnCWGu .mbr-text,
.cid-uxD0dnCWGu .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxD0dSaxkL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD0dSaxkL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD0dSaxkL .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD0dSaxkL .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD0dSaxkL .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD0dSaxkL .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD0dSaxkL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD0dSaxkL .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD0dSaxkL .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD0dSaxkL .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD0dSaxkL .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD0dSaxkL .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD0dSaxkL .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD0dSaxkL .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD0dSaxkL .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD0dSaxkL .mbr-text,
.cid-uxD0dSaxkL .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxr2Q1eV9A {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxr2Q1eV9A H1 {
  color: #000000;
}
.cid-uxr2Q1rZw7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxr2Q1rZw7 h2 {
  text-align: left;
}
.cid-uxr2Q1rZw7 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxr2Q1rZw7 p {
  color: #767676;
  text-align: left;
}
.cid-uxr2Q1rZw7 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxr2Q1rZw7 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxr2Q1rZw7 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxr2Q1rZw7 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxr2Q1rZw7 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxr2Q1rZw7 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxr2Q1rZw7 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxr2Q1rZw7 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxr2Q1rZw7 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxr2Q1rZw7 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxr2Q1rZw7 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxr2Q1KaPN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxr2Q1KaPN H1 {
  color: #000000;
}
.cid-uxr2Q1Y8v0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxr2Q2aZzF {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxr2Q2aZzF h2 {
  text-align: left;
}
.cid-uxr2Q2aZzF h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxr2Q2aZzF p {
  color: #767676;
  text-align: left;
}
.cid-uxr2Q2aZzF .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxr2Q2aZzF .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxr2Q2aZzF .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxr2Q2aZzF .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxr2Q2aZzF .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxr2Q2aZzF .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxr2Q2aZzF .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxr2Q2aZzF .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxr2Q2aZzF .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxr2Q2aZzF .mbr-text {
  color: #232323;
}
.cid-uxr2Q2sdAb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxr2Q2sdAb H1 {
  color: #000000;
}
.cid-uxr2Q2FXaw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxr2Q2FXaw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxr2Q2FXaw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxr2Q2FXaw .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxr2Q2FXaw .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxr2Q2FXaw .container {
    padding: 0 26px;
  }
}
.cid-uxr2Q2FXaw .row {
  justify-content: center;
}
.cid-uxr2Q2FXaw .item {
  margin-bottom: 32px;
}
.cid-uxr2Q2FXaw .item a {
  display: block;
}
.cid-uxr2Q2FXaw .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxr2Q2FXaw .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxr2Q2FXaw .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxr2Q2FXaw .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxr2Q2FXaw .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxr2Q2FXaw .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxr2Q2FXaw .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxr2Q2FXaw .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxr2Q2FXaw .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxr2Q2FXaw .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxr2Q2FXaw .item-title {
  color: #ffffff;
}
.cid-uxr2Q2FXaw .mbr-date {
  color: #cacaca;
}
.cid-uxr2Q2FXaw .mbr-desc {
  color: #cacaca;
}
.cid-uxr2Q2WN2Q {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxr2Q2WN2Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxr2Q2WN2Q .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-uxr2Q2WN2Q .container {
    padding: 0 16px;
  }
}
.cid-uxr2Q2WN2Q .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxr2Q2WN2Q .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxr2Q2WN2Q .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxr2Q2WN2Q .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxr2Q2WN2Q .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxr2Q2WN2Q .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxr2Q2WN2Q .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxr2Q2WN2Q .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxr2Q2WN2Q .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxr2Q2WN2Q .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxr2Q2WN2Q .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxr2Q2WN2Q .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxr2Q2WN2Q .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxr2Q2WN2Q .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxr2Q2WN2Q .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxr2Q2WN2Q .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxr2Q2WN2Q .dragArea.row .form-group .form-control:hover,
.cid-uxr2Q2WN2Q .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxr2Q2WN2Q .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxr2Q2WN2Q .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxr2Q2WN2Q .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxr2Q2WN2Q .mbr-title {
  color: #ffffff;
}
.cid-uxr2Q2WN2Q .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxr2Q2WN2Q .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxr2Q2WN2Q .mbr-text {
  color: #08323C;
}
.cid-uxr2Q2WN2Q .list {
  color: #08323C;
}
.cid-uxr2Q2WN2Q label {
  color: #08323C;
}
.cid-uxr2Q2WN2Q H3 {
  color: #000000;
}
.cid-uxr2Q2WN2Q P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxr5l9GWmz {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxr5l9GWmz H1 {
  text-align: center;
}
.cid-uxr5laEiZg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxr5laWkvs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxr5laWkvs .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxr5laWkvs .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxr5laWkvs .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxr5laWkvs .box {
  left: 20%;
}
.cid-uxr5laWkvs .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxr5laWkvs .mbr-section-text,
.cid-uxr5laWkvs .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxr5laWkvs .text-box {
    display: none;
  }
  .cid-uxr5laWkvs .mbr-section-title,
  .cid-uxr5laWkvs .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxr5laWkvs .box {
    display: none;
  }
  .cid-uxr5laWkvs .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxr5laWkvs .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxr5laWkvs .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxr5laWkvs .mbr-section-text {
  color: #ffffff;
}
.cid-uxr5laWkvs .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxr5laWkvs .mbr-section-text DIV {
  text-align: left;
}
.cid-uxr5lbifdR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxr5lbifdR h2 {
  text-align: left;
}
.cid-uxr5lbifdR h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxr5lbifdR p {
  color: #767676;
  text-align: left;
}
.cid-uxr5lbifdR .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxr5lbifdR .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxr5lbifdR .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxr5lbifdR .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxr5lbifdR .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxr5lbifdR .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxr5lbifdR .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxr5lbifdR .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxr5lbifdR .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxr5lbifdR H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxr5lbifdR P {
  color: #ffffff;
}
.cid-uxr5lbifdR H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxr5lbC9y2 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxr5lbC9y2 H1 {
  text-align: center;
}
.cid-uxr5lbRKfv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxr5lbRKfv H1 {
  color: #000000;
}
.cid-uxr5HK9HLZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxr5HK9HLZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxr5HK9HLZ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxr5HK9HLZ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxr5HK9HLZ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxr5HK9HLZ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxr5HK9HLZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxr5HK9HLZ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxr5HK9HLZ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxr5HK9HLZ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxr5HK9HLZ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxr5HK9HLZ .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxr5HK9HLZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxr5HK9HLZ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxr5HK9HLZ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxr5HK9HLZ .mbr-text,
.cid-uxr5HK9HLZ .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uxr5lcqoth {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxr5lcqoth H1 {
  color: #000000;
}
.cid-uxr5lcDWYX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxr5lcDWYX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxr5lcDWYX .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxr5lcDWYX .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxr5lcDWYX .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxr5lcDWYX .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxr5lcDWYX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxr5lcDWYX .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxr5lcDWYX .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxr5lcDWYX .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxr5lcDWYX .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxr5lcDWYX .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxr5lcDWYX .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxr5lcDWYX .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxr5lcDWYX .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxr5lcDWYX .mbr-text,
.cid-uxr5lcDWYX .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxr5ld9pnI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxr5ld9pnI H1 {
  color: #000000;
}
.cid-uxD0l384Cg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD0l384Cg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD0l384Cg .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD0l384Cg .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD0l384Cg .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD0l384Cg .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD0l384Cg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD0l384Cg .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD0l384Cg .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD0l384Cg .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD0l384Cg .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD0l384Cg .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD0l384Cg .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD0l384Cg .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD0l384Cg .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD0l384Cg .mbr-text,
.cid-uxD0l384Cg .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxD0lFGcyw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD0lFGcyw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD0lFGcyw .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD0lFGcyw .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD0lFGcyw .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD0lFGcyw .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD0lFGcyw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD0lFGcyw .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD0lFGcyw .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD0lFGcyw .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD0lFGcyw .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD0lFGcyw .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD0lFGcyw .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD0lFGcyw .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD0lFGcyw .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD0lFGcyw .mbr-text,
.cid-uxD0lFGcyw .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxr5lea455 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxr5lea455 H1 {
  color: #000000;
}
.cid-uxr5leoUYC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxr5leoUYC h2 {
  text-align: left;
}
.cid-uxr5leoUYC h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxr5leoUYC p {
  color: #767676;
  text-align: left;
}
.cid-uxr5leoUYC .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxr5leoUYC .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxr5leoUYC .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxr5leoUYC .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxr5leoUYC .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxr5leoUYC .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxr5leoUYC .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxr5leoUYC .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxr5leoUYC .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxr5leoUYC .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxr5leoUYC .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxr5leHyxX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxr5leHyxX H1 {
  color: #000000;
}
.cid-uxr5leV2GP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxr5lf9Wyn {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxr5lf9Wyn h2 {
  text-align: left;
}
.cid-uxr5lf9Wyn h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxr5lf9Wyn p {
  color: #767676;
  text-align: left;
}
.cid-uxr5lf9Wyn .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxr5lf9Wyn .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxr5lf9Wyn .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxr5lf9Wyn .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxr5lf9Wyn .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxr5lf9Wyn .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxr5lf9Wyn .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxr5lf9Wyn .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxr5lf9Wyn .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxr5lf9Wyn .mbr-text {
  color: #232323;
}
.cid-uxr5lfp2cJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxr5lfp2cJ H1 {
  color: #000000;
}
.cid-uxr5lfGukY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxr5lfGukY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxr5lfGukY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxr5lfGukY .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxr5lfGukY .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxr5lfGukY .container {
    padding: 0 26px;
  }
}
.cid-uxr5lfGukY .row {
  justify-content: center;
}
.cid-uxr5lfGukY .item {
  margin-bottom: 32px;
}
.cid-uxr5lfGukY .item a {
  display: block;
}
.cid-uxr5lfGukY .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxr5lfGukY .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxr5lfGukY .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxr5lfGukY .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxr5lfGukY .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxr5lfGukY .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxr5lfGukY .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxr5lfGukY .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxr5lfGukY .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxr5lfGukY .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxr5lfGukY .item-title {
  color: #ffffff;
}
.cid-uxr5lfGukY .mbr-date {
  color: #cacaca;
}
.cid-uxr5lfGukY .mbr-desc {
  color: #cacaca;
}
.cid-uxr5lfWSUp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxr5lfWSUp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxr5lfWSUp .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-uxr5lfWSUp .container {
    padding: 0 16px;
  }
}
.cid-uxr5lfWSUp .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxr5lfWSUp .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxr5lfWSUp .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxr5lfWSUp .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxr5lfWSUp .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxr5lfWSUp .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxr5lfWSUp .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxr5lfWSUp .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxr5lfWSUp .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxr5lfWSUp .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxr5lfWSUp .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxr5lfWSUp .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxr5lfWSUp .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxr5lfWSUp .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxr5lfWSUp .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxr5lfWSUp .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxr5lfWSUp .dragArea.row .form-group .form-control:hover,
.cid-uxr5lfWSUp .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxr5lfWSUp .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxr5lfWSUp .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxr5lfWSUp .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxr5lfWSUp .mbr-title {
  color: #ffffff;
}
.cid-uxr5lfWSUp .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxr5lfWSUp .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxr5lfWSUp .mbr-text {
  color: #08323C;
}
.cid-uxr5lfWSUp .list {
  color: #08323C;
}
.cid-uxr5lfWSUp label {
  color: #08323C;
}
.cid-uxr5lfWSUp H3 {
  color: #000000;
}
.cid-uxr5lfWSUp P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxr8pqxJcd {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxr8pqxJcd H1 {
  text-align: center;
}
.cid-uxr8prAd8d {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxr8prOcuw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxr8prOcuw .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxr8prOcuw .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxr8prOcuw .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxr8prOcuw .box {
  left: 20%;
}
.cid-uxr8prOcuw .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxr8prOcuw .mbr-section-text,
.cid-uxr8prOcuw .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxr8prOcuw .text-box {
    display: none;
  }
  .cid-uxr8prOcuw .mbr-section-title,
  .cid-uxr8prOcuw .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxr8prOcuw .box {
    display: none;
  }
  .cid-uxr8prOcuw .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxr8prOcuw .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxr8prOcuw .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxr8prOcuw .mbr-section-text {
  color: #ffffff;
}
.cid-uxr8prOcuw .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxr8prOcuw .mbr-section-text DIV {
  text-align: left;
}
.cid-uxr8psfP27 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxr8psfP27 h2 {
  text-align: left;
}
.cid-uxr8psfP27 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxr8psfP27 p {
  color: #767676;
  text-align: left;
}
.cid-uxr8psfP27 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxr8psfP27 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxr8psfP27 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxr8psfP27 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxr8psfP27 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxr8psfP27 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxr8psfP27 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxr8psfP27 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxr8psfP27 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxr8psfP27 H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxr8psfP27 P {
  color: #ffffff;
}
.cid-uxr8psfP27 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxr8psDG3a {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxr8psDG3a H1 {
  text-align: center;
}
.cid-uxr8psTk0x {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxr8psTk0x H1 {
  color: #000000;
}
.cid-uxraUUtyFO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxraUUtyFO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxraUUtyFO .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxraUUtyFO .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxraUUtyFO .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxraUUtyFO .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxraUUtyFO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxraUUtyFO .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxraUUtyFO .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxraUUtyFO .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxraUUtyFO .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxraUUtyFO .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxraUUtyFO .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxraUUtyFO .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxraUUtyFO .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxraUUtyFO .mbr-text,
.cid-uxraUUtyFO .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uxr8ptAQWv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxr8ptAQWv H1 {
  color: #000000;
}
.cid-uxr8ptOFxP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxr8ptOFxP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxr8ptOFxP .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxr8ptOFxP .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxr8ptOFxP .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxr8ptOFxP .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxr8ptOFxP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxr8ptOFxP .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxr8ptOFxP .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxr8ptOFxP .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxr8ptOFxP .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxr8ptOFxP .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxr8ptOFxP .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxr8ptOFxP .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxr8ptOFxP .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxr8ptOFxP .mbr-text,
.cid-uxr8ptOFxP .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxr8pul17d {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxr8pul17d H1 {
  color: #000000;
}
.cid-uxD0qr8S09 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD0qr8S09 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD0qr8S09 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD0qr8S09 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD0qr8S09 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD0qr8S09 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD0qr8S09 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD0qr8S09 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD0qr8S09 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD0qr8S09 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD0qr8S09 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD0qr8S09 .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD0qr8S09 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD0qr8S09 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD0qr8S09 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD0qr8S09 .mbr-text,
.cid-uxD0qr8S09 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxD0r1zg8q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD0r1zg8q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD0r1zg8q .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD0r1zg8q .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD0r1zg8q .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD0r1zg8q .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD0r1zg8q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD0r1zg8q .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD0r1zg8q .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD0r1zg8q .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD0r1zg8q .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD0r1zg8q .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD0r1zg8q .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD0r1zg8q .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD0r1zg8q .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD0r1zg8q .mbr-text,
.cid-uxD0r1zg8q .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxr8pvJz8d {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxr8pvJz8d H1 {
  color: #000000;
}
.cid-uxr8pw1HUZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxr8pw1HUZ h2 {
  text-align: left;
}
.cid-uxr8pw1HUZ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxr8pw1HUZ p {
  color: #767676;
  text-align: left;
}
.cid-uxr8pw1HUZ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxr8pw1HUZ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxr8pw1HUZ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxr8pw1HUZ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxr8pw1HUZ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxr8pw1HUZ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxr8pw1HUZ .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxr8pw1HUZ .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxr8pw1HUZ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxr8pw1HUZ .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxr8pw1HUZ .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxr8pwsZfJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxr8pwsZfJ H1 {
  color: #000000;
}
.cid-uxr8pwI8f3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxr8px0as7 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxr8px0as7 h2 {
  text-align: left;
}
.cid-uxr8px0as7 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxr8px0as7 p {
  color: #767676;
  text-align: left;
}
.cid-uxr8px0as7 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxr8px0as7 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxr8px0as7 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxr8px0as7 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxr8px0as7 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxr8px0as7 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxr8px0as7 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxr8px0as7 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxr8px0as7 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxr8px0as7 .mbr-text {
  color: #232323;
}
.cid-uxr8pxmIlp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxr8pxmIlp H1 {
  color: #000000;
}
.cid-uxr8pxHGNq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxr8pxHGNq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxr8pxHGNq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxr8pxHGNq .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxr8pxHGNq .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxr8pxHGNq .container {
    padding: 0 26px;
  }
}
.cid-uxr8pxHGNq .row {
  justify-content: center;
}
.cid-uxr8pxHGNq .item {
  margin-bottom: 32px;
}
.cid-uxr8pxHGNq .item a {
  display: block;
}
.cid-uxr8pxHGNq .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxr8pxHGNq .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxr8pxHGNq .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxr8pxHGNq .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxr8pxHGNq .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxr8pxHGNq .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxr8pxHGNq .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxr8pxHGNq .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxr8pxHGNq .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxr8pxHGNq .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxr8pxHGNq .item-title {
  color: #ffffff;
}
.cid-uxr8pxHGNq .mbr-date {
  color: #cacaca;
}
.cid-uxr8pxHGNq .mbr-desc {
  color: #cacaca;
}
.cid-uxr8py18CN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxr8py18CN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxr8py18CN .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-uxr8py18CN .container {
    padding: 0 16px;
  }
}
.cid-uxr8py18CN .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxr8py18CN .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxr8py18CN .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxr8py18CN .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxr8py18CN .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxr8py18CN .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxr8py18CN .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxr8py18CN .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxr8py18CN .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxr8py18CN .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxr8py18CN .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxr8py18CN .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxr8py18CN .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxr8py18CN .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxr8py18CN .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxr8py18CN .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxr8py18CN .dragArea.row .form-group .form-control:hover,
.cid-uxr8py18CN .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxr8py18CN .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxr8py18CN .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxr8py18CN .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxr8py18CN .mbr-title {
  color: #ffffff;
}
.cid-uxr8py18CN .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxr8py18CN .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxr8py18CN .mbr-text {
  color: #08323C;
}
.cid-uxr8py18CN .list {
  color: #08323C;
}
.cid-uxr8py18CN label {
  color: #08323C;
}
.cid-uxr8py18CN H3 {
  color: #000000;
}
.cid-uxr8py18CN P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxrcR6FbjM {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxrcR6FbjM H1 {
  text-align: center;
}
.cid-uxrcR7BASW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxrcR7QVKd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxrcR7QVKd .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxrcR7QVKd .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxrcR7QVKd .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxrcR7QVKd .box {
  left: 20%;
}
.cid-uxrcR7QVKd .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxrcR7QVKd .mbr-section-text,
.cid-uxrcR7QVKd .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxrcR7QVKd .text-box {
    display: none;
  }
  .cid-uxrcR7QVKd .mbr-section-title,
  .cid-uxrcR7QVKd .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxrcR7QVKd .box {
    display: none;
  }
  .cid-uxrcR7QVKd .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxrcR7QVKd .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxrcR7QVKd .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxrcR7QVKd .mbr-section-text {
  color: #ffffff;
}
.cid-uxrcR7QVKd .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxrcR7QVKd .mbr-section-text DIV {
  text-align: left;
}
.cid-uxrcR87dAq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxrcR87dAq h2 {
  text-align: left;
}
.cid-uxrcR87dAq h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxrcR87dAq p {
  color: #767676;
  text-align: left;
}
.cid-uxrcR87dAq .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxrcR87dAq .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxrcR87dAq .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxrcR87dAq .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxrcR87dAq .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxrcR87dAq .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxrcR87dAq .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxrcR87dAq .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxrcR87dAq .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxrcR87dAq H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxrcR87dAq P {
  color: #ffffff;
}
.cid-uxrcR87dAq H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxrcR8tgWu {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxrcR8tgWu H1 {
  text-align: center;
}
.cid-uxrcR8GHad {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxrcR8GHad H1 {
  color: #000000;
}
.cid-uxrcYTLLhv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxrcYTLLhv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxrcYTLLhv .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxrcYTLLhv .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxrcYTLLhv .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxrcYTLLhv .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxrcYTLLhv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxrcYTLLhv .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxrcYTLLhv .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxrcYTLLhv .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxrcYTLLhv .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxrcYTLLhv .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxrcYTLLhv .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxrcYTLLhv .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxrcYTLLhv .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxrcYTLLhv .mbr-text,
.cid-uxrcYTLLhv .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uxrcR9dcbj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxrcR9dcbj H1 {
  color: #000000;
}
.cid-uxrcR9Kdop {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxrcR9Kdop .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxrcR9Kdop .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxrcR9Kdop .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxrcR9Kdop .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxrcR9Kdop .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxrcR9Kdop .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxrcR9Kdop .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxrcR9Kdop .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxrcR9Kdop .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxrcR9Kdop .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxrcR9Kdop .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxrcR9Kdop .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxrcR9Kdop .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxrcR9Kdop .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxrcR9Kdop .mbr-text,
.cid-uxrcR9Kdop .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxrcRa7qT6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxrcRa7qT6 H1 {
  color: #000000;
}
.cid-uxD0wW3G82 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD0wW3G82 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD0wW3G82 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD0wW3G82 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD0wW3G82 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD0wW3G82 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD0wW3G82 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD0wW3G82 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD0wW3G82 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD0wW3G82 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD0wW3G82 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD0wW3G82 .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD0wW3G82 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD0wW3G82 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD0wW3G82 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD0wW3G82 .mbr-text,
.cid-uxD0wW3G82 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxD0xsSVOE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD0xsSVOE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD0xsSVOE .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD0xsSVOE .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD0xsSVOE .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD0xsSVOE .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD0xsSVOE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD0xsSVOE .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD0xsSVOE .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD0xsSVOE .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD0xsSVOE .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD0xsSVOE .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD0xsSVOE .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD0xsSVOE .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD0xsSVOE .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD0xsSVOE .mbr-text,
.cid-uxD0xsSVOE .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxrcRbiaoR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxrcRbiaoR H1 {
  color: #000000;
}
.cid-uxrcRbyATL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxrcRbyATL h2 {
  text-align: left;
}
.cid-uxrcRbyATL h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxrcRbyATL p {
  color: #767676;
  text-align: left;
}
.cid-uxrcRbyATL .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxrcRbyATL .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxrcRbyATL .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxrcRbyATL .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxrcRbyATL .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxrcRbyATL .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxrcRbyATL .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxrcRbyATL .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxrcRbyATL .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxrcRbyATL .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxrcRbyATL .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxrcRbPvwQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxrcRbPvwQ H1 {
  color: #000000;
}
.cid-uxrcRc6VG0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxrcRckOQf {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxrcRckOQf h2 {
  text-align: left;
}
.cid-uxrcRckOQf h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxrcRckOQf p {
  color: #767676;
  text-align: left;
}
.cid-uxrcRckOQf .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxrcRckOQf .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxrcRckOQf .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxrcRckOQf .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxrcRckOQf .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxrcRckOQf .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxrcRckOQf .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxrcRckOQf .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxrcRckOQf .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxrcRckOQf .mbr-text {
  color: #232323;
}
.cid-uxrcRcBrAL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxrcRcBrAL H1 {
  color: #000000;
}
.cid-uxrcRcQAE8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxrcRcQAE8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxrcRcQAE8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxrcRcQAE8 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxrcRcQAE8 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxrcRcQAE8 .container {
    padding: 0 26px;
  }
}
.cid-uxrcRcQAE8 .row {
  justify-content: center;
}
.cid-uxrcRcQAE8 .item {
  margin-bottom: 32px;
}
.cid-uxrcRcQAE8 .item a {
  display: block;
}
.cid-uxrcRcQAE8 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxrcRcQAE8 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxrcRcQAE8 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxrcRcQAE8 .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxrcRcQAE8 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxrcRcQAE8 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxrcRcQAE8 .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxrcRcQAE8 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxrcRcQAE8 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxrcRcQAE8 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxrcRcQAE8 .item-title {
  color: #ffffff;
}
.cid-uxrcRcQAE8 .mbr-date {
  color: #cacaca;
}
.cid-uxrcRcQAE8 .mbr-desc {
  color: #cacaca;
}
.cid-uxrcRdams4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxrcRdams4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxrcRdams4 .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-uxrcRdams4 .container {
    padding: 0 16px;
  }
}
.cid-uxrcRdams4 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxrcRdams4 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxrcRdams4 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxrcRdams4 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxrcRdams4 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxrcRdams4 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxrcRdams4 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxrcRdams4 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxrcRdams4 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxrcRdams4 .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxrcRdams4 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxrcRdams4 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxrcRdams4 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxrcRdams4 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxrcRdams4 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxrcRdams4 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxrcRdams4 .dragArea.row .form-group .form-control:hover,
.cid-uxrcRdams4 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxrcRdams4 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxrcRdams4 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxrcRdams4 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxrcRdams4 .mbr-title {
  color: #ffffff;
}
.cid-uxrcRdams4 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxrcRdams4 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxrcRdams4 .mbr-text {
  color: #08323C;
}
.cid-uxrcRdams4 .list {
  color: #08323C;
}
.cid-uxrcRdams4 label {
  color: #08323C;
}
.cid-uxrcRdams4 H3 {
  color: #000000;
}
.cid-uxrcRdams4 P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxrtB3JDi0 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxrtB3JDi0 H1 {
  text-align: center;
}
.cid-uxrtB4J3LJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxrtB4XOFI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxrtB4XOFI .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxrtB4XOFI .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxrtB4XOFI .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxrtB4XOFI .box {
  left: 20%;
}
.cid-uxrtB4XOFI .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxrtB4XOFI .mbr-section-text,
.cid-uxrtB4XOFI .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxrtB4XOFI .text-box {
    display: none;
  }
  .cid-uxrtB4XOFI .mbr-section-title,
  .cid-uxrtB4XOFI .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxrtB4XOFI .box {
    display: none;
  }
  .cid-uxrtB4XOFI .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxrtB4XOFI .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxrtB4XOFI .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxrtB4XOFI .mbr-section-text {
  color: #ffffff;
}
.cid-uxrtB4XOFI .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxrtB4XOFI .mbr-section-text DIV {
  text-align: left;
}
.cid-uxrtB5d6vq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxrtB5d6vq h2 {
  text-align: left;
}
.cid-uxrtB5d6vq h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxrtB5d6vq p {
  color: #767676;
  text-align: left;
}
.cid-uxrtB5d6vq .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxrtB5d6vq .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxrtB5d6vq .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxrtB5d6vq .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxrtB5d6vq .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxrtB5d6vq .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxrtB5d6vq .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxrtB5d6vq .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxrtB5d6vq .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxrtB5d6vq H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxrtB5d6vq P {
  color: #ffffff;
}
.cid-uxrtB5d6vq H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxrtB5zZce {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxrtB5zZce H1 {
  text-align: center;
}
.cid-uxrtB5RBLI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxrtB5RBLI H1 {
  color: #000000;
}
.cid-uxrw1vGNnS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxrw1vGNnS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxrw1vGNnS .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxrw1vGNnS .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxrw1vGNnS .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxrw1vGNnS .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxrw1vGNnS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxrw1vGNnS .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxrw1vGNnS .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxrw1vGNnS .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxrw1vGNnS .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxrw1vGNnS .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxrw1vGNnS .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxrw1vGNnS .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxrw1vGNnS .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxrw1vGNnS .mbr-text,
.cid-uxrw1vGNnS .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uxrtB6zBAp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxrtB6zBAp H1 {
  color: #000000;
}
.cid-uxrtB6Tp0n {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxrtB6Tp0n .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxrtB6Tp0n .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxrtB6Tp0n .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxrtB6Tp0n .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxrtB6Tp0n .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxrtB6Tp0n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxrtB6Tp0n .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxrtB6Tp0n .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxrtB6Tp0n .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxrtB6Tp0n .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxrtB6Tp0n .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxrtB6Tp0n .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxrtB6Tp0n .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxrtB6Tp0n .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxrtB6Tp0n .mbr-text,
.cid-uxrtB6Tp0n .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxrtB7oLyT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxrtB7oLyT H1 {
  color: #000000;
}
.cid-uxD0C8GiIh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD0C8GiIh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD0C8GiIh .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD0C8GiIh .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD0C8GiIh .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD0C8GiIh .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD0C8GiIh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD0C8GiIh .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD0C8GiIh .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD0C8GiIh .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD0C8GiIh .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD0C8GiIh .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD0C8GiIh .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD0C8GiIh .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD0C8GiIh .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD0C8GiIh .mbr-text,
.cid-uxD0C8GiIh .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxD0CAdtIt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD0CAdtIt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD0CAdtIt .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD0CAdtIt .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD0CAdtIt .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD0CAdtIt .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD0CAdtIt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD0CAdtIt .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD0CAdtIt .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD0CAdtIt .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD0CAdtIt .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD0CAdtIt .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD0CAdtIt .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD0CAdtIt .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD0CAdtIt .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD0CAdtIt .mbr-text,
.cid-uxD0CAdtIt .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxrtB8HVtt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxrtB8HVtt H1 {
  color: #000000;
}
.cid-uxrtB8Yb0q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxrtB8Yb0q h2 {
  text-align: left;
}
.cid-uxrtB8Yb0q h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxrtB8Yb0q p {
  color: #767676;
  text-align: left;
}
.cid-uxrtB8Yb0q .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxrtB8Yb0q .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxrtB8Yb0q .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxrtB8Yb0q .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxrtB8Yb0q .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxrtB8Yb0q .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxrtB8Yb0q .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxrtB8Yb0q .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxrtB8Yb0q .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxrtB8Yb0q .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxrtB8Yb0q .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxrtB9jPDw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxrtB9jPDw H1 {
  color: #000000;
}
.cid-uxrtB9Deym {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxrtB9TYp5 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxrtB9TYp5 h2 {
  text-align: left;
}
.cid-uxrtB9TYp5 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxrtB9TYp5 p {
  color: #767676;
  text-align: left;
}
.cid-uxrtB9TYp5 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxrtB9TYp5 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxrtB9TYp5 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxrtB9TYp5 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxrtB9TYp5 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxrtB9TYp5 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxrtB9TYp5 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxrtB9TYp5 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxrtB9TYp5 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxrtB9TYp5 .mbr-text {
  color: #232323;
}
.cid-uxrtBacXVZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxrtBacXVZ H1 {
  color: #000000;
}
.cid-uxrtBatm4L {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxrtBatm4L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxrtBatm4L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxrtBatm4L .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxrtBatm4L .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxrtBatm4L .container {
    padding: 0 26px;
  }
}
.cid-uxrtBatm4L .row {
  justify-content: center;
}
.cid-uxrtBatm4L .item {
  margin-bottom: 32px;
}
.cid-uxrtBatm4L .item a {
  display: block;
}
.cid-uxrtBatm4L .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxrtBatm4L .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxrtBatm4L .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxrtBatm4L .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxrtBatm4L .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxrtBatm4L .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxrtBatm4L .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxrtBatm4L .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxrtBatm4L .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxrtBatm4L .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxrtBatm4L .item-title {
  color: #ffffff;
}
.cid-uxrtBatm4L .mbr-date {
  color: #cacaca;
}
.cid-uxrtBatm4L .mbr-desc {
  color: #cacaca;
}
.cid-uxrtBaSd9z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxrtBaSd9z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxrtBaSd9z .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-uxrtBaSd9z .container {
    padding: 0 16px;
  }
}
.cid-uxrtBaSd9z .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxrtBaSd9z .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxrtBaSd9z .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxrtBaSd9z .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxrtBaSd9z .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxrtBaSd9z .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxrtBaSd9z .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxrtBaSd9z .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxrtBaSd9z .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxrtBaSd9z .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxrtBaSd9z .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxrtBaSd9z .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxrtBaSd9z .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxrtBaSd9z .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxrtBaSd9z .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxrtBaSd9z .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxrtBaSd9z .dragArea.row .form-group .form-control:hover,
.cid-uxrtBaSd9z .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxrtBaSd9z .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxrtBaSd9z .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxrtBaSd9z .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxrtBaSd9z .mbr-title {
  color: #ffffff;
}
.cid-uxrtBaSd9z .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxrtBaSd9z .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxrtBaSd9z .mbr-text {
  color: #08323C;
}
.cid-uxrtBaSd9z .list {
  color: #08323C;
}
.cid-uxrtBaSd9z label {
  color: #08323C;
}
.cid-uxrtBaSd9z H3 {
  color: #000000;
}
.cid-uxrtBaSd9z P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxvr1jcMpa {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvr1jcMpa H1 {
  text-align: center;
}
.cid-uxvr1kb6KW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxvr1ktRde {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvr1ktRde .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxvr1ktRde .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxvr1ktRde .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxvr1ktRde .box {
  left: 20%;
}
.cid-uxvr1ktRde .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxvr1ktRde .mbr-section-text,
.cid-uxvr1ktRde .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxvr1ktRde .text-box {
    display: none;
  }
  .cid-uxvr1ktRde .mbr-section-title,
  .cid-uxvr1ktRde .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxvr1ktRde .box {
    display: none;
  }
  .cid-uxvr1ktRde .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxvr1ktRde .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxvr1ktRde .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxvr1ktRde .mbr-section-text {
  color: #ffffff;
}
.cid-uxvr1ktRde .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxvr1ktRde .mbr-section-text DIV {
  text-align: left;
}
.cid-uxvr1kKH8w {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvr1kKH8w h2 {
  text-align: left;
}
.cid-uxvr1kKH8w h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvr1kKH8w p {
  color: #767676;
  text-align: left;
}
.cid-uxvr1kKH8w .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvr1kKH8w .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvr1kKH8w .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvr1kKH8w .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvr1kKH8w .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvr1kKH8w .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvr1kKH8w .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvr1kKH8w .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxvr1kKH8w .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvr1kKH8w H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxvr1kKH8w P {
  color: #ffffff;
}
.cid-uxvr1kKH8w H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxvr1l4o6l {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvr1l4o6l H1 {
  text-align: center;
}
.cid-uxvr1ljURK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvr1ljURK H1 {
  color: #000000;
}
.cid-uxvs2fZX7D {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxvs2fZX7D .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvs2fZX7D .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxvs2fZX7D .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxvs2fZX7D .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxvs2fZX7D .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxvs2fZX7D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvs2fZX7D .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxvs2fZX7D .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxvs2fZX7D .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxvs2fZX7D .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxvs2fZX7D .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxvs2fZX7D .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvs2fZX7D .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxvs2fZX7D .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxvs2fZX7D .mbr-text,
.cid-uxvs2fZX7D .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uxvr1lXLP1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvr1lXLP1 H1 {
  color: #000000;
}
.cid-uxvr1mc0XJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxvr1mc0XJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvr1mc0XJ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxvr1mc0XJ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxvr1mc0XJ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxvr1mc0XJ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxvr1mc0XJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvr1mc0XJ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxvr1mc0XJ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxvr1mc0XJ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxvr1mc0XJ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxvr1mc0XJ .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxvr1mc0XJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvr1mc0XJ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxvr1mc0XJ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxvr1mc0XJ .mbr-text,
.cid-uxvr1mc0XJ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxvr1mEwDY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvr1mEwDY H1 {
  color: #000000;
}
.cid-uxD0GMjmu6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD0GMjmu6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD0GMjmu6 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD0GMjmu6 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD0GMjmu6 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD0GMjmu6 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD0GMjmu6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD0GMjmu6 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD0GMjmu6 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD0GMjmu6 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD0GMjmu6 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD0GMjmu6 .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD0GMjmu6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD0GMjmu6 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD0GMjmu6 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD0GMjmu6 .mbr-text,
.cid-uxD0GMjmu6 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxD0HiEL2X {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD0HiEL2X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD0HiEL2X .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD0HiEL2X .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD0HiEL2X .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD0HiEL2X .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD0HiEL2X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD0HiEL2X .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD0HiEL2X .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD0HiEL2X .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD0HiEL2X .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD0HiEL2X .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD0HiEL2X .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD0HiEL2X .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD0HiEL2X .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD0HiEL2X .mbr-text,
.cid-uxD0HiEL2X .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxvr1nNzCT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvr1nNzCT H1 {
  color: #000000;
}
.cid-uxvr1o5Shd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxvr1o5Shd h2 {
  text-align: left;
}
.cid-uxvr1o5Shd h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvr1o5Shd p {
  color: #767676;
  text-align: left;
}
.cid-uxvr1o5Shd .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvr1o5Shd .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvr1o5Shd .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvr1o5Shd .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvr1o5Shd .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvr1o5Shd .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvr1o5Shd .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxvr1o5Shd .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxvr1o5Shd .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxvr1o5Shd .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxvr1o5Shd .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvr1oofb1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvr1oofb1 H1 {
  color: #000000;
}
.cid-uxvr1oDRAV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxvr1oWTff {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxvr1oWTff h2 {
  text-align: left;
}
.cid-uxvr1oWTff h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvr1oWTff p {
  color: #767676;
  text-align: left;
}
.cid-uxvr1oWTff .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvr1oWTff .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvr1oWTff .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvr1oWTff .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvr1oWTff .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvr1oWTff .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvr1oWTff .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvr1oWTff .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxvr1oWTff .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvr1oWTff .mbr-text {
  color: #232323;
}
.cid-uxvr1phXPM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvr1phXPM H1 {
  color: #000000;
}
.cid-uxvr1pzAKf {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxvr1pzAKf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvr1pzAKf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvr1pzAKf .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxvr1pzAKf .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxvr1pzAKf .container {
    padding: 0 26px;
  }
}
.cid-uxvr1pzAKf .row {
  justify-content: center;
}
.cid-uxvr1pzAKf .item {
  margin-bottom: 32px;
}
.cid-uxvr1pzAKf .item a {
  display: block;
}
.cid-uxvr1pzAKf .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxvr1pzAKf .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxvr1pzAKf .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxvr1pzAKf .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxvr1pzAKf .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxvr1pzAKf .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxvr1pzAKf .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxvr1pzAKf .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxvr1pzAKf .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxvr1pzAKf .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxvr1pzAKf .item-title {
  color: #ffffff;
}
.cid-uxvr1pzAKf .mbr-date {
  color: #cacaca;
}
.cid-uxvr1pzAKf .mbr-desc {
  color: #cacaca;
}
.cid-uxvr1pVgxS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxvr1pVgxS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvr1pVgxS .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-uxvr1pVgxS .container {
    padding: 0 16px;
  }
}
.cid-uxvr1pVgxS .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxvr1pVgxS .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxvr1pVgxS .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxvr1pVgxS .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxvr1pVgxS .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxvr1pVgxS .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxvr1pVgxS .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxvr1pVgxS .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxvr1pVgxS .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxvr1pVgxS .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxvr1pVgxS .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxvr1pVgxS .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxvr1pVgxS .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxvr1pVgxS .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxvr1pVgxS .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxvr1pVgxS .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxvr1pVgxS .dragArea.row .form-group .form-control:hover,
.cid-uxvr1pVgxS .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxvr1pVgxS .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxvr1pVgxS .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxvr1pVgxS .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxvr1pVgxS .mbr-title {
  color: #ffffff;
}
.cid-uxvr1pVgxS .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxvr1pVgxS .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxvr1pVgxS .mbr-text {
  color: #08323C;
}
.cid-uxvr1pVgxS .list {
  color: #08323C;
}
.cid-uxvr1pVgxS label {
  color: #08323C;
}
.cid-uxvr1pVgxS H3 {
  color: #000000;
}
.cid-uxvr1pVgxS P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxvti9dUxz {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvti9dUxz H1 {
  text-align: center;
}
.cid-uxvtiahz2i {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxvtiaDQNu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvtiaDQNu .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxvtiaDQNu .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxvtiaDQNu .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxvtiaDQNu .box {
  left: 20%;
}
.cid-uxvtiaDQNu .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxvtiaDQNu .mbr-section-text,
.cid-uxvtiaDQNu .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxvtiaDQNu .text-box {
    display: none;
  }
  .cid-uxvtiaDQNu .mbr-section-title,
  .cid-uxvtiaDQNu .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxvtiaDQNu .box {
    display: none;
  }
  .cid-uxvtiaDQNu .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxvtiaDQNu .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxvtiaDQNu .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxvtiaDQNu .mbr-section-text {
  color: #ffffff;
}
.cid-uxvtiaDQNu .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxvtiaDQNu .mbr-section-text DIV {
  text-align: left;
}
.cid-uxvtiaYet6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvtiaYet6 h2 {
  text-align: left;
}
.cid-uxvtiaYet6 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvtiaYet6 p {
  color: #767676;
  text-align: left;
}
.cid-uxvtiaYet6 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvtiaYet6 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvtiaYet6 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvtiaYet6 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvtiaYet6 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvtiaYet6 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvtiaYet6 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvtiaYet6 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxvtiaYet6 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvtiaYet6 H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxvtiaYet6 P {
  color: #ffffff;
}
.cid-uxvtiaYet6 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxvtibju94 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvtibju94 H1 {
  text-align: center;
}
.cid-uxvtibBwC1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvtibBwC1 H1 {
  color: #000000;
}
.cid-uxvw8yqT5w {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxvw8yqT5w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvw8yqT5w .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxvw8yqT5w .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxvw8yqT5w .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxvw8yqT5w .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxvw8yqT5w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvw8yqT5w .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxvw8yqT5w .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxvw8yqT5w .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxvw8yqT5w .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxvw8yqT5w .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxvw8yqT5w .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvw8yqT5w .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxvw8yqT5w .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxvw8yqT5w .mbr-text,
.cid-uxvw8yqT5w .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uxvticdTXm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvticdTXm H1 {
  color: #000000;
}
.cid-uxvticzM9p {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxvticzM9p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvticzM9p .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxvticzM9p .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxvticzM9p .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxvticzM9p .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxvticzM9p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvticzM9p .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxvticzM9p .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxvticzM9p .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxvticzM9p .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxvticzM9p .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxvticzM9p .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvticzM9p .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxvticzM9p .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxvticzM9p .mbr-text,
.cid-uxvticzM9p .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxvticZZ1h {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvticZZ1h H1 {
  color: #000000;
}
.cid-uxD0MDLNaR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD0MDLNaR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD0MDLNaR .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD0MDLNaR .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD0MDLNaR .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD0MDLNaR .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD0MDLNaR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD0MDLNaR .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD0MDLNaR .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD0MDLNaR .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD0MDLNaR .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD0MDLNaR .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD0MDLNaR .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD0MDLNaR .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD0MDLNaR .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD0MDLNaR .mbr-text,
.cid-uxD0MDLNaR .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxD0N7vB2R {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD0N7vB2R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD0N7vB2R .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD0N7vB2R .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD0N7vB2R .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD0N7vB2R .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD0N7vB2R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD0N7vB2R .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD0N7vB2R .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD0N7vB2R .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD0N7vB2R .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD0N7vB2R .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD0N7vB2R .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD0N7vB2R .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD0N7vB2R .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD0N7vB2R .mbr-text,
.cid-uxD0N7vB2R .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxvtiei6Yg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvtiei6Yg H1 {
  color: #000000;
}
.cid-uxvtiezNrv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxvtiezNrv h2 {
  text-align: left;
}
.cid-uxvtiezNrv h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvtiezNrv p {
  color: #767676;
  text-align: left;
}
.cid-uxvtiezNrv .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvtiezNrv .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvtiezNrv .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvtiezNrv .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvtiezNrv .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvtiezNrv .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvtiezNrv .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxvtiezNrv .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxvtiezNrv .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxvtiezNrv .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxvtiezNrv .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvtieXY67 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvtieXY67 H1 {
  color: #000000;
}
.cid-uxvtifikto {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxvtifzt35 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxvtifzt35 h2 {
  text-align: left;
}
.cid-uxvtifzt35 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvtifzt35 p {
  color: #767676;
  text-align: left;
}
.cid-uxvtifzt35 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvtifzt35 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvtifzt35 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvtifzt35 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvtifzt35 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvtifzt35 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvtifzt35 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvtifzt35 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxvtifzt35 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvtifzt35 .mbr-text {
  color: #232323;
}
.cid-uxvtifVkej {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvtifVkej H1 {
  color: #000000;
}
.cid-uxvtige300 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxvtige300 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvtige300 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvtige300 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxvtige300 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxvtige300 .container {
    padding: 0 26px;
  }
}
.cid-uxvtige300 .row {
  justify-content: center;
}
.cid-uxvtige300 .item {
  margin-bottom: 32px;
}
.cid-uxvtige300 .item a {
  display: block;
}
.cid-uxvtige300 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxvtige300 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxvtige300 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxvtige300 .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxvtige300 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxvtige300 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxvtige300 .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxvtige300 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxvtige300 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxvtige300 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxvtige300 .item-title {
  color: #ffffff;
}
.cid-uxvtige300 .mbr-date {
  color: #cacaca;
}
.cid-uxvtige300 .mbr-desc {
  color: #cacaca;
}
.cid-uxvtigBkwe {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxvtigBkwe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvtigBkwe .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-uxvtigBkwe .container {
    padding: 0 16px;
  }
}
.cid-uxvtigBkwe .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxvtigBkwe .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxvtigBkwe .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxvtigBkwe .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxvtigBkwe .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxvtigBkwe .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxvtigBkwe .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxvtigBkwe .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxvtigBkwe .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxvtigBkwe .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxvtigBkwe .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxvtigBkwe .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxvtigBkwe .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxvtigBkwe .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxvtigBkwe .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxvtigBkwe .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxvtigBkwe .dragArea.row .form-group .form-control:hover,
.cid-uxvtigBkwe .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxvtigBkwe .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxvtigBkwe .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxvtigBkwe .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxvtigBkwe .mbr-title {
  color: #ffffff;
}
.cid-uxvtigBkwe .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxvtigBkwe .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxvtigBkwe .mbr-text {
  color: #08323C;
}
.cid-uxvtigBkwe .list {
  color: #08323C;
}
.cid-uxvtigBkwe label {
  color: #08323C;
}
.cid-uxvtigBkwe H3 {
  color: #000000;
}
.cid-uxvtigBkwe P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxvx60elN5 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvx60elN5 H1 {
  text-align: center;
}
.cid-uxvx61jrTL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxvx61y3HC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvx61y3HC .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxvx61y3HC .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxvx61y3HC .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxvx61y3HC .box {
  left: 20%;
}
.cid-uxvx61y3HC .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxvx61y3HC .mbr-section-text,
.cid-uxvx61y3HC .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxvx61y3HC .text-box {
    display: none;
  }
  .cid-uxvx61y3HC .mbr-section-title,
  .cid-uxvx61y3HC .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxvx61y3HC .box {
    display: none;
  }
  .cid-uxvx61y3HC .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxvx61y3HC .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxvx61y3HC .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxvx61y3HC .mbr-section-text {
  color: #ffffff;
}
.cid-uxvx61y3HC .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxvx61y3HC .mbr-section-text DIV {
  text-align: left;
}
.cid-uxvx61P8RT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvx61P8RT h2 {
  text-align: left;
}
.cid-uxvx61P8RT h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvx61P8RT p {
  color: #767676;
  text-align: left;
}
.cid-uxvx61P8RT .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvx61P8RT .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvx61P8RT .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvx61P8RT .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvx61P8RT .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvx61P8RT .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvx61P8RT .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvx61P8RT .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxvx61P8RT .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvx61P8RT H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxvx61P8RT P {
  color: #ffffff;
}
.cid-uxvx61P8RT H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxvx62dNTh {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvx62dNTh H1 {
  text-align: center;
}
.cid-uxvx62sCRk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvx62sCRk H1 {
  color: #000000;
}
.cid-uxvygY0AWm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxvygY0AWm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvygY0AWm .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxvygY0AWm .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxvygY0AWm .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxvygY0AWm .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxvygY0AWm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvygY0AWm .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxvygY0AWm .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxvygY0AWm .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxvygY0AWm .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxvygY0AWm .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxvygY0AWm .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvygY0AWm .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxvygY0AWm .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxvygY0AWm .mbr-text,
.cid-uxvygY0AWm .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uxvx6374fY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvx6374fY H1 {
  color: #000000;
}
.cid-uxvx63mZTU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxvx63mZTU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvx63mZTU .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxvx63mZTU .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxvx63mZTU .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxvx63mZTU .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxvx63mZTU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvx63mZTU .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxvx63mZTU .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxvx63mZTU .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxvx63mZTU .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxvx63mZTU .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxvx63mZTU .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvx63mZTU .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxvx63mZTU .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxvx63mZTU .mbr-text,
.cid-uxvx63mZTU .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxvx63NVYb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvx63NVYb H1 {
  color: #000000;
}
.cid-uxD0QWSoVO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD0QWSoVO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD0QWSoVO .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD0QWSoVO .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD0QWSoVO .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD0QWSoVO .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD0QWSoVO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD0QWSoVO .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD0QWSoVO .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD0QWSoVO .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD0QWSoVO .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD0QWSoVO .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD0QWSoVO .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD0QWSoVO .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD0QWSoVO .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD0QWSoVO .mbr-text,
.cid-uxD0QWSoVO .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxD0RAs2Ua {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD0RAs2Ua .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD0RAs2Ua .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD0RAs2Ua .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD0RAs2Ua .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD0RAs2Ua .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD0RAs2Ua .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD0RAs2Ua .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD0RAs2Ua .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD0RAs2Ua .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD0RAs2Ua .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD0RAs2Ua .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD0RAs2Ua .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD0RAs2Ua .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD0RAs2Ua .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD0RAs2Ua .mbr-text,
.cid-uxD0RAs2Ua .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxvx64YFPk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvx64YFPk H1 {
  color: #000000;
}
.cid-uxvx65eAvY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxvx65eAvY h2 {
  text-align: left;
}
.cid-uxvx65eAvY h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvx65eAvY p {
  color: #767676;
  text-align: left;
}
.cid-uxvx65eAvY .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvx65eAvY .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvx65eAvY .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvx65eAvY .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvx65eAvY .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvx65eAvY .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvx65eAvY .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxvx65eAvY .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxvx65eAvY .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxvx65eAvY .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxvx65eAvY .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvx65BTcV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvx65BTcV H1 {
  color: #000000;
}
.cid-uxvx65Ssd5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxvx669XSs {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxvx669XSs h2 {
  text-align: left;
}
.cid-uxvx669XSs h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvx669XSs p {
  color: #767676;
  text-align: left;
}
.cid-uxvx669XSs .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvx669XSs .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvx669XSs .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvx669XSs .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvx669XSs .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvx669XSs .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvx669XSs .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvx669XSs .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxvx669XSs .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvx669XSs .mbr-text {
  color: #232323;
}
.cid-uxvx66wAcs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvx66wAcs H1 {
  color: #000000;
}
.cid-uxvx66PFun {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxvx66PFun .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvx66PFun .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvx66PFun .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxvx66PFun .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxvx66PFun .container {
    padding: 0 26px;
  }
}
.cid-uxvx66PFun .row {
  justify-content: center;
}
.cid-uxvx66PFun .item {
  margin-bottom: 32px;
}
.cid-uxvx66PFun .item a {
  display: block;
}
.cid-uxvx66PFun .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxvx66PFun .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxvx66PFun .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxvx66PFun .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxvx66PFun .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxvx66PFun .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxvx66PFun .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxvx66PFun .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxvx66PFun .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxvx66PFun .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxvx66PFun .item-title {
  color: #ffffff;
}
.cid-uxvx66PFun .mbr-date {
  color: #cacaca;
}
.cid-uxvx66PFun .mbr-desc {
  color: #cacaca;
}
.cid-uxvx678Stz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxvx678Stz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvx678Stz .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-uxvx678Stz .container {
    padding: 0 16px;
  }
}
.cid-uxvx678Stz .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxvx678Stz .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxvx678Stz .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxvx678Stz .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxvx678Stz .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxvx678Stz .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxvx678Stz .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxvx678Stz .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxvx678Stz .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxvx678Stz .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxvx678Stz .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxvx678Stz .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxvx678Stz .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxvx678Stz .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxvx678Stz .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxvx678Stz .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxvx678Stz .dragArea.row .form-group .form-control:hover,
.cid-uxvx678Stz .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxvx678Stz .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxvx678Stz .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxvx678Stz .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxvx678Stz .mbr-title {
  color: #ffffff;
}
.cid-uxvx678Stz .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxvx678Stz .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxvx678Stz .mbr-text {
  color: #08323C;
}
.cid-uxvx678Stz .list {
  color: #08323C;
}
.cid-uxvx678Stz label {
  color: #08323C;
}
.cid-uxvx678Stz H3 {
  color: #000000;
}
.cid-uxvx678Stz P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxvBW1oGS3 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvBW1oGS3 H1 {
  text-align: center;
}
.cid-uxvBW2snOq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxvBW2H5Gg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvBW2H5Gg .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxvBW2H5Gg .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxvBW2H5Gg .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxvBW2H5Gg .box {
  left: 20%;
}
.cid-uxvBW2H5Gg .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxvBW2H5Gg .mbr-section-text,
.cid-uxvBW2H5Gg .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxvBW2H5Gg .text-box {
    display: none;
  }
  .cid-uxvBW2H5Gg .mbr-section-title,
  .cid-uxvBW2H5Gg .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxvBW2H5Gg .box {
    display: none;
  }
  .cid-uxvBW2H5Gg .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxvBW2H5Gg .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxvBW2H5Gg .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxvBW2H5Gg .mbr-section-text {
  color: #ffffff;
}
.cid-uxvBW2H5Gg .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxvBW2H5Gg .mbr-section-text DIV {
  text-align: left;
}
.cid-uxvBW2ZmhJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvBW2ZmhJ h2 {
  text-align: left;
}
.cid-uxvBW2ZmhJ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvBW2ZmhJ p {
  color: #767676;
  text-align: left;
}
.cid-uxvBW2ZmhJ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvBW2ZmhJ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvBW2ZmhJ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvBW2ZmhJ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvBW2ZmhJ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvBW2ZmhJ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvBW2ZmhJ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvBW2ZmhJ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxvBW2ZmhJ .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvBW2ZmhJ H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxvBW2ZmhJ P {
  color: #ffffff;
}
.cid-uxvBW2ZmhJ H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxvBW3nWft {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvBW3nWft H1 {
  text-align: center;
}
.cid-uxvBW3DaHv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvBW3DaHv H1 {
  color: #000000;
}
.cid-uxvCg2iJDR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxvCg2iJDR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvCg2iJDR .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxvCg2iJDR .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxvCg2iJDR .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxvCg2iJDR .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxvCg2iJDR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvCg2iJDR .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxvCg2iJDR .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxvCg2iJDR .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxvCg2iJDR .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxvCg2iJDR .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxvCg2iJDR .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvCg2iJDR .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxvCg2iJDR .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxvCg2iJDR .mbr-text,
.cid-uxvCg2iJDR .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uxvBW4ic1y {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvBW4ic1y H1 {
  color: #000000;
}
.cid-uxvBW4ylgL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxvBW4ylgL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvBW4ylgL .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxvBW4ylgL .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxvBW4ylgL .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxvBW4ylgL .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxvBW4ylgL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvBW4ylgL .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxvBW4ylgL .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxvBW4ylgL .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxvBW4ylgL .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxvBW4ylgL .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxvBW4ylgL .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvBW4ylgL .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxvBW4ylgL .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxvBW4ylgL .mbr-text,
.cid-uxvBW4ylgL .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxvBW51BZE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvBW51BZE H1 {
  color: #000000;
}
.cid-uxD0WDj4vI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD0WDj4vI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD0WDj4vI .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD0WDj4vI .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD0WDj4vI .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD0WDj4vI .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD0WDj4vI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD0WDj4vI .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD0WDj4vI .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD0WDj4vI .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD0WDj4vI .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD0WDj4vI .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD0WDj4vI .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD0WDj4vI .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD0WDj4vI .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD0WDj4vI .mbr-text,
.cid-uxD0WDj4vI .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxD0XcLysV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD0XcLysV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD0XcLysV .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD0XcLysV .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD0XcLysV .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD0XcLysV .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD0XcLysV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD0XcLysV .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD0XcLysV .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD0XcLysV .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD0XcLysV .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD0XcLysV .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD0XcLysV .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD0XcLysV .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD0XcLysV .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD0XcLysV .mbr-text,
.cid-uxD0XcLysV .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxvBW6bMUy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvBW6bMUy H1 {
  color: #000000;
}
.cid-uxvBW6tkqF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxvBW6tkqF h2 {
  text-align: left;
}
.cid-uxvBW6tkqF h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvBW6tkqF p {
  color: #767676;
  text-align: left;
}
.cid-uxvBW6tkqF .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvBW6tkqF .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvBW6tkqF .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvBW6tkqF .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvBW6tkqF .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvBW6tkqF .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvBW6tkqF .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxvBW6tkqF .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxvBW6tkqF .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxvBW6tkqF .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxvBW6tkqF .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvBW6Qirv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvBW6Qirv H1 {
  color: #000000;
}
.cid-uxvBW799oF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxvBW7ujmB {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxvBW7ujmB h2 {
  text-align: left;
}
.cid-uxvBW7ujmB h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvBW7ujmB p {
  color: #767676;
  text-align: left;
}
.cid-uxvBW7ujmB .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvBW7ujmB .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvBW7ujmB .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvBW7ujmB .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvBW7ujmB .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvBW7ujmB .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvBW7ujmB .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvBW7ujmB .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxvBW7ujmB .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvBW7ujmB .mbr-text {
  color: #232323;
}
.cid-uxvBW7QVBz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvBW7QVBz H1 {
  color: #000000;
}
.cid-uxvBW89iqn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxvBW89iqn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvBW89iqn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvBW89iqn .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxvBW89iqn .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxvBW89iqn .container {
    padding: 0 26px;
  }
}
.cid-uxvBW89iqn .row {
  justify-content: center;
}
.cid-uxvBW89iqn .item {
  margin-bottom: 32px;
}
.cid-uxvBW89iqn .item a {
  display: block;
}
.cid-uxvBW89iqn .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxvBW89iqn .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxvBW89iqn .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxvBW89iqn .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxvBW89iqn .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxvBW89iqn .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxvBW89iqn .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxvBW89iqn .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxvBW89iqn .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxvBW89iqn .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxvBW89iqn .item-title {
  color: #ffffff;
}
.cid-uxvBW89iqn .mbr-date {
  color: #cacaca;
}
.cid-uxvBW89iqn .mbr-desc {
  color: #cacaca;
}
.cid-uxvBW8wjDA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxvBW8wjDA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvBW8wjDA .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-uxvBW8wjDA .container {
    padding: 0 16px;
  }
}
.cid-uxvBW8wjDA .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxvBW8wjDA .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxvBW8wjDA .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxvBW8wjDA .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxvBW8wjDA .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxvBW8wjDA .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxvBW8wjDA .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxvBW8wjDA .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxvBW8wjDA .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxvBW8wjDA .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxvBW8wjDA .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxvBW8wjDA .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxvBW8wjDA .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxvBW8wjDA .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxvBW8wjDA .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxvBW8wjDA .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxvBW8wjDA .dragArea.row .form-group .form-control:hover,
.cid-uxvBW8wjDA .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxvBW8wjDA .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxvBW8wjDA .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxvBW8wjDA .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxvBW8wjDA .mbr-title {
  color: #ffffff;
}
.cid-uxvBW8wjDA .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxvBW8wjDA .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxvBW8wjDA .mbr-text {
  color: #08323C;
}
.cid-uxvBW8wjDA .list {
  color: #08323C;
}
.cid-uxvBW8wjDA label {
  color: #08323C;
}
.cid-uxvBW8wjDA H3 {
  color: #000000;
}
.cid-uxvBW8wjDA P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxvEo3eY6o {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvEo3eY6o H1 {
  text-align: center;
}
.cid-uxvEo4njdz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxvEo4IVhi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvEo4IVhi .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxvEo4IVhi .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxvEo4IVhi .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxvEo4IVhi .box {
  left: 20%;
}
.cid-uxvEo4IVhi .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxvEo4IVhi .mbr-section-text,
.cid-uxvEo4IVhi .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxvEo4IVhi .text-box {
    display: none;
  }
  .cid-uxvEo4IVhi .mbr-section-title,
  .cid-uxvEo4IVhi .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxvEo4IVhi .box {
    display: none;
  }
  .cid-uxvEo4IVhi .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxvEo4IVhi .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxvEo4IVhi .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxvEo4IVhi .mbr-section-text {
  color: #ffffff;
}
.cid-uxvEo4IVhi .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxvEo4IVhi .mbr-section-text DIV {
  text-align: left;
}
.cid-uxvEo52s9l {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvEo52s9l h2 {
  text-align: left;
}
.cid-uxvEo52s9l h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvEo52s9l p {
  color: #767676;
  text-align: left;
}
.cid-uxvEo52s9l .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvEo52s9l .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvEo52s9l .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvEo52s9l .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvEo52s9l .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvEo52s9l .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvEo52s9l .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvEo52s9l .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxvEo52s9l .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvEo52s9l H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxvEo52s9l P {
  color: #ffffff;
}
.cid-uxvEo52s9l H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxvEo5ptQu {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvEo5ptQu H1 {
  text-align: center;
}
.cid-uxvEo5KcDM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvEo5KcDM H1 {
  color: #000000;
}
.cid-uxvF6jJvH3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxvF6jJvH3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvF6jJvH3 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxvF6jJvH3 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxvF6jJvH3 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxvF6jJvH3 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxvF6jJvH3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvF6jJvH3 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxvF6jJvH3 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxvF6jJvH3 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxvF6jJvH3 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxvF6jJvH3 .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxvF6jJvH3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvF6jJvH3 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxvF6jJvH3 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxvF6jJvH3 .mbr-text,
.cid-uxvF6jJvH3 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uxvEo6r8PX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvEo6r8PX H1 {
  color: #000000;
}
.cid-uxvEo6Huth {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxvEo6Huth .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvEo6Huth .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxvEo6Huth .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxvEo6Huth .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxvEo6Huth .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxvEo6Huth .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvEo6Huth .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxvEo6Huth .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxvEo6Huth .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxvEo6Huth .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxvEo6Huth .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxvEo6Huth .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvEo6Huth .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxvEo6Huth .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxvEo6Huth .mbr-text,
.cid-uxvEo6Huth .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxvEo7cU54 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvEo7cU54 H1 {
  color: #000000;
}
.cid-uxD11AgiaK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD11AgiaK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD11AgiaK .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD11AgiaK .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD11AgiaK .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD11AgiaK .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD11AgiaK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD11AgiaK .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD11AgiaK .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD11AgiaK .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD11AgiaK .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD11AgiaK .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD11AgiaK .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD11AgiaK .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD11AgiaK .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD11AgiaK .mbr-text,
.cid-uxD11AgiaK .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxD129mmD2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD129mmD2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD129mmD2 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD129mmD2 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD129mmD2 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD129mmD2 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD129mmD2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD129mmD2 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD129mmD2 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD129mmD2 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD129mmD2 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD129mmD2 .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD129mmD2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD129mmD2 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD129mmD2 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD129mmD2 .mbr-text,
.cid-uxD129mmD2 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxvEo8D9qb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvEo8D9qb H1 {
  color: #000000;
}
.cid-uxvEo8Vxmm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxvEo8Vxmm h2 {
  text-align: left;
}
.cid-uxvEo8Vxmm h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvEo8Vxmm p {
  color: #767676;
  text-align: left;
}
.cid-uxvEo8Vxmm .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvEo8Vxmm .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvEo8Vxmm .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvEo8Vxmm .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvEo8Vxmm .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvEo8Vxmm .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvEo8Vxmm .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxvEo8Vxmm .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxvEo8Vxmm .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxvEo8Vxmm .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxvEo8Vxmm .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvEo9kQEd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvEo9kQEd H1 {
  color: #000000;
}
.cid-uxvEo9Dkrx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxvEo9Vr5c {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxvEo9Vr5c h2 {
  text-align: left;
}
.cid-uxvEo9Vr5c h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvEo9Vr5c p {
  color: #767676;
  text-align: left;
}
.cid-uxvEo9Vr5c .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvEo9Vr5c .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvEo9Vr5c .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvEo9Vr5c .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvEo9Vr5c .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvEo9Vr5c .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvEo9Vr5c .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvEo9Vr5c .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxvEo9Vr5c .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvEo9Vr5c .mbr-text {
  color: #232323;
}
.cid-uxvEoakxn9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvEoakxn9 H1 {
  color: #000000;
}
.cid-uxvEoaHD73 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxvEoaHD73 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvEoaHD73 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvEoaHD73 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxvEoaHD73 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxvEoaHD73 .container {
    padding: 0 26px;
  }
}
.cid-uxvEoaHD73 .row {
  justify-content: center;
}
.cid-uxvEoaHD73 .item {
  margin-bottom: 32px;
}
.cid-uxvEoaHD73 .item a {
  display: block;
}
.cid-uxvEoaHD73 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxvEoaHD73 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxvEoaHD73 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxvEoaHD73 .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxvEoaHD73 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxvEoaHD73 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxvEoaHD73 .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxvEoaHD73 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxvEoaHD73 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxvEoaHD73 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxvEoaHD73 .item-title {
  color: #ffffff;
}
.cid-uxvEoaHD73 .mbr-date {
  color: #cacaca;
}
.cid-uxvEoaHD73 .mbr-desc {
  color: #cacaca;
}
.cid-uxvEob3MEj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxvEob3MEj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvEob3MEj .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-uxvEob3MEj .container {
    padding: 0 16px;
  }
}
.cid-uxvEob3MEj .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxvEob3MEj .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxvEob3MEj .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxvEob3MEj .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxvEob3MEj .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxvEob3MEj .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxvEob3MEj .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxvEob3MEj .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxvEob3MEj .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxvEob3MEj .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxvEob3MEj .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxvEob3MEj .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxvEob3MEj .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxvEob3MEj .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxvEob3MEj .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxvEob3MEj .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxvEob3MEj .dragArea.row .form-group .form-control:hover,
.cid-uxvEob3MEj .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxvEob3MEj .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxvEob3MEj .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxvEob3MEj .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxvEob3MEj .mbr-title {
  color: #ffffff;
}
.cid-uxvEob3MEj .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxvEob3MEj .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxvEob3MEj .mbr-text {
  color: #08323C;
}
.cid-uxvEob3MEj .list {
  color: #08323C;
}
.cid-uxvEob3MEj label {
  color: #08323C;
}
.cid-uxvEob3MEj H3 {
  color: #000000;
}
.cid-uxvEob3MEj P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxvI9Yj6Bs {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvI9Yj6Bs H1 {
  text-align: center;
}
.cid-uxvI9ZIElu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxvIa079C3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvIa079C3 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxvIa079C3 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxvIa079C3 .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxvIa079C3 .box {
  left: 20%;
}
.cid-uxvIa079C3 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxvIa079C3 .mbr-section-text,
.cid-uxvIa079C3 .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxvIa079C3 .text-box {
    display: none;
  }
  .cid-uxvIa079C3 .mbr-section-title,
  .cid-uxvIa079C3 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxvIa079C3 .box {
    display: none;
  }
  .cid-uxvIa079C3 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxvIa079C3 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxvIa079C3 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxvIa079C3 .mbr-section-text {
  color: #ffffff;
}
.cid-uxvIa079C3 .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxvIa079C3 .mbr-section-text DIV {
  text-align: left;
}
.cid-uxvIa0tiCt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvIa0tiCt h2 {
  text-align: left;
}
.cid-uxvIa0tiCt h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvIa0tiCt p {
  color: #767676;
  text-align: left;
}
.cid-uxvIa0tiCt .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvIa0tiCt .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvIa0tiCt .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvIa0tiCt .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvIa0tiCt .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvIa0tiCt .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvIa0tiCt .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvIa0tiCt .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxvIa0tiCt .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvIa0tiCt H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxvIa0tiCt P {
  color: #ffffff;
}
.cid-uxvIa0tiCt H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxvIa0S5Hh {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvIa0S5Hh H1 {
  text-align: center;
}
.cid-uxvIa1aisR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvIa1aisR H1 {
  color: #000000;
}
.cid-uxvIYfU1mH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxvIYfU1mH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvIYfU1mH .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxvIYfU1mH .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxvIYfU1mH .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxvIYfU1mH .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxvIYfU1mH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvIYfU1mH .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxvIYfU1mH .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxvIYfU1mH .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxvIYfU1mH .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxvIYfU1mH .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxvIYfU1mH .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvIYfU1mH .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxvIYfU1mH .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxvIYfU1mH .mbr-text,
.cid-uxvIYfU1mH .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uxvIa1WdYI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvIa1WdYI H1 {
  color: #000000;
}
.cid-uxvIa2iXo3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxvIa2iXo3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvIa2iXo3 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxvIa2iXo3 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxvIa2iXo3 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxvIa2iXo3 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxvIa2iXo3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvIa2iXo3 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxvIa2iXo3 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxvIa2iXo3 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxvIa2iXo3 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxvIa2iXo3 .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxvIa2iXo3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvIa2iXo3 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxvIa2iXo3 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxvIa2iXo3 .mbr-text,
.cid-uxvIa2iXo3 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxvIa2Pfgq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvIa2Pfgq H1 {
  color: #000000;
}
.cid-uxD19iTz89 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD19iTz89 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD19iTz89 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD19iTz89 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD19iTz89 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD19iTz89 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD19iTz89 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD19iTz89 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD19iTz89 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD19iTz89 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD19iTz89 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD19iTz89 .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD19iTz89 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD19iTz89 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD19iTz89 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD19iTz89 .mbr-text,
.cid-uxD19iTz89 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxD19Q23sd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD19Q23sd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD19Q23sd .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD19Q23sd .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD19Q23sd .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD19Q23sd .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD19Q23sd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD19Q23sd .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD19Q23sd .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD19Q23sd .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD19Q23sd .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD19Q23sd .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD19Q23sd .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD19Q23sd .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD19Q23sd .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD19Q23sd .mbr-text,
.cid-uxD19Q23sd .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxvIa48uIx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvIa48uIx H1 {
  color: #000000;
}
.cid-uxvIa4qjhy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxvIa4qjhy h2 {
  text-align: left;
}
.cid-uxvIa4qjhy h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvIa4qjhy p {
  color: #767676;
  text-align: left;
}
.cid-uxvIa4qjhy .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvIa4qjhy .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvIa4qjhy .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvIa4qjhy .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvIa4qjhy .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvIa4qjhy .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvIa4qjhy .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxvIa4qjhy .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxvIa4qjhy .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxvIa4qjhy .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxvIa4qjhy .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvIa4QcXy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvIa4QcXy H1 {
  color: #000000;
}
.cid-uxvIa5cBSU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxvIa5vC2r {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxvIa5vC2r h2 {
  text-align: left;
}
.cid-uxvIa5vC2r h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvIa5vC2r p {
  color: #767676;
  text-align: left;
}
.cid-uxvIa5vC2r .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvIa5vC2r .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvIa5vC2r .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvIa5vC2r .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvIa5vC2r .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvIa5vC2r .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvIa5vC2r .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvIa5vC2r .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxvIa5vC2r .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvIa5vC2r .mbr-text {
  color: #232323;
}
.cid-uxvIa5TSks {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvIa5TSks H1 {
  color: #000000;
}
.cid-uxvIa6c50C {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxvIa6c50C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvIa6c50C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvIa6c50C .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxvIa6c50C .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxvIa6c50C .container {
    padding: 0 26px;
  }
}
.cid-uxvIa6c50C .row {
  justify-content: center;
}
.cid-uxvIa6c50C .item {
  margin-bottom: 32px;
}
.cid-uxvIa6c50C .item a {
  display: block;
}
.cid-uxvIa6c50C .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxvIa6c50C .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxvIa6c50C .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxvIa6c50C .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxvIa6c50C .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxvIa6c50C .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxvIa6c50C .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxvIa6c50C .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxvIa6c50C .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxvIa6c50C .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxvIa6c50C .item-title {
  color: #ffffff;
}
.cid-uxvIa6c50C .mbr-date {
  color: #cacaca;
}
.cid-uxvIa6c50C .mbr-desc {
  color: #cacaca;
}
.cid-uxvIa6zbep {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxvIa6zbep .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvIa6zbep .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-uxvIa6zbep .container {
    padding: 0 16px;
  }
}
.cid-uxvIa6zbep .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxvIa6zbep .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxvIa6zbep .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxvIa6zbep .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxvIa6zbep .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxvIa6zbep .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxvIa6zbep .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxvIa6zbep .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxvIa6zbep .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxvIa6zbep .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxvIa6zbep .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxvIa6zbep .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxvIa6zbep .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxvIa6zbep .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxvIa6zbep .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxvIa6zbep .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxvIa6zbep .dragArea.row .form-group .form-control:hover,
.cid-uxvIa6zbep .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxvIa6zbep .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxvIa6zbep .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxvIa6zbep .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxvIa6zbep .mbr-title {
  color: #ffffff;
}
.cid-uxvIa6zbep .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxvIa6zbep .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxvIa6zbep .mbr-text {
  color: #08323C;
}
.cid-uxvIa6zbep .list {
  color: #08323C;
}
.cid-uxvIa6zbep label {
  color: #08323C;
}
.cid-uxvIa6zbep H3 {
  color: #000000;
}
.cid-uxvIa6zbep P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxvKB8CHmA {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvKB8CHmA H1 {
  text-align: center;
}
.cid-uxvKB8TDWM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxvKB92tgH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvKB92tgH .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxvKB92tgH .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxvKB92tgH .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxvKB92tgH .box {
  left: 20%;
}
.cid-uxvKB92tgH .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxvKB92tgH .mbr-section-text,
.cid-uxvKB92tgH .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxvKB92tgH .text-box {
    display: none;
  }
  .cid-uxvKB92tgH .mbr-section-title,
  .cid-uxvKB92tgH .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxvKB92tgH .box {
    display: none;
  }
  .cid-uxvKB92tgH .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxvKB92tgH .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxvKB92tgH .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxvKB92tgH .mbr-section-text {
  color: #ffffff;
}
.cid-uxvKB92tgH .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxvKB92tgH .mbr-section-text DIV {
  text-align: left;
}
.cid-uxvKB9bdzZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvKB9bdzZ h2 {
  text-align: left;
}
.cid-uxvKB9bdzZ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvKB9bdzZ p {
  color: #767676;
  text-align: left;
}
.cid-uxvKB9bdzZ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvKB9bdzZ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvKB9bdzZ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvKB9bdzZ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvKB9bdzZ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvKB9bdzZ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvKB9bdzZ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvKB9bdzZ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxvKB9bdzZ .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvKB9bdzZ H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxvKB9bdzZ P {
  color: #ffffff;
}
.cid-uxvKB9bdzZ H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxvKB9sBYo {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvKB9sBYo H1 {
  text-align: center;
}
.cid-uxvKB9Hdry {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvKB9Hdry H1 {
  color: #000000;
}
.cid-uxvMedJfYw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxvMedJfYw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvMedJfYw .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxvMedJfYw .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxvMedJfYw .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxvMedJfYw .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxvMedJfYw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvMedJfYw .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxvMedJfYw .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxvMedJfYw .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxvMedJfYw .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxvMedJfYw .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxvMedJfYw .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvMedJfYw .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxvMedJfYw .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxvMedJfYw .mbr-text,
.cid-uxvMedJfYw .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uxvKBafl4h {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvKBafl4h H1 {
  color: #000000;
}
.cid-uxvKBao35M {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxvKBao35M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvKBao35M .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxvKBao35M .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxvKBao35M .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxvKBao35M .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxvKBao35M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvKBao35M .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxvKBao35M .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxvKBao35M .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxvKBao35M .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxvKBao35M .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxvKBao35M .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvKBao35M .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxvKBao35M .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxvKBao35M .mbr-text,
.cid-uxvKBao35M .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxvKBaIENC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvKBaIENC H1 {
  color: #000000;
}
.cid-uxD1eoyfSw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD1eoyfSw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD1eoyfSw .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD1eoyfSw .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD1eoyfSw .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD1eoyfSw .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD1eoyfSw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD1eoyfSw .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD1eoyfSw .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD1eoyfSw .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD1eoyfSw .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD1eoyfSw .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD1eoyfSw .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD1eoyfSw .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD1eoyfSw .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD1eoyfSw .mbr-text,
.cid-uxD1eoyfSw .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxD1eS4a5b {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD1eS4a5b .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD1eS4a5b .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD1eS4a5b .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD1eS4a5b .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD1eS4a5b .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD1eS4a5b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD1eS4a5b .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD1eS4a5b .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD1eS4a5b .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD1eS4a5b .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD1eS4a5b .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD1eS4a5b .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD1eS4a5b .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD1eS4a5b .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD1eS4a5b .mbr-text,
.cid-uxD1eS4a5b .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxvKBbAbG6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvKBbAbG6 H1 {
  color: #000000;
}
.cid-uxvKBbNRT8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxvKBbNRT8 h2 {
  text-align: left;
}
.cid-uxvKBbNRT8 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvKBbNRT8 p {
  color: #767676;
  text-align: left;
}
.cid-uxvKBbNRT8 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvKBbNRT8 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvKBbNRT8 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvKBbNRT8 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvKBbNRT8 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvKBbNRT8 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvKBbNRT8 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxvKBbNRT8 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxvKBbNRT8 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxvKBbNRT8 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxvKBbNRT8 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvKBc4u98 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvKBc4u98 H1 {
  color: #000000;
}
.cid-uxvKBcgf0Z {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxvKBctYh9 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxvKBctYh9 h2 {
  text-align: left;
}
.cid-uxvKBctYh9 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvKBctYh9 p {
  color: #767676;
  text-align: left;
}
.cid-uxvKBctYh9 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvKBctYh9 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvKBctYh9 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvKBctYh9 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvKBctYh9 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvKBctYh9 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvKBctYh9 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvKBctYh9 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxvKBctYh9 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvKBctYh9 .mbr-text {
  color: #232323;
}
.cid-uxvKBcHKTw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvKBcHKTw H1 {
  color: #000000;
}
.cid-uxvKBcXtRn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxvKBcXtRn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvKBcXtRn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvKBcXtRn .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxvKBcXtRn .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxvKBcXtRn .container {
    padding: 0 26px;
  }
}
.cid-uxvKBcXtRn .row {
  justify-content: center;
}
.cid-uxvKBcXtRn .item {
  margin-bottom: 32px;
}
.cid-uxvKBcXtRn .item a {
  display: block;
}
.cid-uxvKBcXtRn .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxvKBcXtRn .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxvKBcXtRn .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxvKBcXtRn .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxvKBcXtRn .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxvKBcXtRn .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxvKBcXtRn .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxvKBcXtRn .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxvKBcXtRn .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxvKBcXtRn .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxvKBcXtRn .item-title {
  color: #ffffff;
}
.cid-uxvKBcXtRn .mbr-date {
  color: #cacaca;
}
.cid-uxvKBcXtRn .mbr-desc {
  color: #cacaca;
}
.cid-uxvKBddc0X {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxvKBddc0X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvKBddc0X .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-uxvKBddc0X .container {
    padding: 0 16px;
  }
}
.cid-uxvKBddc0X .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxvKBddc0X .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxvKBddc0X .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxvKBddc0X .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxvKBddc0X .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxvKBddc0X .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxvKBddc0X .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxvKBddc0X .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxvKBddc0X .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxvKBddc0X .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxvKBddc0X .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxvKBddc0X .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxvKBddc0X .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxvKBddc0X .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxvKBddc0X .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxvKBddc0X .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxvKBddc0X .dragArea.row .form-group .form-control:hover,
.cid-uxvKBddc0X .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxvKBddc0X .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxvKBddc0X .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxvKBddc0X .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxvKBddc0X .mbr-title {
  color: #ffffff;
}
.cid-uxvKBddc0X .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxvKBddc0X .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxvKBddc0X .mbr-text {
  color: #08323C;
}
.cid-uxvKBddc0X .list {
  color: #08323C;
}
.cid-uxvKBddc0X label {
  color: #08323C;
}
.cid-uxvKBddc0X H3 {
  color: #000000;
}
.cid-uxvKBddc0X P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxvNjN6f2K {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvNjN6f2K H1 {
  text-align: center;
}
.cid-uxvNjNl1rt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxvNjNvQmP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvNjNvQmP .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxvNjNvQmP .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxvNjNvQmP .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxvNjNvQmP .box {
  left: 20%;
}
.cid-uxvNjNvQmP .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxvNjNvQmP .mbr-section-text,
.cid-uxvNjNvQmP .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxvNjNvQmP .text-box {
    display: none;
  }
  .cid-uxvNjNvQmP .mbr-section-title,
  .cid-uxvNjNvQmP .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxvNjNvQmP .box {
    display: none;
  }
  .cid-uxvNjNvQmP .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxvNjNvQmP .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxvNjNvQmP .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxvNjNvQmP .mbr-section-text {
  color: #ffffff;
}
.cid-uxvNjNvQmP .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxvNjNvQmP .mbr-section-text DIV {
  text-align: left;
}
.cid-uxvNjNFtsJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvNjNFtsJ h2 {
  text-align: left;
}
.cid-uxvNjNFtsJ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvNjNFtsJ p {
  color: #767676;
  text-align: left;
}
.cid-uxvNjNFtsJ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvNjNFtsJ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvNjNFtsJ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvNjNFtsJ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvNjNFtsJ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvNjNFtsJ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvNjNFtsJ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvNjNFtsJ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxvNjNFtsJ .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvNjNFtsJ H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxvNjNFtsJ P {
  color: #ffffff;
}
.cid-uxvNjNFtsJ H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxvNjNVw5P {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvNjNVw5P H1 {
  text-align: center;
}
.cid-uxvNjO9gi2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvNjO9gi2 H1 {
  color: #000000;
}
.cid-uxvPNO72mk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxvPNO72mk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvPNO72mk .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxvPNO72mk .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxvPNO72mk .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxvPNO72mk .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxvPNO72mk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvPNO72mk .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxvPNO72mk .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxvPNO72mk .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxvPNO72mk .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxvPNO72mk .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxvPNO72mk .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvPNO72mk .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxvPNO72mk .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxvPNO72mk .mbr-text,
.cid-uxvPNO72mk .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uxvNjODtSw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvNjODtSw H1 {
  color: #000000;
}
.cid-uxvNjOPchb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxvNjOPchb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvNjOPchb .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxvNjOPchb .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxvNjOPchb .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxvNjOPchb .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxvNjOPchb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvNjOPchb .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxvNjOPchb .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxvNjOPchb .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxvNjOPchb .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxvNjOPchb .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxvNjOPchb .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvNjOPchb .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxvNjOPchb .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxvNjOPchb .mbr-text,
.cid-uxvNjOPchb .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxvNjPe4kL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvNjPe4kL H1 {
  color: #000000;
}
.cid-uxD1ixIctN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD1ixIctN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD1ixIctN .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD1ixIctN .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD1ixIctN .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD1ixIctN .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD1ixIctN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD1ixIctN .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD1ixIctN .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD1ixIctN .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD1ixIctN .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD1ixIctN .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD1ixIctN .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD1ixIctN .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD1ixIctN .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD1ixIctN .mbr-text,
.cid-uxD1ixIctN .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxD1j25O3l {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD1j25O3l .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD1j25O3l .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD1j25O3l .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD1j25O3l .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD1j25O3l .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD1j25O3l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD1j25O3l .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD1j25O3l .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD1j25O3l .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD1j25O3l .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD1j25O3l .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD1j25O3l .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD1j25O3l .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD1j25O3l .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD1j25O3l .mbr-text,
.cid-uxD1j25O3l .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxvNjQglsA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvNjQglsA H1 {
  color: #000000;
}
.cid-uxvNjQxPR2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxvNjQxPR2 h2 {
  text-align: left;
}
.cid-uxvNjQxPR2 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvNjQxPR2 p {
  color: #767676;
  text-align: left;
}
.cid-uxvNjQxPR2 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvNjQxPR2 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvNjQxPR2 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvNjQxPR2 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvNjQxPR2 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvNjQxPR2 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvNjQxPR2 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxvNjQxPR2 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxvNjQxPR2 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxvNjQxPR2 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxvNjQxPR2 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvNjQNCuv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvNjQNCuv H1 {
  color: #000000;
}
.cid-uxvNjQZxEc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxvNjRa3Ct {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxvNjRa3Ct h2 {
  text-align: left;
}
.cid-uxvNjRa3Ct h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvNjRa3Ct p {
  color: #767676;
  text-align: left;
}
.cid-uxvNjRa3Ct .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvNjRa3Ct .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvNjRa3Ct .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvNjRa3Ct .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvNjRa3Ct .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvNjRa3Ct .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvNjRa3Ct .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvNjRa3Ct .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxvNjRa3Ct .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvNjRa3Ct .mbr-text {
  color: #232323;
}
.cid-uxvNjRo2GJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvNjRo2GJ H1 {
  color: #000000;
}
.cid-uxvNjRC8bQ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxvNjRC8bQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvNjRC8bQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvNjRC8bQ .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxvNjRC8bQ .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxvNjRC8bQ .container {
    padding: 0 26px;
  }
}
.cid-uxvNjRC8bQ .row {
  justify-content: center;
}
.cid-uxvNjRC8bQ .item {
  margin-bottom: 32px;
}
.cid-uxvNjRC8bQ .item a {
  display: block;
}
.cid-uxvNjRC8bQ .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxvNjRC8bQ .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxvNjRC8bQ .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxvNjRC8bQ .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxvNjRC8bQ .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxvNjRC8bQ .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxvNjRC8bQ .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxvNjRC8bQ .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxvNjRC8bQ .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxvNjRC8bQ .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxvNjRC8bQ .item-title {
  color: #ffffff;
}
.cid-uxvNjRC8bQ .mbr-date {
  color: #cacaca;
}
.cid-uxvNjRC8bQ .mbr-desc {
  color: #cacaca;
}
.cid-uxvNjRQdqy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxvNjRQdqy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvNjRQdqy .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-uxvNjRQdqy .container {
    padding: 0 16px;
  }
}
.cid-uxvNjRQdqy .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxvNjRQdqy .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxvNjRQdqy .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxvNjRQdqy .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxvNjRQdqy .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxvNjRQdqy .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxvNjRQdqy .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxvNjRQdqy .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxvNjRQdqy .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxvNjRQdqy .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxvNjRQdqy .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxvNjRQdqy .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxvNjRQdqy .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxvNjRQdqy .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxvNjRQdqy .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxvNjRQdqy .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxvNjRQdqy .dragArea.row .form-group .form-control:hover,
.cid-uxvNjRQdqy .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxvNjRQdqy .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxvNjRQdqy .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxvNjRQdqy .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxvNjRQdqy .mbr-title {
  color: #ffffff;
}
.cid-uxvNjRQdqy .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxvNjRQdqy .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxvNjRQdqy .mbr-text {
  color: #08323C;
}
.cid-uxvNjRQdqy .list {
  color: #08323C;
}
.cid-uxvNjRQdqy label {
  color: #08323C;
}
.cid-uxvNjRQdqy H3 {
  color: #000000;
}
.cid-uxvNjRQdqy P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxvRFLmFdL {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvRFLmFdL H1 {
  text-align: center;
}
.cid-uxvRFLDZV3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxvRFLUpEQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvRFLUpEQ .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxvRFLUpEQ .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxvRFLUpEQ .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxvRFLUpEQ .box {
  left: 20%;
}
.cid-uxvRFLUpEQ .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxvRFLUpEQ .mbr-section-text,
.cid-uxvRFLUpEQ .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxvRFLUpEQ .text-box {
    display: none;
  }
  .cid-uxvRFLUpEQ .mbr-section-title,
  .cid-uxvRFLUpEQ .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxvRFLUpEQ .box {
    display: none;
  }
  .cid-uxvRFLUpEQ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxvRFLUpEQ .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxvRFLUpEQ .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxvRFLUpEQ .mbr-section-text {
  color: #ffffff;
}
.cid-uxvRFLUpEQ .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxvRFLUpEQ .mbr-section-text DIV {
  text-align: left;
}
.cid-uxvRFM7Q8H {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvRFM7Q8H h2 {
  text-align: left;
}
.cid-uxvRFM7Q8H h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvRFM7Q8H p {
  color: #767676;
  text-align: left;
}
.cid-uxvRFM7Q8H .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvRFM7Q8H .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvRFM7Q8H .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvRFM7Q8H .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvRFM7Q8H .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvRFM7Q8H .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvRFM7Q8H .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvRFM7Q8H .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxvRFM7Q8H .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvRFM7Q8H H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxvRFM7Q8H P {
  color: #ffffff;
}
.cid-uxvRFM7Q8H H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxvRFMmUkW {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvRFMmUkW H1 {
  text-align: center;
}
.cid-uxvRFMzqNY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvRFMzqNY H1 {
  color: #000000;
}
.cid-uxvSgsFH53 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxvSgsFH53 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvSgsFH53 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxvSgsFH53 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxvSgsFH53 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxvSgsFH53 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxvSgsFH53 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvSgsFH53 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxvSgsFH53 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxvSgsFH53 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxvSgsFH53 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxvSgsFH53 .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxvSgsFH53 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvSgsFH53 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxvSgsFH53 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxvSgsFH53 .mbr-text,
.cid-uxvSgsFH53 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uxvRFNaka8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvRFNaka8 H1 {
  color: #000000;
}
.cid-uxvRFNoMas {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxvRFNoMas .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvRFNoMas .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxvRFNoMas .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxvRFNoMas .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxvRFNoMas .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxvRFNoMas .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvRFNoMas .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxvRFNoMas .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxvRFNoMas .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxvRFNoMas .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxvRFNoMas .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxvRFNoMas .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvRFNoMas .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxvRFNoMas .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxvRFNoMas .mbr-text,
.cid-uxvRFNoMas .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxvRFNNuZ8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvRFNNuZ8 H1 {
  color: #000000;
}
.cid-uxD1mRcN6d {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD1mRcN6d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD1mRcN6d .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD1mRcN6d .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD1mRcN6d .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD1mRcN6d .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD1mRcN6d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD1mRcN6d .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD1mRcN6d .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD1mRcN6d .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD1mRcN6d .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD1mRcN6d .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD1mRcN6d .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD1mRcN6d .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD1mRcN6d .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD1mRcN6d .mbr-text,
.cid-uxD1mRcN6d .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxD1nqRgvA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD1nqRgvA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD1nqRgvA .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD1nqRgvA .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD1nqRgvA .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD1nqRgvA .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD1nqRgvA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD1nqRgvA .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD1nqRgvA .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD1nqRgvA .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD1nqRgvA .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD1nqRgvA .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD1nqRgvA .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD1nqRgvA .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD1nqRgvA .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD1nqRgvA .mbr-text,
.cid-uxD1nqRgvA .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxvRFP0u7M {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvRFP0u7M H1 {
  color: #000000;
}
.cid-uxvRFPdO4A {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxvRFPdO4A h2 {
  text-align: left;
}
.cid-uxvRFPdO4A h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvRFPdO4A p {
  color: #767676;
  text-align: left;
}
.cid-uxvRFPdO4A .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvRFPdO4A .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvRFPdO4A .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvRFPdO4A .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvRFPdO4A .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvRFPdO4A .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvRFPdO4A .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxvRFPdO4A .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxvRFPdO4A .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxvRFPdO4A .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxvRFPdO4A .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvRFPwVGg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvRFPwVGg H1 {
  color: #000000;
}
.cid-uxvRFPP07J {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxvRFQ3JXp {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxvRFQ3JXp h2 {
  text-align: left;
}
.cid-uxvRFQ3JXp h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvRFQ3JXp p {
  color: #767676;
  text-align: left;
}
.cid-uxvRFQ3JXp .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvRFQ3JXp .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvRFQ3JXp .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvRFQ3JXp .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvRFQ3JXp .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvRFQ3JXp .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvRFQ3JXp .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvRFQ3JXp .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxvRFQ3JXp .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvRFQ3JXp .mbr-text {
  color: #232323;
}
.cid-uxvRFQmZSi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvRFQmZSi H1 {
  color: #000000;
}
.cid-uxvRFQEX7O {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxvRFQEX7O .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvRFQEX7O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvRFQEX7O .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxvRFQEX7O .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxvRFQEX7O .container {
    padding: 0 26px;
  }
}
.cid-uxvRFQEX7O .row {
  justify-content: center;
}
.cid-uxvRFQEX7O .item {
  margin-bottom: 32px;
}
.cid-uxvRFQEX7O .item a {
  display: block;
}
.cid-uxvRFQEX7O .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxvRFQEX7O .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxvRFQEX7O .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxvRFQEX7O .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxvRFQEX7O .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxvRFQEX7O .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxvRFQEX7O .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxvRFQEX7O .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxvRFQEX7O .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxvRFQEX7O .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxvRFQEX7O .item-title {
  color: #ffffff;
}
.cid-uxvRFQEX7O .mbr-date {
  color: #cacaca;
}
.cid-uxvRFQEX7O .mbr-desc {
  color: #cacaca;
}
.cid-uxvRFR0B21 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxvRFR0B21 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvRFR0B21 .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-uxvRFR0B21 .container {
    padding: 0 16px;
  }
}
.cid-uxvRFR0B21 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxvRFR0B21 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxvRFR0B21 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxvRFR0B21 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxvRFR0B21 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxvRFR0B21 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxvRFR0B21 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxvRFR0B21 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxvRFR0B21 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxvRFR0B21 .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxvRFR0B21 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxvRFR0B21 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxvRFR0B21 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxvRFR0B21 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxvRFR0B21 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxvRFR0B21 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxvRFR0B21 .dragArea.row .form-group .form-control:hover,
.cid-uxvRFR0B21 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxvRFR0B21 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxvRFR0B21 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxvRFR0B21 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxvRFR0B21 .mbr-title {
  color: #ffffff;
}
.cid-uxvRFR0B21 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxvRFR0B21 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxvRFR0B21 .mbr-text {
  color: #08323C;
}
.cid-uxvRFR0B21 .list {
  color: #08323C;
}
.cid-uxvRFR0B21 label {
  color: #08323C;
}
.cid-uxvRFR0B21 H3 {
  color: #000000;
}
.cid-uxvRFR0B21 P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxvTvX39uH {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvTvX39uH H1 {
  text-align: center;
}
.cid-uxvTvXhfSF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxvTvXq0ex {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvTvXq0ex .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxvTvXq0ex .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxvTvXq0ex .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxvTvXq0ex .box {
  left: 20%;
}
.cid-uxvTvXq0ex .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxvTvXq0ex .mbr-section-text,
.cid-uxvTvXq0ex .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxvTvXq0ex .text-box {
    display: none;
  }
  .cid-uxvTvXq0ex .mbr-section-title,
  .cid-uxvTvXq0ex .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxvTvXq0ex .box {
    display: none;
  }
  .cid-uxvTvXq0ex .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxvTvXq0ex .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxvTvXq0ex .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxvTvXq0ex .mbr-section-text {
  color: #ffffff;
}
.cid-uxvTvXq0ex .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxvTvXq0ex .mbr-section-text DIV {
  text-align: left;
}
.cid-uxvTvXCssY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvTvXCssY h2 {
  text-align: left;
}
.cid-uxvTvXCssY h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvTvXCssY p {
  color: #767676;
  text-align: left;
}
.cid-uxvTvXCssY .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvTvXCssY .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvTvXCssY .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvTvXCssY .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvTvXCssY .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvTvXCssY .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvTvXCssY .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvTvXCssY .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxvTvXCssY .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvTvXCssY H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxvTvXCssY P {
  color: #ffffff;
}
.cid-uxvTvXCssY H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxvTvXQgve {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvTvXQgve H1 {
  text-align: center;
}
.cid-uxvTvY1dSL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvTvY1dSL H1 {
  color: #000000;
}
.cid-uxvUR3vhEB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxvUR3vhEB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvUR3vhEB .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxvUR3vhEB .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxvUR3vhEB .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxvUR3vhEB .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxvUR3vhEB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvUR3vhEB .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxvUR3vhEB .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxvUR3vhEB .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxvUR3vhEB .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxvUR3vhEB .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxvUR3vhEB .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvUR3vhEB .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxvUR3vhEB .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxvUR3vhEB .mbr-text,
.cid-uxvUR3vhEB .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uxvTvYwgIC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvTvYwgIC H1 {
  color: #000000;
}
.cid-uxvTvYHn2N {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxvTvYHn2N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvTvYHn2N .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxvTvYHn2N .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxvTvYHn2N .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxvTvYHn2N .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxvTvYHn2N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvTvYHn2N .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxvTvYHn2N .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxvTvYHn2N .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxvTvYHn2N .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxvTvYHn2N .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxvTvYHn2N .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvTvYHn2N .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxvTvYHn2N .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxvTvYHn2N .mbr-text,
.cid-uxvTvYHn2N .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxvTvZ2Wib {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvTvZ2Wib H1 {
  color: #000000;
}
.cid-uxD1r5Y11C {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD1r5Y11C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD1r5Y11C .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD1r5Y11C .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD1r5Y11C .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD1r5Y11C .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD1r5Y11C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD1r5Y11C .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD1r5Y11C .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD1r5Y11C .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD1r5Y11C .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD1r5Y11C .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD1r5Y11C .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD1r5Y11C .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD1r5Y11C .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD1r5Y11C .mbr-text,
.cid-uxD1r5Y11C .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxD1ruhmJW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD1ruhmJW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD1ruhmJW .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD1ruhmJW .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD1ruhmJW .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD1ruhmJW .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD1ruhmJW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD1ruhmJW .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD1ruhmJW .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD1ruhmJW .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD1ruhmJW .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD1ruhmJW .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD1ruhmJW .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD1ruhmJW .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD1ruhmJW .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD1ruhmJW .mbr-text,
.cid-uxD1ruhmJW .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxvTvZYPav {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvTvZYPav H1 {
  color: #000000;
}
.cid-uxvTw0bEar {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxvTw0bEar h2 {
  text-align: left;
}
.cid-uxvTw0bEar h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvTw0bEar p {
  color: #767676;
  text-align: left;
}
.cid-uxvTw0bEar .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvTw0bEar .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvTw0bEar .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvTw0bEar .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvTw0bEar .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvTw0bEar .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvTw0bEar .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxvTw0bEar .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxvTw0bEar .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxvTw0bEar .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxvTw0bEar .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvTw0q3kT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvTw0q3kT H1 {
  color: #000000;
}
.cid-uxvTw0ENN0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxvTw0TPPT {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxvTw0TPPT h2 {
  text-align: left;
}
.cid-uxvTw0TPPT h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvTw0TPPT p {
  color: #767676;
  text-align: left;
}
.cid-uxvTw0TPPT .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvTw0TPPT .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvTw0TPPT .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvTw0TPPT .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvTw0TPPT .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvTw0TPPT .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvTw0TPPT .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvTw0TPPT .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxvTw0TPPT .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvTw0TPPT .mbr-text {
  color: #232323;
}
.cid-uxvTw18IUB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvTw18IUB H1 {
  color: #000000;
}
.cid-uxvTw1lHJd {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxvTw1lHJd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvTw1lHJd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvTw1lHJd .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxvTw1lHJd .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxvTw1lHJd .container {
    padding: 0 26px;
  }
}
.cid-uxvTw1lHJd .row {
  justify-content: center;
}
.cid-uxvTw1lHJd .item {
  margin-bottom: 32px;
}
.cid-uxvTw1lHJd .item a {
  display: block;
}
.cid-uxvTw1lHJd .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxvTw1lHJd .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxvTw1lHJd .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxvTw1lHJd .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxvTw1lHJd .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxvTw1lHJd .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxvTw1lHJd .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxvTw1lHJd .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxvTw1lHJd .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxvTw1lHJd .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxvTw1lHJd .item-title {
  color: #ffffff;
}
.cid-uxvTw1lHJd .mbr-date {
  color: #cacaca;
}
.cid-uxvTw1lHJd .mbr-desc {
  color: #cacaca;
}
.cid-uxvTw1CNiZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxvTw1CNiZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvTw1CNiZ .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-uxvTw1CNiZ .container {
    padding: 0 16px;
  }
}
.cid-uxvTw1CNiZ .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxvTw1CNiZ .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxvTw1CNiZ .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxvTw1CNiZ .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxvTw1CNiZ .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxvTw1CNiZ .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxvTw1CNiZ .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxvTw1CNiZ .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxvTw1CNiZ .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxvTw1CNiZ .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxvTw1CNiZ .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxvTw1CNiZ .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxvTw1CNiZ .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxvTw1CNiZ .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxvTw1CNiZ .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxvTw1CNiZ .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxvTw1CNiZ .dragArea.row .form-group .form-control:hover,
.cid-uxvTw1CNiZ .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxvTw1CNiZ .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxvTw1CNiZ .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxvTw1CNiZ .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxvTw1CNiZ .mbr-title {
  color: #ffffff;
}
.cid-uxvTw1CNiZ .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxvTw1CNiZ .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxvTw1CNiZ .mbr-text {
  color: #08323C;
}
.cid-uxvTw1CNiZ .list {
  color: #08323C;
}
.cid-uxvTw1CNiZ label {
  color: #08323C;
}
.cid-uxvTw1CNiZ H3 {
  color: #000000;
}
.cid-uxvTw1CNiZ P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxvXh9baFM {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvXh9baFM H1 {
  text-align: center;
}
.cid-uxvXh9snqW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxvXh9DC3u {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvXh9DC3u .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxvXh9DC3u .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxvXh9DC3u .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxvXh9DC3u .box {
  left: 20%;
}
.cid-uxvXh9DC3u .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxvXh9DC3u .mbr-section-text,
.cid-uxvXh9DC3u .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxvXh9DC3u .text-box {
    display: none;
  }
  .cid-uxvXh9DC3u .mbr-section-title,
  .cid-uxvXh9DC3u .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxvXh9DC3u .box {
    display: none;
  }
  .cid-uxvXh9DC3u .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxvXh9DC3u .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxvXh9DC3u .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxvXh9DC3u .mbr-section-text {
  color: #ffffff;
}
.cid-uxvXh9DC3u .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxvXh9DC3u .mbr-section-text DIV {
  text-align: left;
}
.cid-uxvXh9OSIK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvXh9OSIK h2 {
  text-align: left;
}
.cid-uxvXh9OSIK h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvXh9OSIK p {
  color: #767676;
  text-align: left;
}
.cid-uxvXh9OSIK .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvXh9OSIK .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvXh9OSIK .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvXh9OSIK .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvXh9OSIK .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvXh9OSIK .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvXh9OSIK .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvXh9OSIK .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxvXh9OSIK .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvXh9OSIK H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxvXh9OSIK P {
  color: #ffffff;
}
.cid-uxvXh9OSIK H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxvXha5ahq {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxvXha5ahq H1 {
  text-align: center;
}
.cid-uxvXhagwVP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvXhagwVP H1 {
  color: #000000;
}
.cid-uxvXN5J200 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxvXN5J200 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvXN5J200 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxvXN5J200 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxvXN5J200 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxvXN5J200 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxvXN5J200 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvXN5J200 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxvXN5J200 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxvXN5J200 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxvXN5J200 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxvXN5J200 .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxvXN5J200 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvXN5J200 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxvXN5J200 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxvXN5J200 .mbr-text,
.cid-uxvXN5J200 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxvXNBhd09 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxvXNBhd09 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvXNBhd09 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxvXNBhd09 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxvXNBhd09 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxvXNBhd09 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxvXNBhd09 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvXNBhd09 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxvXNBhd09 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxvXNBhd09 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxvXNBhd09 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxvXNBhd09 .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxvXNBhd09 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvXNBhd09 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxvXNBhd09 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxvXNBhd09 .mbr-text,
.cid-uxvXNBhd09 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxvXhbmVCj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxvXhbmVCj H1 {
  color: #000000;
}
.cid-uxD1vwDqKy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD1vwDqKy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD1vwDqKy .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD1vwDqKy .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD1vwDqKy .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD1vwDqKy .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD1vwDqKy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD1vwDqKy .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD1vwDqKy .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD1vwDqKy .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD1vwDqKy .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD1vwDqKy .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD1vwDqKy .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD1vwDqKy .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD1vwDqKy .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD1vwDqKy .mbr-text,
.cid-uxD1vwDqKy .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxD1w6WZbG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD1w6WZbG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD1w6WZbG .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD1w6WZbG .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD1w6WZbG .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD1w6WZbG .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD1w6WZbG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD1w6WZbG .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD1w6WZbG .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD1w6WZbG .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD1w6WZbG .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD1w6WZbG .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD1w6WZbG .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD1w6WZbG .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD1w6WZbG .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD1w6WZbG .mbr-text,
.cid-uxD1w6WZbG .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxvXhcsqKr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvXhcsqKr H1 {
  color: #000000;
}
.cid-uxvXhcI4Ns {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxvXhcI4Ns h2 {
  text-align: left;
}
.cid-uxvXhcI4Ns h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvXhcI4Ns p {
  color: #767676;
  text-align: left;
}
.cid-uxvXhcI4Ns .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvXhcI4Ns .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvXhcI4Ns .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvXhcI4Ns .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvXhcI4Ns .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvXhcI4Ns .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvXhcI4Ns .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxvXhcI4Ns .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxvXhcI4Ns .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxvXhcI4Ns .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxvXhcI4Ns .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvXhcXUaC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvXhcXUaC H1 {
  color: #000000;
}
.cid-uxvXhdax0P {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxvXhds5y1 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxvXhds5y1 h2 {
  text-align: left;
}
.cid-uxvXhds5y1 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxvXhds5y1 p {
  color: #767676;
  text-align: left;
}
.cid-uxvXhds5y1 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxvXhds5y1 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxvXhds5y1 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxvXhds5y1 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxvXhds5y1 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxvXhds5y1 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxvXhds5y1 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvXhds5y1 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxvXhds5y1 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxvXhds5y1 .mbr-text {
  color: #232323;
}
.cid-uxvXhdItHj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxvXhdItHj H1 {
  color: #000000;
}
.cid-uxvXhdW7SG {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxvXhdW7SG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvXhdW7SG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvXhdW7SG .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxvXhdW7SG .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxvXhdW7SG .container {
    padding: 0 26px;
  }
}
.cid-uxvXhdW7SG .row {
  justify-content: center;
}
.cid-uxvXhdW7SG .item {
  margin-bottom: 32px;
}
.cid-uxvXhdW7SG .item a {
  display: block;
}
.cid-uxvXhdW7SG .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxvXhdW7SG .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxvXhdW7SG .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxvXhdW7SG .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxvXhdW7SG .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxvXhdW7SG .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxvXhdW7SG .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxvXhdW7SG .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxvXhdW7SG .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxvXhdW7SG .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxvXhdW7SG .item-title {
  color: #ffffff;
}
.cid-uxvXhdW7SG .mbr-date {
  color: #cacaca;
}
.cid-uxvXhdW7SG .mbr-desc {
  color: #cacaca;
}
.cid-uxvXhebpiT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxvXhebpiT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvXhebpiT .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-uxvXhebpiT .container {
    padding: 0 16px;
  }
}
.cid-uxvXhebpiT .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxvXhebpiT .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxvXhebpiT .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxvXhebpiT .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxvXhebpiT .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxvXhebpiT .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxvXhebpiT .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxvXhebpiT .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxvXhebpiT .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxvXhebpiT .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxvXhebpiT .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxvXhebpiT .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxvXhebpiT .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxvXhebpiT .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxvXhebpiT .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxvXhebpiT .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxvXhebpiT .dragArea.row .form-group .form-control:hover,
.cid-uxvXhebpiT .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxvXhebpiT .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxvXhebpiT .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxvXhebpiT .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxvXhebpiT .mbr-title {
  color: #ffffff;
}
.cid-uxvXhebpiT .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxvXhebpiT .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxvXhebpiT .mbr-text {
  color: #08323C;
}
.cid-uxvXhebpiT .list {
  color: #08323C;
}
.cid-uxvXhebpiT label {
  color: #08323C;
}
.cid-uxvXhebpiT H3 {
  color: #000000;
}
.cid-uxvXhebpiT P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxw3Mh77xp {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxw3Mh77xp H1 {
  text-align: center;
}
.cid-uxw3MhtLB1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxw3MhGf3U {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxw3MhGf3U .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxw3MhGf3U .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxw3MhGf3U .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxw3MhGf3U .box {
  left: 20%;
}
.cid-uxw3MhGf3U .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxw3MhGf3U .mbr-section-text,
.cid-uxw3MhGf3U .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxw3MhGf3U .text-box {
    display: none;
  }
  .cid-uxw3MhGf3U .mbr-section-title,
  .cid-uxw3MhGf3U .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxw3MhGf3U .box {
    display: none;
  }
  .cid-uxw3MhGf3U .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxw3MhGf3U .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxw3MhGf3U .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxw3MhGf3U .mbr-section-text {
  color: #ffffff;
}
.cid-uxw3MhGf3U .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxw3MhGf3U .mbr-section-text DIV {
  text-align: left;
}
.cid-uxw3MhTOX7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxw3MhTOX7 h2 {
  text-align: left;
}
.cid-uxw3MhTOX7 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxw3MhTOX7 p {
  color: #767676;
  text-align: left;
}
.cid-uxw3MhTOX7 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxw3MhTOX7 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxw3MhTOX7 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxw3MhTOX7 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxw3MhTOX7 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxw3MhTOX7 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxw3MhTOX7 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxw3MhTOX7 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxw3MhTOX7 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxw3MhTOX7 H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxw3MhTOX7 P {
  color: #ffffff;
}
.cid-uxw3MhTOX7 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxw3Mi8tvD {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxw3Mi8tvD H1 {
  text-align: center;
}
.cid-uxw3Mik6Ot {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxw3Mik6Ot H1 {
  color: #000000;
}
.cid-uxwJDjp8hN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxwJDjp8hN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxwJDjp8hN .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxwJDjp8hN .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxwJDjp8hN .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxwJDjp8hN .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxwJDjp8hN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxwJDjp8hN .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxwJDjp8hN .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxwJDjp8hN .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxwJDjp8hN .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxwJDjp8hN .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxwJDjp8hN .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxwJDjp8hN .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxwJDjp8hN .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxwJDjp8hN .mbr-text,
.cid-uxwJDjp8hN .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxw3Mjf89Q {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxw3Mjf89Q H1 {
  color: #000000;
}
.cid-uxD1zMX3Gn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD1zMX3Gn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD1zMX3Gn .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD1zMX3Gn .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD1zMX3Gn .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD1zMX3Gn .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD1zMX3Gn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD1zMX3Gn .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD1zMX3Gn .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD1zMX3Gn .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD1zMX3Gn .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD1zMX3Gn .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD1zMX3Gn .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD1zMX3Gn .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD1zMX3Gn .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD1zMX3Gn .mbr-text,
.cid-uxD1zMX3Gn .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxD1AaoGJ8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD1AaoGJ8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD1AaoGJ8 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD1AaoGJ8 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD1AaoGJ8 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD1AaoGJ8 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD1AaoGJ8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD1AaoGJ8 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD1AaoGJ8 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD1AaoGJ8 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD1AaoGJ8 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD1AaoGJ8 .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD1AaoGJ8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD1AaoGJ8 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD1AaoGJ8 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD1AaoGJ8 .mbr-text,
.cid-uxD1AaoGJ8 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxw3MkeXT2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxw3MkeXT2 H1 {
  color: #000000;
}
.cid-uxw3Mkwjg4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxw3Mkwjg4 h2 {
  text-align: left;
}
.cid-uxw3Mkwjg4 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxw3Mkwjg4 p {
  color: #767676;
  text-align: left;
}
.cid-uxw3Mkwjg4 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxw3Mkwjg4 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxw3Mkwjg4 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxw3Mkwjg4 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxw3Mkwjg4 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxw3Mkwjg4 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxw3Mkwjg4 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxw3Mkwjg4 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxw3Mkwjg4 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxw3Mkwjg4 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxw3Mkwjg4 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxw3MkQwgK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxw3MkQwgK H1 {
  color: #000000;
}
.cid-uxw3Ml9G2b {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxw3MlpgTb {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxw3MlpgTb h2 {
  text-align: left;
}
.cid-uxw3MlpgTb h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxw3MlpgTb p {
  color: #767676;
  text-align: left;
}
.cid-uxw3MlpgTb .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxw3MlpgTb .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxw3MlpgTb .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxw3MlpgTb .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxw3MlpgTb .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxw3MlpgTb .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxw3MlpgTb .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxw3MlpgTb .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxw3MlpgTb .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxw3MlpgTb .mbr-text {
  color: #232323;
}
.cid-uxw3MlHMg0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxw3MlHMg0 H1 {
  color: #000000;
}
.cid-uxw3MlY0IX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxw3MlY0IX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxw3MlY0IX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxw3MlY0IX .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxw3MlY0IX .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxw3MlY0IX .container {
    padding: 0 26px;
  }
}
.cid-uxw3MlY0IX .row {
  justify-content: center;
}
.cid-uxw3MlY0IX .item {
  margin-bottom: 32px;
}
.cid-uxw3MlY0IX .item a {
  display: block;
}
.cid-uxw3MlY0IX .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxw3MlY0IX .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxw3MlY0IX .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxw3MlY0IX .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxw3MlY0IX .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxw3MlY0IX .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxw3MlY0IX .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxw3MlY0IX .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxw3MlY0IX .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxw3MlY0IX .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxw3MlY0IX .item-title {
  color: #ffffff;
}
.cid-uxw3MlY0IX .mbr-date {
  color: #cacaca;
}
.cid-uxw3MlY0IX .mbr-desc {
  color: #cacaca;
}
.cid-uxw3MmhOKz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxw3MmhOKz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxw3MmhOKz .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-uxw3MmhOKz .container {
    padding: 0 16px;
  }
}
.cid-uxw3MmhOKz .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxw3MmhOKz .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxw3MmhOKz .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxw3MmhOKz .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxw3MmhOKz .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxw3MmhOKz .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxw3MmhOKz .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxw3MmhOKz .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxw3MmhOKz .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxw3MmhOKz .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxw3MmhOKz .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxw3MmhOKz .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxw3MmhOKz .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxw3MmhOKz .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxw3MmhOKz .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxw3MmhOKz .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxw3MmhOKz .dragArea.row .form-group .form-control:hover,
.cid-uxw3MmhOKz .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxw3MmhOKz .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxw3MmhOKz .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxw3MmhOKz .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxw3MmhOKz .mbr-title {
  color: #ffffff;
}
.cid-uxw3MmhOKz .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxw3MmhOKz .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxw3MmhOKz .mbr-text {
  color: #08323C;
}
.cid-uxw3MmhOKz .list {
  color: #08323C;
}
.cid-uxw3MmhOKz label {
  color: #08323C;
}
.cid-uxw3MmhOKz H3 {
  color: #000000;
}
.cid-uxw3MmhOKz P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxwLtIKrOi {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxwLtIKrOi H1 {
  text-align: center;
}
.cid-uxwLtJ24ZV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxwLtJgy2n {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxwLtJgy2n .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxwLtJgy2n .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxwLtJgy2n .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxwLtJgy2n .box {
  left: 20%;
}
.cid-uxwLtJgy2n .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxwLtJgy2n .mbr-section-text,
.cid-uxwLtJgy2n .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxwLtJgy2n .text-box {
    display: none;
  }
  .cid-uxwLtJgy2n .mbr-section-title,
  .cid-uxwLtJgy2n .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxwLtJgy2n .box {
    display: none;
  }
  .cid-uxwLtJgy2n .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxwLtJgy2n .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxwLtJgy2n .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxwLtJgy2n .mbr-section-text {
  color: #ffffff;
}
.cid-uxwLtJgy2n .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxwLtJgy2n .mbr-section-text DIV {
  text-align: left;
}
.cid-uxwLtJrhdO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxwLtJrhdO h2 {
  text-align: left;
}
.cid-uxwLtJrhdO h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxwLtJrhdO p {
  color: #767676;
  text-align: left;
}
.cid-uxwLtJrhdO .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxwLtJrhdO .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxwLtJrhdO .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxwLtJrhdO .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxwLtJrhdO .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxwLtJrhdO .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxwLtJrhdO .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxwLtJrhdO .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxwLtJrhdO .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxwLtJrhdO H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxwLtJrhdO P {
  color: #ffffff;
}
.cid-uxwLtJrhdO H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxwLtJJ5I8 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxwLtJJ5I8 H1 {
  text-align: center;
}
.cid-uxwLtJXsgG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxwLtJXsgG H1 {
  color: #000000;
}
.cid-uxwMyLKsVR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxwMyLKsVR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxwMyLKsVR .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxwMyLKsVR .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxwMyLKsVR .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxwMyLKsVR .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxwMyLKsVR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxwMyLKsVR .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxwMyLKsVR .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxwMyLKsVR .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxwMyLKsVR .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxwMyLKsVR .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxwMyLKsVR .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxwMyLKsVR .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxwMyLKsVR .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxwMyLKsVR .mbr-text,
.cid-uxwMyLKsVR .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxwLtKuJzR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxwLtKuJzR H1 {
  color: #000000;
}
.cid-uxD1FeUxtS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD1FeUxtS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD1FeUxtS .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD1FeUxtS .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD1FeUxtS .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD1FeUxtS .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD1FeUxtS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD1FeUxtS .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD1FeUxtS .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD1FeUxtS .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD1FeUxtS .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD1FeUxtS .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD1FeUxtS .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD1FeUxtS .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD1FeUxtS .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD1FeUxtS .mbr-text,
.cid-uxD1FeUxtS .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxD1FMjA16 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD1FMjA16 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD1FMjA16 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD1FMjA16 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD1FMjA16 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD1FMjA16 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD1FMjA16 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD1FMjA16 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD1FMjA16 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD1FMjA16 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD1FMjA16 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD1FMjA16 .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD1FMjA16 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD1FMjA16 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD1FMjA16 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD1FMjA16 .mbr-text,
.cid-uxD1FMjA16 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxwLtLziMk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxwLtLziMk H1 {
  color: #000000;
}
.cid-uxwLtLLd2R {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxwLtLLd2R h2 {
  text-align: left;
}
.cid-uxwLtLLd2R h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxwLtLLd2R p {
  color: #767676;
  text-align: left;
}
.cid-uxwLtLLd2R .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxwLtLLd2R .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxwLtLLd2R .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxwLtLLd2R .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxwLtLLd2R .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxwLtLLd2R .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxwLtLLd2R .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxwLtLLd2R .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxwLtLLd2R .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxwLtLLd2R .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxwLtLLd2R .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxwLtM1Gp0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxwLtM1Gp0 H1 {
  color: #000000;
}
.cid-uxwLtMewSY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxwLtMrukB {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxwLtMrukB h2 {
  text-align: left;
}
.cid-uxwLtMrukB h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxwLtMrukB p {
  color: #767676;
  text-align: left;
}
.cid-uxwLtMrukB .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxwLtMrukB .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxwLtMrukB .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxwLtMrukB .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxwLtMrukB .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxwLtMrukB .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxwLtMrukB .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxwLtMrukB .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxwLtMrukB .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxwLtMrukB .mbr-text {
  color: #232323;
}
.cid-uxwLtMG7vh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxwLtMG7vh H1 {
  color: #000000;
}
.cid-uxwLtMSSyk {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxwLtMSSyk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxwLtMSSyk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxwLtMSSyk .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxwLtMSSyk .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxwLtMSSyk .container {
    padding: 0 26px;
  }
}
.cid-uxwLtMSSyk .row {
  justify-content: center;
}
.cid-uxwLtMSSyk .item {
  margin-bottom: 32px;
}
.cid-uxwLtMSSyk .item a {
  display: block;
}
.cid-uxwLtMSSyk .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxwLtMSSyk .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxwLtMSSyk .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxwLtMSSyk .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxwLtMSSyk .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxwLtMSSyk .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxwLtMSSyk .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxwLtMSSyk .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxwLtMSSyk .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxwLtMSSyk .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxwLtMSSyk .item-title {
  color: #ffffff;
}
.cid-uxwLtMSSyk .mbr-date {
  color: #cacaca;
}
.cid-uxwLtMSSyk .mbr-desc {
  color: #cacaca;
}
.cid-uxwLtN7eMI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxwLtN7eMI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxwLtN7eMI .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-uxwLtN7eMI .container {
    padding: 0 16px;
  }
}
.cid-uxwLtN7eMI .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxwLtN7eMI .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxwLtN7eMI .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxwLtN7eMI .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxwLtN7eMI .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxwLtN7eMI .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxwLtN7eMI .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxwLtN7eMI .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxwLtN7eMI .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxwLtN7eMI .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxwLtN7eMI .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxwLtN7eMI .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxwLtN7eMI .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxwLtN7eMI .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxwLtN7eMI .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxwLtN7eMI .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxwLtN7eMI .dragArea.row .form-group .form-control:hover,
.cid-uxwLtN7eMI .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxwLtN7eMI .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxwLtN7eMI .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxwLtN7eMI .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxwLtN7eMI .mbr-title {
  color: #ffffff;
}
.cid-uxwLtN7eMI .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxwLtN7eMI .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxwLtN7eMI .mbr-text {
  color: #08323C;
}
.cid-uxwLtN7eMI .list {
  color: #08323C;
}
.cid-uxwLtN7eMI label {
  color: #08323C;
}
.cid-uxwLtN7eMI H3 {
  color: #000000;
}
.cid-uxwLtN7eMI P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxwP1pKbNl {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxwP1pKbNl H1 {
  text-align: center;
}
.cid-uxwP1q1mph {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxwP1qe66H {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxwP1qe66H .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxwP1qe66H .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxwP1qe66H .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxwP1qe66H .box {
  left: 20%;
}
.cid-uxwP1qe66H .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxwP1qe66H .mbr-section-text,
.cid-uxwP1qe66H .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxwP1qe66H .text-box {
    display: none;
  }
  .cid-uxwP1qe66H .mbr-section-title,
  .cid-uxwP1qe66H .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxwP1qe66H .box {
    display: none;
  }
  .cid-uxwP1qe66H .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxwP1qe66H .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxwP1qe66H .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxwP1qe66H .mbr-section-text {
  color: #ffffff;
}
.cid-uxwP1qe66H .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxwP1qe66H .mbr-section-text DIV {
  text-align: left;
}
.cid-uxwP1qr21i {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxwP1qr21i h2 {
  text-align: left;
}
.cid-uxwP1qr21i h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxwP1qr21i p {
  color: #767676;
  text-align: left;
}
.cid-uxwP1qr21i .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxwP1qr21i .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxwP1qr21i .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxwP1qr21i .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxwP1qr21i .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxwP1qr21i .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxwP1qr21i .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxwP1qr21i .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxwP1qr21i .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxwP1qr21i H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxwP1qr21i P {
  color: #ffffff;
}
.cid-uxwP1qr21i H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxwP1qHUqf {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxwP1qHUqf H1 {
  text-align: center;
}
.cid-uxwP1qS9ep {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxwP1qS9ep H1 {
  color: #000000;
}
.cid-uxwP1rrY7Y {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxwP1rrY7Y H1 {
  color: #000000;
}
.cid-uxD1Jj6HcI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD1Jj6HcI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD1Jj6HcI .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD1Jj6HcI .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD1Jj6HcI .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD1Jj6HcI .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD1Jj6HcI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD1Jj6HcI .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD1Jj6HcI .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD1Jj6HcI .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD1Jj6HcI .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD1Jj6HcI .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD1Jj6HcI .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD1Jj6HcI .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD1Jj6HcI .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD1Jj6HcI .mbr-text,
.cid-uxD1Jj6HcI .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxD1JOx8f7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD1JOx8f7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD1JOx8f7 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD1JOx8f7 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD1JOx8f7 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD1JOx8f7 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD1JOx8f7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD1JOx8f7 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD1JOx8f7 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD1JOx8f7 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD1JOx8f7 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD1JOx8f7 .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD1JOx8f7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD1JOx8f7 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD1JOx8f7 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD1JOx8f7 .mbr-text,
.cid-uxD1JOx8f7 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxwP1svKZG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxwP1svKZG H1 {
  color: #000000;
}
.cid-uxwP1sJpEs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxwP1sJpEs h2 {
  text-align: left;
}
.cid-uxwP1sJpEs h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxwP1sJpEs p {
  color: #767676;
  text-align: left;
}
.cid-uxwP1sJpEs .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxwP1sJpEs .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxwP1sJpEs .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxwP1sJpEs .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxwP1sJpEs .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxwP1sJpEs .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxwP1sJpEs .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxwP1sJpEs .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxwP1sJpEs .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxwP1sJpEs .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxwP1sJpEs .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxwP1sYyTR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxwP1sYyTR H1 {
  color: #000000;
}
.cid-uxwP1tdfgA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxwP1tpQPg {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxwP1tpQPg h2 {
  text-align: left;
}
.cid-uxwP1tpQPg h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxwP1tpQPg p {
  color: #767676;
  text-align: left;
}
.cid-uxwP1tpQPg .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxwP1tpQPg .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxwP1tpQPg .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxwP1tpQPg .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxwP1tpQPg .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxwP1tpQPg .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxwP1tpQPg .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxwP1tpQPg .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxwP1tpQPg .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxwP1tpQPg .mbr-text {
  color: #232323;
}
.cid-uxwP1tEeal {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxwP1tEeal H1 {
  color: #000000;
}
.cid-uxwP1tRyev {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxwP1tRyev .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxwP1tRyev .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxwP1tRyev .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxwP1tRyev .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxwP1tRyev .container {
    padding: 0 26px;
  }
}
.cid-uxwP1tRyev .row {
  justify-content: center;
}
.cid-uxwP1tRyev .item {
  margin-bottom: 32px;
}
.cid-uxwP1tRyev .item a {
  display: block;
}
.cid-uxwP1tRyev .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxwP1tRyev .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxwP1tRyev .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxwP1tRyev .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxwP1tRyev .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxwP1tRyev .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxwP1tRyev .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxwP1tRyev .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxwP1tRyev .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxwP1tRyev .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxwP1tRyev .item-title {
  color: #ffffff;
}
.cid-uxwP1tRyev .mbr-date {
  color: #cacaca;
}
.cid-uxwP1tRyev .mbr-desc {
  color: #cacaca;
}
.cid-uxwP1u8QsL {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxwP1u8QsL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxwP1u8QsL .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-uxwP1u8QsL .container {
    padding: 0 16px;
  }
}
.cid-uxwP1u8QsL .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxwP1u8QsL .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxwP1u8QsL .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxwP1u8QsL .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxwP1u8QsL .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxwP1u8QsL .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxwP1u8QsL .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxwP1u8QsL .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxwP1u8QsL .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxwP1u8QsL .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxwP1u8QsL .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxwP1u8QsL .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxwP1u8QsL .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxwP1u8QsL .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxwP1u8QsL .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxwP1u8QsL .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxwP1u8QsL .dragArea.row .form-group .form-control:hover,
.cid-uxwP1u8QsL .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxwP1u8QsL .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxwP1u8QsL .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxwP1u8QsL .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxwP1u8QsL .mbr-title {
  color: #ffffff;
}
.cid-uxwP1u8QsL .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxwP1u8QsL .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxwP1u8QsL .mbr-text {
  color: #08323C;
}
.cid-uxwP1u8QsL .list {
  color: #08323C;
}
.cid-uxwP1u8QsL label {
  color: #08323C;
}
.cid-uxwP1u8QsL H3 {
  color: #000000;
}
.cid-uxwP1u8QsL P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxwQuc1UCu {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxwQuc1UCu H1 {
  text-align: center;
}
.cid-uxwQucjBjU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxwQucxhR7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxwQucxhR7 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxwQucxhR7 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxwQucxhR7 .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxwQucxhR7 .box {
  left: 20%;
}
.cid-uxwQucxhR7 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxwQucxhR7 .mbr-section-text,
.cid-uxwQucxhR7 .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxwQucxhR7 .text-box {
    display: none;
  }
  .cid-uxwQucxhR7 .mbr-section-title,
  .cid-uxwQucxhR7 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxwQucxhR7 .box {
    display: none;
  }
  .cid-uxwQucxhR7 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxwQucxhR7 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxwQucxhR7 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxwQucxhR7 .mbr-section-text {
  color: #ffffff;
}
.cid-uxwQucxhR7 .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxwQucxhR7 .mbr-section-text DIV {
  text-align: left;
}
.cid-uxwQucIlDG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxwQucIlDG h2 {
  text-align: left;
}
.cid-uxwQucIlDG h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxwQucIlDG p {
  color: #767676;
  text-align: left;
}
.cid-uxwQucIlDG .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxwQucIlDG .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxwQucIlDG .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxwQucIlDG .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxwQucIlDG .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxwQucIlDG .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxwQucIlDG .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxwQucIlDG .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxwQucIlDG .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxwQucIlDG H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxwQucIlDG P {
  color: #ffffff;
}
.cid-uxwQucIlDG H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxwQucZfFX {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxwQucZfFX H1 {
  text-align: center;
}
.cid-uxwQuddAfv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxwQuddAfv H1 {
  color: #000000;
}
.cid-uxwUsa24Ly {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxwUsa24Ly .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxwUsa24Ly .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxwUsa24Ly .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxwUsa24Ly .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxwUsa24Ly .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxwUsa24Ly .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxwUsa24Ly .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxwUsa24Ly .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxwUsa24Ly .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxwUsa24Ly .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxwUsa24Ly .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxwUsa24Ly .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxwUsa24Ly .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxwUsa24Ly .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxwUsa24Ly .mbr-text,
.cid-uxwUsa24Ly .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxwQudoXDr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxwQudoXDr H1 {
  color: #000000;
}
.cid-uxD1N9fRdo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD1N9fRdo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD1N9fRdo .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD1N9fRdo .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD1N9fRdo .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD1N9fRdo .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD1N9fRdo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD1N9fRdo .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD1N9fRdo .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD1N9fRdo .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD1N9fRdo .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD1N9fRdo .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD1N9fRdo .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD1N9fRdo .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD1N9fRdo .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD1N9fRdo .mbr-text,
.cid-uxD1N9fRdo .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxD1NIjBF7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD1NIjBF7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD1NIjBF7 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD1NIjBF7 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD1NIjBF7 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD1NIjBF7 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD1NIjBF7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD1NIjBF7 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD1NIjBF7 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD1NIjBF7 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD1NIjBF7 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD1NIjBF7 .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD1NIjBF7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD1NIjBF7 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD1NIjBF7 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD1NIjBF7 .mbr-text,
.cid-uxD1NIjBF7 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxwQueotSN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxwQueotSN H1 {
  color: #000000;
}
.cid-uxwQueC4Du {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxwQueC4Du h2 {
  text-align: left;
}
.cid-uxwQueC4Du h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxwQueC4Du p {
  color: #767676;
  text-align: left;
}
.cid-uxwQueC4Du .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxwQueC4Du .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxwQueC4Du .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxwQueC4Du .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxwQueC4Du .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxwQueC4Du .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxwQueC4Du .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxwQueC4Du .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxwQueC4Du .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxwQueC4Du .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxwQueC4Du .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxwQueRn4S {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxwQueRn4S H1 {
  color: #000000;
}
.cid-uxwQuf6gKH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxwQufkfCh {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxwQufkfCh h2 {
  text-align: left;
}
.cid-uxwQufkfCh h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxwQufkfCh p {
  color: #767676;
  text-align: left;
}
.cid-uxwQufkfCh .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxwQufkfCh .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxwQufkfCh .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxwQufkfCh .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxwQufkfCh .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxwQufkfCh .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxwQufkfCh .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxwQufkfCh .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxwQufkfCh .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxwQufkfCh .mbr-text {
  color: #232323;
}
.cid-uxwQufALhg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxwQufALhg H1 {
  color: #000000;
}
.cid-uxwQufMH0P {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxwQufMH0P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxwQufMH0P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxwQufMH0P .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxwQufMH0P .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxwQufMH0P .container {
    padding: 0 26px;
  }
}
.cid-uxwQufMH0P .row {
  justify-content: center;
}
.cid-uxwQufMH0P .item {
  margin-bottom: 32px;
}
.cid-uxwQufMH0P .item a {
  display: block;
}
.cid-uxwQufMH0P .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxwQufMH0P .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxwQufMH0P .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxwQufMH0P .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxwQufMH0P .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxwQufMH0P .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxwQufMH0P .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxwQufMH0P .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxwQufMH0P .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxwQufMH0P .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxwQufMH0P .item-title {
  color: #ffffff;
}
.cid-uxwQufMH0P .mbr-date {
  color: #cacaca;
}
.cid-uxwQufMH0P .mbr-desc {
  color: #cacaca;
}
.cid-uxwQug2bW3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxwQug2bW3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxwQug2bW3 .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-uxwQug2bW3 .container {
    padding: 0 16px;
  }
}
.cid-uxwQug2bW3 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxwQug2bW3 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxwQug2bW3 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxwQug2bW3 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxwQug2bW3 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxwQug2bW3 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxwQug2bW3 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxwQug2bW3 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxwQug2bW3 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxwQug2bW3 .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxwQug2bW3 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxwQug2bW3 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxwQug2bW3 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxwQug2bW3 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxwQug2bW3 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxwQug2bW3 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxwQug2bW3 .dragArea.row .form-group .form-control:hover,
.cid-uxwQug2bW3 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxwQug2bW3 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxwQug2bW3 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxwQug2bW3 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxwQug2bW3 .mbr-title {
  color: #ffffff;
}
.cid-uxwQug2bW3 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxwQug2bW3 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxwQug2bW3 .mbr-text {
  color: #08323C;
}
.cid-uxwQug2bW3 .list {
  color: #08323C;
}
.cid-uxwQug2bW3 label {
  color: #08323C;
}
.cid-uxwQug2bW3 H3 {
  color: #000000;
}
.cid-uxwQug2bW3 P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxwV4P5OTj {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxwV4P5OTj H1 {
  text-align: center;
}
.cid-uxwV4Pm0P1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxwV4Px0ee {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxwV4Px0ee .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxwV4Px0ee .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxwV4Px0ee .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxwV4Px0ee .box {
  left: 20%;
}
.cid-uxwV4Px0ee .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxwV4Px0ee .mbr-section-text,
.cid-uxwV4Px0ee .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxwV4Px0ee .text-box {
    display: none;
  }
  .cid-uxwV4Px0ee .mbr-section-title,
  .cid-uxwV4Px0ee .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxwV4Px0ee .box {
    display: none;
  }
  .cid-uxwV4Px0ee .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxwV4Px0ee .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxwV4Px0ee .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxwV4Px0ee .mbr-section-text {
  color: #ffffff;
}
.cid-uxwV4Px0ee .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxwV4Px0ee .mbr-section-text DIV {
  text-align: left;
}
.cid-uxwV4PJGGh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxwV4PJGGh h2 {
  text-align: left;
}
.cid-uxwV4PJGGh h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxwV4PJGGh p {
  color: #767676;
  text-align: left;
}
.cid-uxwV4PJGGh .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxwV4PJGGh .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxwV4PJGGh .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxwV4PJGGh .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxwV4PJGGh .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxwV4PJGGh .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxwV4PJGGh .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxwV4PJGGh .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxwV4PJGGh .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxwV4PJGGh H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxwV4PJGGh P {
  color: #ffffff;
}
.cid-uxwV4PJGGh H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxwV4Q2AmX {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxwV4Q2AmX H1 {
  text-align: center;
}
.cid-uxwV4QfJGo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxwV4QfJGo H1 {
  color: #000000;
}
.cid-uxwVtBVowg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxwVtBVowg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxwVtBVowg .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxwVtBVowg .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxwVtBVowg .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxwVtBVowg .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxwVtBVowg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxwVtBVowg .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxwVtBVowg .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxwVtBVowg .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxwVtBVowg .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxwVtBVowg .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxwVtBVowg .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxwVtBVowg .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxwVtBVowg .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxwVtBVowg .mbr-text,
.cid-uxwVtBVowg .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxwV4QJW2R {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxwV4QJW2R H1 {
  color: #000000;
}
.cid-uxD1QYYJjf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD1QYYJjf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD1QYYJjf .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD1QYYJjf .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD1QYYJjf .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD1QYYJjf .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD1QYYJjf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD1QYYJjf .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD1QYYJjf .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD1QYYJjf .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD1QYYJjf .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD1QYYJjf .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD1QYYJjf .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD1QYYJjf .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD1QYYJjf .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD1QYYJjf .mbr-text,
.cid-uxD1QYYJjf .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxD1RrKvD9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD1RrKvD9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD1RrKvD9 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD1RrKvD9 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD1RrKvD9 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD1RrKvD9 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD1RrKvD9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD1RrKvD9 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD1RrKvD9 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD1RrKvD9 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD1RrKvD9 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD1RrKvD9 .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD1RrKvD9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD1RrKvD9 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD1RrKvD9 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD1RrKvD9 .mbr-text,
.cid-uxD1RrKvD9 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxwV4RGXW0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxwV4RGXW0 H1 {
  color: #000000;
}
.cid-uxwV4RTF1i {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxwV4RTF1i h2 {
  text-align: left;
}
.cid-uxwV4RTF1i h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxwV4RTF1i p {
  color: #767676;
  text-align: left;
}
.cid-uxwV4RTF1i .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxwV4RTF1i .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxwV4RTF1i .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxwV4RTF1i .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxwV4RTF1i .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxwV4RTF1i .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxwV4RTF1i .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxwV4RTF1i .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxwV4RTF1i .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxwV4RTF1i .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxwV4RTF1i .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxwV4SaO39 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxwV4SaO39 H1 {
  color: #000000;
}
.cid-uxwV4SofCr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxwV4SCuqo {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxwV4SCuqo h2 {
  text-align: left;
}
.cid-uxwV4SCuqo h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxwV4SCuqo p {
  color: #767676;
  text-align: left;
}
.cid-uxwV4SCuqo .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxwV4SCuqo .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxwV4SCuqo .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxwV4SCuqo .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxwV4SCuqo .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxwV4SCuqo .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxwV4SCuqo .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxwV4SCuqo .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxwV4SCuqo .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxwV4SCuqo .mbr-text {
  color: #232323;
}
.cid-uxwV4SRsqT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxwV4SRsqT H1 {
  color: #000000;
}
.cid-uxwV4T5xxa {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxwV4T5xxa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxwV4T5xxa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxwV4T5xxa .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxwV4T5xxa .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxwV4T5xxa .container {
    padding: 0 26px;
  }
}
.cid-uxwV4T5xxa .row {
  justify-content: center;
}
.cid-uxwV4T5xxa .item {
  margin-bottom: 32px;
}
.cid-uxwV4T5xxa .item a {
  display: block;
}
.cid-uxwV4T5xxa .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxwV4T5xxa .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxwV4T5xxa .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxwV4T5xxa .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxwV4T5xxa .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxwV4T5xxa .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxwV4T5xxa .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxwV4T5xxa .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxwV4T5xxa .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxwV4T5xxa .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxwV4T5xxa .item-title {
  color: #ffffff;
}
.cid-uxwV4T5xxa .mbr-date {
  color: #cacaca;
}
.cid-uxwV4T5xxa .mbr-desc {
  color: #cacaca;
}
.cid-uxwV4Tngi7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxwV4Tngi7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxwV4Tngi7 .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-uxwV4Tngi7 .container {
    padding: 0 16px;
  }
}
.cid-uxwV4Tngi7 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxwV4Tngi7 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxwV4Tngi7 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxwV4Tngi7 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxwV4Tngi7 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxwV4Tngi7 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxwV4Tngi7 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxwV4Tngi7 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxwV4Tngi7 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxwV4Tngi7 .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxwV4Tngi7 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxwV4Tngi7 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxwV4Tngi7 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxwV4Tngi7 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxwV4Tngi7 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxwV4Tngi7 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxwV4Tngi7 .dragArea.row .form-group .form-control:hover,
.cid-uxwV4Tngi7 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxwV4Tngi7 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxwV4Tngi7 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxwV4Tngi7 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxwV4Tngi7 .mbr-title {
  color: #ffffff;
}
.cid-uxwV4Tngi7 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxwV4Tngi7 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxwV4Tngi7 .mbr-text {
  color: #08323C;
}
.cid-uxwV4Tngi7 .list {
  color: #08323C;
}
.cid-uxwV4Tngi7 label {
  color: #08323C;
}
.cid-uxwV4Tngi7 H3 {
  color: #000000;
}
.cid-uxwV4Tngi7 P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxwXVzVlBI {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxwXVzVlBI H1 {
  text-align: center;
}
.cid-uxwXVAeGKK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxwXVAsHa4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxwXVAsHa4 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxwXVAsHa4 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxwXVAsHa4 .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxwXVAsHa4 .box {
  left: 20%;
}
.cid-uxwXVAsHa4 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxwXVAsHa4 .mbr-section-text,
.cid-uxwXVAsHa4 .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxwXVAsHa4 .text-box {
    display: none;
  }
  .cid-uxwXVAsHa4 .mbr-section-title,
  .cid-uxwXVAsHa4 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxwXVAsHa4 .box {
    display: none;
  }
  .cid-uxwXVAsHa4 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxwXVAsHa4 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxwXVAsHa4 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxwXVAsHa4 .mbr-section-text {
  color: #ffffff;
}
.cid-uxwXVAsHa4 .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxwXVAsHa4 .mbr-section-text DIV {
  text-align: left;
}
.cid-uxwXVAIIt5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxwXVAIIt5 h2 {
  text-align: left;
}
.cid-uxwXVAIIt5 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxwXVAIIt5 p {
  color: #767676;
  text-align: left;
}
.cid-uxwXVAIIt5 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxwXVAIIt5 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxwXVAIIt5 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxwXVAIIt5 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxwXVAIIt5 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxwXVAIIt5 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxwXVAIIt5 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxwXVAIIt5 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxwXVAIIt5 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxwXVAIIt5 H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxwXVAIIt5 P {
  color: #ffffff;
}
.cid-uxwXVAIIt5 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxwXVB0Yyb {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxwXVB0Yyb H1 {
  text-align: center;
}
.cid-uxwXVBfYeg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxwXVBfYeg H1 {
  color: #000000;
}
.cid-uxwY5IDQfa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxwY5IDQfa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxwY5IDQfa .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxwY5IDQfa .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxwY5IDQfa .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxwY5IDQfa .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxwY5IDQfa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxwY5IDQfa .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxwY5IDQfa .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxwY5IDQfa .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxwY5IDQfa .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxwY5IDQfa .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxwY5IDQfa .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxwY5IDQfa .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxwY5IDQfa .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxwY5IDQfa .mbr-text,
.cid-uxwY5IDQfa .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxwXVBUqhq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxwXVBUqhq H1 {
  color: #000000;
}
.cid-uxD1Uh2u8E {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD1Uh2u8E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD1Uh2u8E .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD1Uh2u8E .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD1Uh2u8E .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD1Uh2u8E .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD1Uh2u8E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD1Uh2u8E .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD1Uh2u8E .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD1Uh2u8E .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD1Uh2u8E .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD1Uh2u8E .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD1Uh2u8E .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD1Uh2u8E .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD1Uh2u8E .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD1Uh2u8E .mbr-text,
.cid-uxD1Uh2u8E .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxD1UCHuZO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxD1UCHuZO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxD1UCHuZO .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxD1UCHuZO .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxD1UCHuZO .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxD1UCHuZO .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxD1UCHuZO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxD1UCHuZO .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxD1UCHuZO .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxD1UCHuZO .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxD1UCHuZO .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxD1UCHuZO .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxD1UCHuZO .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxD1UCHuZO .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxD1UCHuZO .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxD1UCHuZO .mbr-text,
.cid-uxD1UCHuZO .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxwXVD2VDd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxwXVD2VDd H1 {
  color: #000000;
}
.cid-uxwXVDnvkC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxwXVDnvkC h2 {
  text-align: left;
}
.cid-uxwXVDnvkC h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxwXVDnvkC p {
  color: #767676;
  text-align: left;
}
.cid-uxwXVDnvkC .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxwXVDnvkC .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxwXVDnvkC .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxwXVDnvkC .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxwXVDnvkC .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxwXVDnvkC .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxwXVDnvkC .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxwXVDnvkC .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxwXVDnvkC .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxwXVDnvkC .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxwXVDnvkC .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxwXVDGXvc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxwXVDGXvc H1 {
  color: #000000;
}
.cid-uxwXVDWnI9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxwXVEaXTb {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxwXVEaXTb h2 {
  text-align: left;
}
.cid-uxwXVEaXTb h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxwXVEaXTb p {
  color: #767676;
  text-align: left;
}
.cid-uxwXVEaXTb .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxwXVEaXTb .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxwXVEaXTb .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxwXVEaXTb .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxwXVEaXTb .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxwXVEaXTb .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxwXVEaXTb .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxwXVEaXTb .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxwXVEaXTb .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxwXVEaXTb .mbr-text {
  color: #232323;
}
.cid-uxwXVEr5ED {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxwXVEr5ED H1 {
  color: #000000;
}
.cid-uxwXVELlUG {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxwXVELlUG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxwXVELlUG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxwXVELlUG .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxwXVELlUG .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxwXVELlUG .container {
    padding: 0 26px;
  }
}
.cid-uxwXVELlUG .row {
  justify-content: center;
}
.cid-uxwXVELlUG .item {
  margin-bottom: 32px;
}
.cid-uxwXVELlUG .item a {
  display: block;
}
.cid-uxwXVELlUG .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxwXVELlUG .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxwXVELlUG .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxwXVELlUG .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxwXVELlUG .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxwXVELlUG .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxwXVELlUG .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxwXVELlUG .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxwXVELlUG .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxwXVELlUG .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxwXVELlUG .item-title {
  color: #ffffff;
}
.cid-uxwXVELlUG .mbr-date {
  color: #cacaca;
}
.cid-uxwXVELlUG .mbr-desc {
  color: #cacaca;
}
.cid-uxwXVF2Qlo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxwXVF2Qlo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxwXVF2Qlo .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-uxwXVF2Qlo .container {
    padding: 0 16px;
  }
}
.cid-uxwXVF2Qlo .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxwXVF2Qlo .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxwXVF2Qlo .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxwXVF2Qlo .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxwXVF2Qlo .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxwXVF2Qlo .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxwXVF2Qlo .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxwXVF2Qlo .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxwXVF2Qlo .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxwXVF2Qlo .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxwXVF2Qlo .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxwXVF2Qlo .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxwXVF2Qlo .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxwXVF2Qlo .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxwXVF2Qlo .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxwXVF2Qlo .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxwXVF2Qlo .dragArea.row .form-group .form-control:hover,
.cid-uxwXVF2Qlo .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxwXVF2Qlo .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxwXVF2Qlo .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxwXVF2Qlo .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxwXVF2Qlo .mbr-title {
  color: #ffffff;
}
.cid-uxwXVF2Qlo .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxwXVF2Qlo .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxwXVF2Qlo .mbr-text {
  color: #08323C;
}
.cid-uxwXVF2Qlo .list {
  color: #08323C;
}
.cid-uxwXVF2Qlo label {
  color: #08323C;
}
.cid-uxwXVF2Qlo H3 {
  color: #000000;
}
.cid-uxwXVF2Qlo P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxx7uV9Qn1 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxx7uV9Qn1 H1 {
  text-align: center;
}
.cid-uxx7uVs9sZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxx7uVFib8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxx7uVFib8 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxx7uVFib8 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxx7uVFib8 .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxx7uVFib8 .box {
  left: 20%;
}
.cid-uxx7uVFib8 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxx7uVFib8 .mbr-section-text,
.cid-uxx7uVFib8 .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxx7uVFib8 .text-box {
    display: none;
  }
  .cid-uxx7uVFib8 .mbr-section-title,
  .cid-uxx7uVFib8 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxx7uVFib8 .box {
    display: none;
  }
  .cid-uxx7uVFib8 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxx7uVFib8 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxx7uVFib8 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxx7uVFib8 .mbr-section-text {
  color: #ffffff;
}
.cid-uxx7uVFib8 .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxx7uVFib8 .mbr-section-text DIV {
  text-align: left;
}
.cid-uxx7uVUYj8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxx7uVUYj8 h2 {
  text-align: left;
}
.cid-uxx7uVUYj8 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxx7uVUYj8 p {
  color: #767676;
  text-align: left;
}
.cid-uxx7uVUYj8 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxx7uVUYj8 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxx7uVUYj8 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxx7uVUYj8 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxx7uVUYj8 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxx7uVUYj8 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxx7uVUYj8 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxx7uVUYj8 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxx7uVUYj8 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxx7uVUYj8 H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxx7uVUYj8 P {
  color: #ffffff;
}
.cid-uxx7uVUYj8 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxx7uWdfxB {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxx7uWdfxB H1 {
  text-align: center;
}
.cid-uxx7uWpn4e {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxx7uWpn4e H1 {
  color: #000000;
}
.cid-uxxdTJJBEy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxxdTJJBEy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxxdTJJBEy .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxxdTJJBEy .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxxdTJJBEy .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxxdTJJBEy .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxxdTJJBEy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxxdTJJBEy .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxxdTJJBEy .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxxdTJJBEy .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxxdTJJBEy .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxxdTJJBEy .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxxdTJJBEy .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxxdTJJBEy .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxxdTJJBEy .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxxdTJJBEy .mbr-text,
.cid-uxxdTJJBEy .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxx7uX1jjP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxx7uX1jjP H1 {
  color: #000000;
}
.cid-uxCYMkai4M {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxCYMkai4M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxCYMkai4M .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxCYMkai4M .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxCYMkai4M .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxCYMkai4M .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxCYMkai4M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxCYMkai4M .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxCYMkai4M .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxCYMkai4M .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxCYMkai4M .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxCYMkai4M .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxCYMkai4M .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxCYMkai4M .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxCYMkai4M .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxCYMkai4M .mbr-text,
.cid-uxCYMkai4M .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxCYN7ckbK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxCYN7ckbK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxCYN7ckbK .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxCYN7ckbK .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxCYN7ckbK .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxCYN7ckbK .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxCYN7ckbK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxCYN7ckbK .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxCYN7ckbK .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxCYN7ckbK .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxCYN7ckbK .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxCYN7ckbK .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxCYN7ckbK .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxCYN7ckbK .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxCYN7ckbK .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxCYN7ckbK .mbr-text,
.cid-uxCYN7ckbK .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxx7uY65DS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxx7uY65DS H1 {
  color: #000000;
}
.cid-uxx7uYl6kL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxx7uYl6kL h2 {
  text-align: left;
}
.cid-uxx7uYl6kL h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxx7uYl6kL p {
  color: #767676;
  text-align: left;
}
.cid-uxx7uYl6kL .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxx7uYl6kL .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxx7uYl6kL .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxx7uYl6kL .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxx7uYl6kL .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxx7uYl6kL .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxx7uYl6kL .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxx7uYl6kL .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxx7uYl6kL .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxx7uYl6kL .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxx7uYl6kL .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxx7uYDOi1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxx7uYDOi1 H1 {
  color: #000000;
}
.cid-uxx7uYRDnJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxx7uZ4rIw {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxx7uZ4rIw h2 {
  text-align: left;
}
.cid-uxx7uZ4rIw h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxx7uZ4rIw p {
  color: #767676;
  text-align: left;
}
.cid-uxx7uZ4rIw .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxx7uZ4rIw .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxx7uZ4rIw .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxx7uZ4rIw .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxx7uZ4rIw .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxx7uZ4rIw .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxx7uZ4rIw .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxx7uZ4rIw .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxx7uZ4rIw .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxx7uZ4rIw .mbr-text {
  color: #232323;
}
.cid-uxx7uZlSit {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxx7uZlSit H1 {
  color: #000000;
}
.cid-uxx7uZFOHx {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxx7uZFOHx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxx7uZFOHx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxx7uZFOHx .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxx7uZFOHx .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxx7uZFOHx .container {
    padding: 0 26px;
  }
}
.cid-uxx7uZFOHx .row {
  justify-content: center;
}
.cid-uxx7uZFOHx .item {
  margin-bottom: 32px;
}
.cid-uxx7uZFOHx .item a {
  display: block;
}
.cid-uxx7uZFOHx .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxx7uZFOHx .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxx7uZFOHx .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxx7uZFOHx .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxx7uZFOHx .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxx7uZFOHx .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxx7uZFOHx .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxx7uZFOHx .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxx7uZFOHx .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxx7uZFOHx .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxx7uZFOHx .item-title {
  color: #ffffff;
}
.cid-uxx7uZFOHx .mbr-date {
  color: #cacaca;
}
.cid-uxx7uZFOHx .mbr-desc {
  color: #cacaca;
}
.cid-uxx7uZVgpr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxx7uZVgpr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxx7uZVgpr .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-uxx7uZVgpr .container {
    padding: 0 16px;
  }
}
.cid-uxx7uZVgpr .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxx7uZVgpr .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxx7uZVgpr .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxx7uZVgpr .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxx7uZVgpr .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxx7uZVgpr .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxx7uZVgpr .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxx7uZVgpr .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxx7uZVgpr .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxx7uZVgpr .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxx7uZVgpr .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxx7uZVgpr .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxx7uZVgpr .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxx7uZVgpr .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxx7uZVgpr .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxx7uZVgpr .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxx7uZVgpr .dragArea.row .form-group .form-control:hover,
.cid-uxx7uZVgpr .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxx7uZVgpr .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxx7uZVgpr .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxx7uZVgpr .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxx7uZVgpr .mbr-title {
  color: #ffffff;
}
.cid-uxx7uZVgpr .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxx7uZVgpr .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxx7uZVgpr .mbr-text {
  color: #08323C;
}
.cid-uxx7uZVgpr .list {
  color: #08323C;
}
.cid-uxx7uZVgpr label {
  color: #08323C;
}
.cid-uxx7uZVgpr H3 {
  color: #000000;
}
.cid-uxx7uZVgpr P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxxfj8pLRd {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxxfj8pLRd H1 {
  text-align: center;
}
.cid-uxxfj8IPZI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxxfj8UDil {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxxfj8UDil .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxxfj8UDil .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxxfj8UDil .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxxfj8UDil .box {
  left: 20%;
}
.cid-uxxfj8UDil .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxxfj8UDil .mbr-section-text,
.cid-uxxfj8UDil .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxxfj8UDil .text-box {
    display: none;
  }
  .cid-uxxfj8UDil .mbr-section-title,
  .cid-uxxfj8UDil .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxxfj8UDil .box {
    display: none;
  }
  .cid-uxxfj8UDil .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxxfj8UDil .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxxfj8UDil .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxxfj8UDil .mbr-section-text {
  color: #ffffff;
}
.cid-uxxfj8UDil .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxxfj8UDil .mbr-section-text DIV {
  text-align: left;
}
.cid-uxxfj9bXFt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxxfj9bXFt h2 {
  text-align: left;
}
.cid-uxxfj9bXFt h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxxfj9bXFt p {
  color: #767676;
  text-align: left;
}
.cid-uxxfj9bXFt .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxxfj9bXFt .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxxfj9bXFt .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxxfj9bXFt .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxxfj9bXFt .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxxfj9bXFt .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxxfj9bXFt .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxxfj9bXFt .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxxfj9bXFt .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxxfj9bXFt H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxxfj9bXFt P {
  color: #ffffff;
}
.cid-uxxfj9bXFt H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxxfj9t8SE {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxxfj9t8SE H1 {
  text-align: center;
}
.cid-uxxfj9HTDw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxxfj9HTDw H1 {
  color: #000000;
}
.cid-uxxgBhx9oc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxxgBhx9oc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxxgBhx9oc .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxxgBhx9oc .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxxgBhx9oc .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxxgBhx9oc .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxxgBhx9oc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxxgBhx9oc .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxxgBhx9oc .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxxgBhx9oc .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxxgBhx9oc .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxxgBhx9oc .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxxgBhx9oc .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxxgBhx9oc .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxxgBhx9oc .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxxgBhx9oc .mbr-text,
.cid-uxxgBhx9oc .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxxfjafwqI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxxfjafwqI H1 {
  color: #000000;
}
.cid-uxCYHqxiHl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxCYHqxiHl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxCYHqxiHl .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxCYHqxiHl .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxCYHqxiHl .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxCYHqxiHl .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxCYHqxiHl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxCYHqxiHl .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxCYHqxiHl .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxCYHqxiHl .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxCYHqxiHl .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxCYHqxiHl .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxCYHqxiHl .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxCYHqxiHl .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxCYHqxiHl .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxCYHqxiHl .mbr-text,
.cid-uxCYHqxiHl .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxCYHQKRXR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxCYHQKRXR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxCYHQKRXR .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxCYHQKRXR .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxCYHQKRXR .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxCYHQKRXR .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxCYHQKRXR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxCYHQKRXR .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxCYHQKRXR .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxCYHQKRXR .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxCYHQKRXR .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxCYHQKRXR .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxCYHQKRXR .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxCYHQKRXR .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxCYHQKRXR .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxCYHQKRXR .mbr-text,
.cid-uxCYHQKRXR .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxxfjbgm8Z {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxxfjbgm8Z H1 {
  color: #000000;
}
.cid-uxxfjbxPJc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxxfjbxPJc h2 {
  text-align: left;
}
.cid-uxxfjbxPJc h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxxfjbxPJc p {
  color: #767676;
  text-align: left;
}
.cid-uxxfjbxPJc .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxxfjbxPJc .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxxfjbxPJc .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxxfjbxPJc .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxxfjbxPJc .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxxfjbxPJc .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxxfjbxPJc .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxxfjbxPJc .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxxfjbxPJc .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxxfjbxPJc .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxxfjbxPJc .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxxfjbRBpI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxxfjbRBpI H1 {
  color: #000000;
}
.cid-uxxfjc7tgd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxxfjcmCai {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxxfjcmCai h2 {
  text-align: left;
}
.cid-uxxfjcmCai h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxxfjcmCai p {
  color: #767676;
  text-align: left;
}
.cid-uxxfjcmCai .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxxfjcmCai .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxxfjcmCai .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxxfjcmCai .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxxfjcmCai .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxxfjcmCai .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxxfjcmCai .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxxfjcmCai .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxxfjcmCai .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxxfjcmCai .mbr-text {
  color: #232323;
}
.cid-uxxfjcFH7o {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxxfjcFH7o H1 {
  color: #000000;
}
.cid-uxxfjcX18H {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxxfjcX18H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxxfjcX18H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxxfjcX18H .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxxfjcX18H .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxxfjcX18H .container {
    padding: 0 26px;
  }
}
.cid-uxxfjcX18H .row {
  justify-content: center;
}
.cid-uxxfjcX18H .item {
  margin-bottom: 32px;
}
.cid-uxxfjcX18H .item a {
  display: block;
}
.cid-uxxfjcX18H .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxxfjcX18H .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxxfjcX18H .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxxfjcX18H .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxxfjcX18H .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxxfjcX18H .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxxfjcX18H .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxxfjcX18H .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxxfjcX18H .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxxfjcX18H .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxxfjcX18H .item-title {
  color: #ffffff;
}
.cid-uxxfjcX18H .mbr-date {
  color: #cacaca;
}
.cid-uxxfjcX18H .mbr-desc {
  color: #cacaca;
}
.cid-uxxfjdgkpK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxxfjdgkpK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxxfjdgkpK .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-uxxfjdgkpK .container {
    padding: 0 16px;
  }
}
.cid-uxxfjdgkpK .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxxfjdgkpK .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxxfjdgkpK .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxxfjdgkpK .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxxfjdgkpK .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxxfjdgkpK .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxxfjdgkpK .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxxfjdgkpK .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxxfjdgkpK .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxxfjdgkpK .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxxfjdgkpK .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxxfjdgkpK .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxxfjdgkpK .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxxfjdgkpK .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxxfjdgkpK .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxxfjdgkpK .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxxfjdgkpK .dragArea.row .form-group .form-control:hover,
.cid-uxxfjdgkpK .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxxfjdgkpK .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxxfjdgkpK .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxxfjdgkpK .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxxfjdgkpK .mbr-title {
  color: #ffffff;
}
.cid-uxxfjdgkpK .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxxfjdgkpK .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxxfjdgkpK .mbr-text {
  color: #08323C;
}
.cid-uxxfjdgkpK .list {
  color: #08323C;
}
.cid-uxxfjdgkpK label {
  color: #08323C;
}
.cid-uxxfjdgkpK H3 {
  color: #000000;
}
.cid-uxxfjdgkpK P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxxleVDxsb {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxxleVDxsb H1 {
  text-align: center;
}
.cid-uxxleVX3qk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxxleWbYgB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxxleWbYgB .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxxleWbYgB .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxxleWbYgB .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxxleWbYgB .box {
  left: 20%;
}
.cid-uxxleWbYgB .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxxleWbYgB .mbr-section-text,
.cid-uxxleWbYgB .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxxleWbYgB .text-box {
    display: none;
  }
  .cid-uxxleWbYgB .mbr-section-title,
  .cid-uxxleWbYgB .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxxleWbYgB .box {
    display: none;
  }
  .cid-uxxleWbYgB .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxxleWbYgB .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxxleWbYgB .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxxleWbYgB .mbr-section-text {
  color: #ffffff;
}
.cid-uxxleWbYgB .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxxleWbYgB .mbr-section-text DIV {
  text-align: left;
}
.cid-uxxleWsCA9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxxleWsCA9 h2 {
  text-align: left;
}
.cid-uxxleWsCA9 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxxleWsCA9 p {
  color: #767676;
  text-align: left;
}
.cid-uxxleWsCA9 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxxleWsCA9 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxxleWsCA9 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxxleWsCA9 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxxleWsCA9 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxxleWsCA9 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxxleWsCA9 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxxleWsCA9 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxxleWsCA9 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxxleWsCA9 H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxxleWsCA9 P {
  color: #ffffff;
}
.cid-uxxleWsCA9 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxxleWNZA4 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxxleWNZA4 H1 {
  text-align: center;
}
.cid-uxxleX1gtQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxxleX1gtQ H1 {
  color: #000000;
}
.cid-uxxlVmflaS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxxlVmflaS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxxlVmflaS .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxxlVmflaS .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxxlVmflaS .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxxlVmflaS .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxxlVmflaS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxxlVmflaS .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxxlVmflaS .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxxlVmflaS .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxxlVmflaS .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxxlVmflaS .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxxlVmflaS .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxxlVmflaS .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxxlVmflaS .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxxlVmflaS .mbr-text,
.cid-uxxlVmflaS .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxxleXDBs9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxxleXDBs9 H1 {
  color: #000000;
}
.cid-uxCYBkOZat {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxCYBkOZat .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxCYBkOZat .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxCYBkOZat .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxCYBkOZat .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxCYBkOZat .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxCYBkOZat .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxCYBkOZat .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxCYBkOZat .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxCYBkOZat .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxCYBkOZat .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxCYBkOZat .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxCYBkOZat .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxCYBkOZat .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxCYBkOZat .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxCYBkOZat .mbr-text,
.cid-uxCYBkOZat .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxCYBPp4h5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxCYBPp4h5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxCYBPp4h5 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxCYBPp4h5 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxCYBPp4h5 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxCYBPp4h5 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxCYBPp4h5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxCYBPp4h5 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxCYBPp4h5 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxCYBPp4h5 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxCYBPp4h5 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxCYBPp4h5 .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxCYBPp4h5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxCYBPp4h5 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxCYBPp4h5 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxCYBPp4h5 .mbr-text,
.cid-uxCYBPp4h5 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxxleYLsJO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxxleYLsJO H1 {
  color: #000000;
}
.cid-uxxleZ3rlO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxxleZ3rlO h2 {
  text-align: left;
}
.cid-uxxleZ3rlO h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxxleZ3rlO p {
  color: #767676;
  text-align: left;
}
.cid-uxxleZ3rlO .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxxleZ3rlO .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxxleZ3rlO .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxxleZ3rlO .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxxleZ3rlO .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxxleZ3rlO .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxxleZ3rlO .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxxleZ3rlO .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxxleZ3rlO .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxxleZ3rlO .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxxleZ3rlO .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxxleZm9z4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxxleZm9z4 H1 {
  color: #000000;
}
.cid-uxxleZEMUX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxxleZXKpd {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxxleZXKpd h2 {
  text-align: left;
}
.cid-uxxleZXKpd h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxxleZXKpd p {
  color: #767676;
  text-align: left;
}
.cid-uxxleZXKpd .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxxleZXKpd .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxxleZXKpd .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxxleZXKpd .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxxleZXKpd .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxxleZXKpd .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxxleZXKpd .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxxleZXKpd .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxxleZXKpd .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxxleZXKpd .mbr-text {
  color: #232323;
}
.cid-uxxlf0hP4A {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxxlf0hP4A H1 {
  color: #000000;
}
.cid-uxxlf0xNIt {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxxlf0xNIt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxxlf0xNIt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxxlf0xNIt .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxxlf0xNIt .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxxlf0xNIt .container {
    padding: 0 26px;
  }
}
.cid-uxxlf0xNIt .row {
  justify-content: center;
}
.cid-uxxlf0xNIt .item {
  margin-bottom: 32px;
}
.cid-uxxlf0xNIt .item a {
  display: block;
}
.cid-uxxlf0xNIt .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxxlf0xNIt .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxxlf0xNIt .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxxlf0xNIt .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxxlf0xNIt .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxxlf0xNIt .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxxlf0xNIt .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxxlf0xNIt .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxxlf0xNIt .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxxlf0xNIt .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxxlf0xNIt .item-title {
  color: #ffffff;
}
.cid-uxxlf0xNIt .mbr-date {
  color: #cacaca;
}
.cid-uxxlf0xNIt .mbr-desc {
  color: #cacaca;
}
.cid-uxxlf0P7C1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxxlf0P7C1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxxlf0P7C1 .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-uxxlf0P7C1 .container {
    padding: 0 16px;
  }
}
.cid-uxxlf0P7C1 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxxlf0P7C1 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxxlf0P7C1 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxxlf0P7C1 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxxlf0P7C1 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxxlf0P7C1 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxxlf0P7C1 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxxlf0P7C1 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxxlf0P7C1 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxxlf0P7C1 .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxxlf0P7C1 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxxlf0P7C1 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxxlf0P7C1 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxxlf0P7C1 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxxlf0P7C1 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxxlf0P7C1 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxxlf0P7C1 .dragArea.row .form-group .form-control:hover,
.cid-uxxlf0P7C1 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxxlf0P7C1 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxxlf0P7C1 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxxlf0P7C1 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxxlf0P7C1 .mbr-title {
  color: #ffffff;
}
.cid-uxxlf0P7C1 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxxlf0P7C1 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxxlf0P7C1 .mbr-text {
  color: #08323C;
}
.cid-uxxlf0P7C1 .list {
  color: #08323C;
}
.cid-uxxlf0P7C1 label {
  color: #08323C;
}
.cid-uxxlf0P7C1 H3 {
  color: #000000;
}
.cid-uxxlf0P7C1 P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxBXCTHlT7 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxBXCTHlT7 H1 {
  text-align: center;
}
.cid-uxBXCU0PKX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxBXCUfEuo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxBXCUfEuo .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxBXCUfEuo .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxBXCUfEuo .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxBXCUfEuo .box {
  left: 20%;
}
.cid-uxBXCUfEuo .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxBXCUfEuo .mbr-section-text,
.cid-uxBXCUfEuo .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxBXCUfEuo .text-box {
    display: none;
  }
  .cid-uxBXCUfEuo .mbr-section-title,
  .cid-uxBXCUfEuo .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxBXCUfEuo .box {
    display: none;
  }
  .cid-uxBXCUfEuo .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxBXCUfEuo .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxBXCUfEuo .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxBXCUfEuo .mbr-section-text {
  color: #ffffff;
}
.cid-uxBXCUfEuo .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxBXCUfEuo .mbr-section-text DIV {
  text-align: left;
}
.cid-uxBXCUuMgl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxBXCUuMgl h2 {
  text-align: left;
}
.cid-uxBXCUuMgl h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxBXCUuMgl p {
  color: #767676;
  text-align: left;
}
.cid-uxBXCUuMgl .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxBXCUuMgl .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxBXCUuMgl .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxBXCUuMgl .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxBXCUuMgl .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxBXCUuMgl .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxBXCUuMgl .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxBXCUuMgl .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxBXCUuMgl .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxBXCUuMgl H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxBXCUuMgl P {
  color: #ffffff;
}
.cid-uxBXCUuMgl H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxBXCUZKgK {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxBXCUZKgK H1 {
  text-align: center;
}
.cid-uxBXCVevjv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxBXCVevjv H1 {
  color: #000000;
}
.cid-uxBYFY80BU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxBYFY80BU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxBYFY80BU .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxBYFY80BU .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxBYFY80BU .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxBYFY80BU .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxBYFY80BU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxBYFY80BU .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxBYFY80BU .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxBYFY80BU .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxBYFY80BU .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxBYFY80BU .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxBYFY80BU .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxBYFY80BU .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxBYFY80BU .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxBYFY80BU .mbr-text,
.cid-uxBYFY80BU .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxBXCVTPJF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxBXCVTPJF H1 {
  color: #000000;
}
.cid-uxCYuFqxia {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxCYuFqxia .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxCYuFqxia .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxCYuFqxia .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxCYuFqxia .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxCYuFqxia .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxCYuFqxia .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxCYuFqxia .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxCYuFqxia .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxCYuFqxia .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxCYuFqxia .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxCYuFqxia .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxCYuFqxia .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxCYuFqxia .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxCYuFqxia .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxCYuFqxia .mbr-text,
.cid-uxCYuFqxia .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxCYveVkj9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxCYveVkj9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxCYveVkj9 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxCYveVkj9 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxCYveVkj9 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxCYveVkj9 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxCYveVkj9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxCYveVkj9 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxCYveVkj9 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxCYveVkj9 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxCYveVkj9 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxCYveVkj9 .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxCYveVkj9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxCYveVkj9 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxCYveVkj9 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxCYveVkj9 .mbr-text,
.cid-uxCYveVkj9 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxBXCXdkmX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxBXCXdkmX H1 {
  color: #000000;
}
.cid-uxBXCXwZSN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxBXCXwZSN h2 {
  text-align: left;
}
.cid-uxBXCXwZSN h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxBXCXwZSN p {
  color: #767676;
  text-align: left;
}
.cid-uxBXCXwZSN .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxBXCXwZSN .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxBXCXwZSN .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxBXCXwZSN .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxBXCXwZSN .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxBXCXwZSN .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxBXCXwZSN .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxBXCXwZSN .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxBXCXwZSN .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxBXCXwZSN .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxBXCXwZSN .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxBXCXQYIX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxBXCXQYIX H1 {
  color: #000000;
}
.cid-uxBXCYc6AS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxBXCYvBSU {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxBXCYvBSU h2 {
  text-align: left;
}
.cid-uxBXCYvBSU h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxBXCYvBSU p {
  color: #767676;
  text-align: left;
}
.cid-uxBXCYvBSU .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxBXCYvBSU .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxBXCYvBSU .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxBXCYvBSU .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxBXCYvBSU .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxBXCYvBSU .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxBXCYvBSU .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxBXCYvBSU .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxBXCYvBSU .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxBXCYvBSU .mbr-text {
  color: #232323;
}
.cid-uxBXCYQAbm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxBXCYQAbm H1 {
  color: #000000;
}
.cid-uxBXCZ93q1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxBXCZ93q1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxBXCZ93q1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxBXCZ93q1 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxBXCZ93q1 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxBXCZ93q1 .container {
    padding: 0 26px;
  }
}
.cid-uxBXCZ93q1 .row {
  justify-content: center;
}
.cid-uxBXCZ93q1 .item {
  margin-bottom: 32px;
}
.cid-uxBXCZ93q1 .item a {
  display: block;
}
.cid-uxBXCZ93q1 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxBXCZ93q1 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxBXCZ93q1 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxBXCZ93q1 .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxBXCZ93q1 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxBXCZ93q1 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxBXCZ93q1 .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxBXCZ93q1 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxBXCZ93q1 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxBXCZ93q1 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxBXCZ93q1 .item-title {
  color: #ffffff;
}
.cid-uxBXCZ93q1 .mbr-date {
  color: #cacaca;
}
.cid-uxBXCZ93q1 .mbr-desc {
  color: #cacaca;
}
.cid-uxBXCZx26e {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxBXCZx26e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxBXCZx26e .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-uxBXCZx26e .container {
    padding: 0 16px;
  }
}
.cid-uxBXCZx26e .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxBXCZx26e .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxBXCZx26e .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxBXCZx26e .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxBXCZx26e .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxBXCZx26e .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxBXCZx26e .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxBXCZx26e .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxBXCZx26e .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxBXCZx26e .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxBXCZx26e .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxBXCZx26e .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxBXCZx26e .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxBXCZx26e .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxBXCZx26e .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxBXCZx26e .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxBXCZx26e .dragArea.row .form-group .form-control:hover,
.cid-uxBXCZx26e .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxBXCZx26e .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxBXCZx26e .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxBXCZx26e .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxBXCZx26e .mbr-title {
  color: #ffffff;
}
.cid-uxBXCZx26e .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxBXCZx26e .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxBXCZx26e .mbr-text {
  color: #08323C;
}
.cid-uxBXCZx26e .list {
  color: #08323C;
}
.cid-uxBXCZx26e label {
  color: #08323C;
}
.cid-uxBXCZx26e H3 {
  color: #000000;
}
.cid-uxBXCZx26e P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxCQtNUA24 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxCQtNUA24 H1 {
  text-align: center;
}
.cid-uxCQtOhLG4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxCQtOwpPw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxCQtOwpPw .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxCQtOwpPw .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxCQtOwpPw .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxCQtOwpPw .box {
  left: 20%;
}
.cid-uxCQtOwpPw .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxCQtOwpPw .mbr-section-text,
.cid-uxCQtOwpPw .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxCQtOwpPw .text-box {
    display: none;
  }
  .cid-uxCQtOwpPw .mbr-section-title,
  .cid-uxCQtOwpPw .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxCQtOwpPw .box {
    display: none;
  }
  .cid-uxCQtOwpPw .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxCQtOwpPw .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxCQtOwpPw .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxCQtOwpPw .mbr-section-text {
  color: #ffffff;
}
.cid-uxCQtOwpPw .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxCQtOwpPw .mbr-section-text DIV {
  text-align: left;
}
.cid-uxCQtOLvuo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxCQtOLvuo h2 {
  text-align: left;
}
.cid-uxCQtOLvuo h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxCQtOLvuo p {
  color: #767676;
  text-align: left;
}
.cid-uxCQtOLvuo .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxCQtOLvuo .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxCQtOLvuo .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxCQtOLvuo .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxCQtOLvuo .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxCQtOLvuo .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxCQtOLvuo .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxCQtOLvuo .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxCQtOLvuo .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxCQtOLvuo H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxCQtOLvuo P {
  color: #ffffff;
}
.cid-uxCQtOLvuo H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxCQtP4jsN {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxCQtP4jsN H1 {
  text-align: center;
}
.cid-uxCQtPm6JI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxCQtPm6JI H1 {
  color: #000000;
}
.cid-uxCQtPXg2T {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxCQtPXg2T H1 {
  color: #000000;
}
.cid-uxDEd29ScV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxDEd29ScV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxDEd29ScV .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxDEd29ScV .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxDEd29ScV .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxDEd29ScV .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxDEd29ScV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxDEd29ScV .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxDEd29ScV .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxDEd29ScV .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxDEd29ScV .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxDEd29ScV .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxDEd29ScV .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxDEd29ScV .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxDEd29ScV .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxDEd29ScV .mbr-text,
.cid-uxDEd29ScV .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxCYqlBMpv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxCYqlBMpv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxCYqlBMpv .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxCYqlBMpv .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxCYqlBMpv .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxCYqlBMpv .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxCYqlBMpv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxCYqlBMpv .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxCYqlBMpv .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxCYqlBMpv .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxCYqlBMpv .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxCYqlBMpv .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxCYqlBMpv .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxCYqlBMpv .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxCYqlBMpv .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxCYqlBMpv .mbr-text,
.cid-uxCYqlBMpv .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxCQtR4TE8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxCQtR4TE8 H1 {
  color: #000000;
}
.cid-uxCQtRj1FE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxCQtRj1FE h2 {
  text-align: left;
}
.cid-uxCQtRj1FE h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxCQtRj1FE p {
  color: #767676;
  text-align: left;
}
.cid-uxCQtRj1FE .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxCQtRj1FE .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxCQtRj1FE .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxCQtRj1FE .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxCQtRj1FE .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxCQtRj1FE .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxCQtRj1FE .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxCQtRj1FE .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxCQtRj1FE .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxCQtRj1FE .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxCQtRj1FE .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxCQtRB29R {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxCQtRB29R H1 {
  color: #000000;
}
.cid-uxCQtRTAKt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxCQtS8ZBB {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxCQtS8ZBB h2 {
  text-align: left;
}
.cid-uxCQtS8ZBB h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxCQtS8ZBB p {
  color: #767676;
  text-align: left;
}
.cid-uxCQtS8ZBB .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxCQtS8ZBB .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxCQtS8ZBB .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxCQtS8ZBB .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxCQtS8ZBB .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxCQtS8ZBB .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxCQtS8ZBB .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxCQtS8ZBB .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxCQtS8ZBB .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxCQtS8ZBB .mbr-text {
  color: #232323;
}
.cid-uxCQtSrAru {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxCQtSrAru H1 {
  color: #000000;
}
.cid-uxCQtSN0rg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxCQtSN0rg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxCQtSN0rg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxCQtSN0rg .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxCQtSN0rg .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxCQtSN0rg .container {
    padding: 0 26px;
  }
}
.cid-uxCQtSN0rg .row {
  justify-content: center;
}
.cid-uxCQtSN0rg .item {
  margin-bottom: 32px;
}
.cid-uxCQtSN0rg .item a {
  display: block;
}
.cid-uxCQtSN0rg .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxCQtSN0rg .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxCQtSN0rg .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxCQtSN0rg .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxCQtSN0rg .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxCQtSN0rg .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxCQtSN0rg .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxCQtSN0rg .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxCQtSN0rg .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxCQtSN0rg .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxCQtSN0rg .item-title {
  color: #ffffff;
}
.cid-uxCQtSN0rg .mbr-date {
  color: #cacaca;
}
.cid-uxCQtSN0rg .mbr-desc {
  color: #cacaca;
}
.cid-uxCQtT6YK2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxCQtT6YK2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxCQtT6YK2 .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-uxCQtT6YK2 .container {
    padding: 0 16px;
  }
}
.cid-uxCQtT6YK2 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxCQtT6YK2 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxCQtT6YK2 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxCQtT6YK2 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxCQtT6YK2 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxCQtT6YK2 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxCQtT6YK2 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxCQtT6YK2 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxCQtT6YK2 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxCQtT6YK2 .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxCQtT6YK2 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxCQtT6YK2 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxCQtT6YK2 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxCQtT6YK2 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxCQtT6YK2 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxCQtT6YK2 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxCQtT6YK2 .dragArea.row .form-group .form-control:hover,
.cid-uxCQtT6YK2 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxCQtT6YK2 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxCQtT6YK2 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxCQtT6YK2 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxCQtT6YK2 .mbr-title {
  color: #ffffff;
}
.cid-uxCQtT6YK2 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxCQtT6YK2 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxCQtT6YK2 .mbr-text {
  color: #08323C;
}
.cid-uxCQtT6YK2 .list {
  color: #08323C;
}
.cid-uxCQtT6YK2 label {
  color: #08323C;
}
.cid-uxCQtT6YK2 H3 {
  color: #000000;
}
.cid-uxCQtT6YK2 P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
.cid-v3GtaCPesQ .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GtaCPesQ .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GtaCPesQ a {
  font-style: normal;
}
.cid-v3GtaCPesQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GtaCPesQ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GtaCPesQ .nav-item:focus,
.cid-v3GtaCPesQ .nav-link:focus {
  outline: none;
}
.cid-v3GtaCPesQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GtaCPesQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GtaCPesQ .menu-logo {
  margin-right: auto;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GtaCPesQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GtaCPesQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GtaCPesQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v3GtaCPesQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GtaCPesQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GtaCPesQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GtaCPesQ button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GtaCPesQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GtaCPesQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GtaCPesQ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .btn {
  display: flex;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GtaCPesQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GtaCPesQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GtaCPesQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GtaCPesQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GtaCPesQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v3GtaCPesQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GtaCPesQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v3GtaCPesQ .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GtaCPesQ img {
    height: 3.8rem !important;
  }
  .cid-v3GtaCPesQ .btn {
    display: flex;
  }
  .cid-v3GtaCPesQ button.navbar-toggler {
    display: block;
  }
  .cid-v3GtaCPesQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GtaCPesQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GtaCPesQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing,
  .cid-v3GtaCPesQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GtaCPesQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GtaCPesQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v3GtaCPesQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GtaCPesQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v3GtaCPesQ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GtaCPesQ .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GtaCPesQ .nav-link:hover,
.cid-v3GtaCPesQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uxCT7POQGv {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxCT7POQGv H1 {
  text-align: center;
}
.cid-uxCT7QaJVs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxCT7QvM7s {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxCT7QvM7s .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uxCT7QvM7s .text-block {
  position: relative;
  z-index: 0;
}
.cid-uxCT7QvM7s .box {
  width: 25%;
  height: 40%;
  background: #232323;
  position: absolute;
  top: 4%;
}
.cid-uxCT7QvM7s .box {
  left: 20%;
}
.cid-uxCT7QvM7s .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uxCT7QvM7s .mbr-section-text,
.cid-uxCT7QvM7s .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-uxCT7QvM7s .text-box {
    display: none;
  }
  .cid-uxCT7QvM7s .mbr-section-title,
  .cid-uxCT7QvM7s .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uxCT7QvM7s .box {
    display: none;
  }
  .cid-uxCT7QvM7s .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxCT7QvM7s .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxCT7QvM7s .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uxCT7QvM7s .mbr-section-text {
  color: #ffffff;
}
.cid-uxCT7QvM7s .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uxCT7QvM7s .mbr-section-text DIV {
  text-align: left;
}
.cid-uxCT7QNlx8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxCT7QNlx8 h2 {
  text-align: left;
}
.cid-uxCT7QNlx8 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxCT7QNlx8 p {
  color: #767676;
  text-align: left;
}
.cid-uxCT7QNlx8 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxCT7QNlx8 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxCT7QNlx8 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxCT7QNlx8 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxCT7QNlx8 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxCT7QNlx8 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxCT7QNlx8 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxCT7QNlx8 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxCT7QNlx8 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxCT7QNlx8 H4 {
  color: #dfc979;
  text-align: left;
}
.cid-uxCT7QNlx8 P {
  color: #ffffff;
}
.cid-uxCT7QNlx8 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxCT7RaOzp {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uxCT7RaOzp H1 {
  text-align: center;
}
.cid-uxCT7RqGAb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxCT7RqGAb H1 {
  color: #000000;
}
.cid-uxCUL6E0oR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxCUL6E0oR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxCUL6E0oR .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxCUL6E0oR .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxCUL6E0oR .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxCUL6E0oR .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxCUL6E0oR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxCUL6E0oR .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxCUL6E0oR .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxCUL6E0oR .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxCUL6E0oR .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxCUL6E0oR .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxCUL6E0oR .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxCUL6E0oR .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxCUL6E0oR .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxCUL6E0oR .mbr-text,
.cid-uxCUL6E0oR .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxCT7RJkbf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxCT7RJkbf H1 {
  color: #000000;
}
.cid-uxDDXstm5B {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxDDXstm5B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxDDXstm5B .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxDDXstm5B .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxDDXstm5B .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxDDXstm5B .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxDDXstm5B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxDDXstm5B .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxDDXstm5B .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxDDXstm5B .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxDDXstm5B .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxDDXstm5B .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxDDXstm5B .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxDDXstm5B .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxDDXstm5B .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxDDXstm5B .mbr-text,
.cid-uxDDXstm5B .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxDDY3ILZX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxDDY3ILZX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxDDY3ILZX .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxDDY3ILZX .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxDDY3ILZX .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxDDY3ILZX .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxDDY3ILZX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxDDY3ILZX .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxDDY3ILZX .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxDDY3ILZX .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxDDY3ILZX .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxDDY3ILZX .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxDDY3ILZX .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxDDY3ILZX .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxDDY3ILZX .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxDDY3ILZX .mbr-text,
.cid-uxDDY3ILZX .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxCT7SXaJM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxCT7SXaJM H1 {
  color: #000000;
}
.cid-uxCT7Th7n3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxCT7Th7n3 h2 {
  text-align: left;
}
.cid-uxCT7Th7n3 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxCT7Th7n3 p {
  color: #767676;
  text-align: left;
}
.cid-uxCT7Th7n3 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxCT7Th7n3 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxCT7Th7n3 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxCT7Th7n3 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxCT7Th7n3 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxCT7Th7n3 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxCT7Th7n3 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxCT7Th7n3 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxCT7Th7n3 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxCT7Th7n3 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxCT7Th7n3 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxCT7TH417 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxCT7TH417 H1 {
  color: #000000;
}
.cid-uxCT7U02Ik {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxCT7Uh5OB {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxCT7Uh5OB h2 {
  text-align: left;
}
.cid-uxCT7Uh5OB h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxCT7Uh5OB p {
  color: #767676;
  text-align: left;
}
.cid-uxCT7Uh5OB .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxCT7Uh5OB .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxCT7Uh5OB .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxCT7Uh5OB .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxCT7Uh5OB .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxCT7Uh5OB .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxCT7Uh5OB .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxCT7Uh5OB .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uxCT7Uh5OB .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxCT7Uh5OB .mbr-text {
  color: #232323;
}
.cid-uxCT7UD14k {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxCT7UD14k H1 {
  color: #000000;
}
.cid-uxCT7UV0bY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxCT7UV0bY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxCT7UV0bY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxCT7UV0bY .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uxCT7UV0bY .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uxCT7UV0bY .container {
    padding: 0 26px;
  }
}
.cid-uxCT7UV0bY .row {
  justify-content: center;
}
.cid-uxCT7UV0bY .item {
  margin-bottom: 32px;
}
.cid-uxCT7UV0bY .item a {
  display: block;
}
.cid-uxCT7UV0bY .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uxCT7UV0bY .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uxCT7UV0bY .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uxCT7UV0bY .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uxCT7UV0bY .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uxCT7UV0bY .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uxCT7UV0bY .item a .item-wrapper .item-img .item-content {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uxCT7UV0bY .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uxCT7UV0bY .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uxCT7UV0bY .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uxCT7UV0bY .item-title {
  color: #ffffff;
}
.cid-uxCT7UV0bY .mbr-date {
  color: #cacaca;
}
.cid-uxCT7UV0bY .mbr-desc {
  color: #cacaca;
}
.cid-uxCT7VeGOO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uxCT7VeGOO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxCT7VeGOO .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-uxCT7VeGOO .container {
    padding: 0 16px;
  }
}
.cid-uxCT7VeGOO .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uxCT7VeGOO .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxCT7VeGOO .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uxCT7VeGOO .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxCT7VeGOO .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uxCT7VeGOO .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uxCT7VeGOO .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uxCT7VeGOO .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uxCT7VeGOO .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxCT7VeGOO .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08323c;
  background-color: transparent;
  border: 3px solid #08323c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uxCT7VeGOO .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uxCT7VeGOO .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uxCT7VeGOO .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxCT7VeGOO .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uxCT7VeGOO .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uxCT7VeGOO .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uxCT7VeGOO .dragArea.row .form-group .form-control:hover,
.cid-uxCT7VeGOO .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uxCT7VeGOO .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uxCT7VeGOO .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uxCT7VeGOO .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uxCT7VeGOO .mbr-title {
  color: #ffffff;
}
.cid-uxCT7VeGOO .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uxCT7VeGOO .mbr-section-subtitle {
  color: #08323C;
}
.cid-uxCT7VeGOO .mbr-text {
  color: #08323C;
}
.cid-uxCT7VeGOO .list {
  color: #08323C;
}
.cid-uxCT7VeGOO label {
  color: #08323C;
}
.cid-uxCT7VeGOO H3 {
  color: #000000;
}
.cid-uxCT7VeGOO P {
  text-align: right;
}
.cid-v3GrA3jRI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GrA3jRI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GrA3jRI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GrA3jRI1 .row {
  justify-content: space-between;
}
.cid-v3GrA3jRI1 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GrA3jRI1 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:hover,
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GrA3jRI1 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GrA3jRI1 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GrA3jRI1 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GrA3jRI1 .mbr-section-title {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-text {
  color: #ffffff;
}
.cid-v3GrA3jRI1 .list {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-copy {
  color: #000000;
}
.cid-v3GrA3jRI1 .mbr-desc,
.cid-v3GrA3jRI1 .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-copy,
.cid-v3GrA3jRI1 .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GrA3jRI1 .mbr-section-title,
.cid-v3GrA3jRI1 .mbr-section-btn {
  color: #efefef;
}
.cid-v3GrA3jRI1 .list,
.cid-v3GrA3jRI1 .item-wrap {
  color: #ffffff;
}
